001package org.hl7.fhir.r5.openapi;
002
003import org.hl7.fhir.utilities.MarkedToMoveToAdjunctPackage;
004
005/*
006  Copyright (c) 2011+, HL7, Inc.
007  All rights reserved.
008  
009  Redistribution and use in source and binary forms, with or without modification, 
010  are permitted provided that the following conditions are met:
011    
012   * Redistributions of source code must retain the above copyright notice, this 
013     list of conditions and the following disclaimer.
014   * Redistributions in binary form must reproduce the above copyright notice, 
015     this list of conditions and the following disclaimer in the documentation 
016     and/or other materials provided with the distribution.
017   * Neither the name of HL7 nor the names of its contributors may be used to 
018     endorse or promote products derived from this software without specific 
019     prior written permission.
020  
021  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
022  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
023  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
024  IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 
025  INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 
026  NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
027  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
028  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
029  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 
030  POSSIBILITY OF SUCH DAMAGE.
031  
032 */
033
034
035
036
037import org.hl7.fhir.utilities.Utilities;
038
039import com.google.gson.JsonObject;
040
041@MarkedToMoveToAdjunctPackage
042public class InfoWriter extends BaseWriter {
043
044
045  public InfoWriter(JsonObject object) {
046    super(object);
047  }
048
049  public InfoWriter title(String value) {
050    if (!Utilities.noString(value))
051      object.addProperty("title", value);
052    return this;            
053  }
054
055  public InfoWriter description(String value) {
056    if (!Utilities.noString(value))
057      object.addProperty("description", value);
058    return this;            
059  }
060  
061  public InfoWriter termsOfService(String value) {
062    if (!Utilities.noString(value))
063      object.addProperty("termsOfService", value);
064    return this;            
065  }
066
067  public InfoWriter version(String value) {
068    if (!Utilities.noString(value))
069      object.addProperty("version", value);
070    return this;            
071  }
072
073  public InfoWriter contact(String name, String email, String url) {
074    if (name != null && !object.has("contact")) {
075      JsonObject person = new JsonObject();
076      person.addProperty("name", name);
077      if (!Utilities.noString(email))
078        person.addProperty("email", email);
079      if (!Utilities.noString(url))
080        person.addProperty("url", url);
081      object.add("contact", person);
082    }
083    return this;            
084  }
085  
086  public InfoWriter license(String name, String url) {
087    JsonObject license = new JsonObject();
088    license.addProperty("name", name);
089    if (!Utilities.noString(url))
090      license.addProperty("url", url);
091    object.add("license", license);
092    return this;            
093  }
094  
095  
096}