View Javadoc
1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.9-03/31/2009 04:14 PM(snajper)-fcs 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2009.04.30 at 06:20:20 PM CEST 
6   //
7   
8   
9   package org.openehealth.ipf.commons.ihe.xds.core.stub.ebrs30.rim;
10  
11  import javax.xml.bind.annotation.XmlAccessType;
12  import javax.xml.bind.annotation.XmlAccessorType;
13  import javax.xml.bind.annotation.XmlAttribute;
14  import javax.xml.bind.annotation.XmlType;
15  
16  
17  /**
18   * <p>Java class for VersionInfoType complex type.
19   * 
20   * <p>The following schema fragment specifies the expected content contained within this class.
21   * 
22   * <pre>
23   * &lt;complexType name="VersionInfoType">
24   *   &lt;complexContent>
25   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
26   *       &lt;attribute name="versionName" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}String16" default="1.1" />
27   *       &lt;attribute name="comment" type="{http://www.w3.org/2001/XMLSchema}string" />
28   *     &lt;/restriction>
29   *   &lt;/complexContent>
30   * &lt;/complexType>
31   * </pre>
32   * 
33   * 
34   */
35  @XmlAccessorType(XmlAccessType.FIELD)
36  @XmlType(name = "VersionInfoType")
37  public class VersionInfoType {
38  
39      @XmlAttribute
40      protected String versionName;
41      @XmlAttribute
42      protected String comment;
43  
44      /**
45       * Gets the value of the versionName property.
46       * 
47       * @return
48       *     possible object is
49       *     {@link String }
50       *     
51       */
52      public String getVersionName() {
53          if (versionName == null) {
54              return "1.1";
55          } else {
56              return versionName;
57          }
58      }
59  
60      /**
61       * Sets the value of the versionName property.
62       * 
63       * @param value
64       *     allowed object is
65       *     {@link String }
66       *     
67       */
68      public void setVersionName(String value) {
69          this.versionName = value;
70      }
71  
72      /**
73       * Gets the value of the comment property.
74       * 
75       * @return
76       *     possible object is
77       *     {@link String }
78       *     
79       */
80      public String getComment() {
81          return comment;
82      }
83  
84      /**
85       * Sets the value of the comment property.
86       * 
87       * @param value
88       *     allowed object is
89       *     {@link String }
90       *     
91       */
92      public void setComment(String value) {
93          this.comment = value;
94      }
95  
96  }