View Javadoc

1   package org.fosstrak.epcis.model;
2   
3   import javax.xml.bind.annotation.XmlAccessType;
4   import javax.xml.bind.annotation.XmlAccessorType;
5   import javax.xml.bind.annotation.XmlElement;
6   import javax.xml.bind.annotation.XmlType;
7   
8   /**
9    * <p>
10   * Java class for BusinessService complex type.
11   * <p>
12   * The following schema fragment specifies the expected content contained within
13   * this class.
14   * 
15   * <pre>
16   * &lt;complexType name="BusinessService">
17   *   &lt;complexContent>
18   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
19   *       &lt;sequence>
20   *         &lt;element name="BusinessServiceName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
21   *         &lt;element name="ServiceTransaction" type="{http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader}ServiceTransaction" minOccurs="0"/>
22   *       &lt;/sequence>
23   *     &lt;/restriction>
24   *   &lt;/complexContent>
25   * &lt;/complexType>
26   * </pre>
27   */
28  @XmlAccessorType(XmlAccessType.FIELD)
29  @XmlType(name = "BusinessService", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader", propOrder = {
30          "businessServiceName", "serviceTransaction" })
31  public class BusinessService {
32  
33      @XmlElement(name = "BusinessServiceName", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader")
34      protected String businessServiceName;
35      @XmlElement(name = "ServiceTransaction", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader")
36      protected ServiceTransaction serviceTransaction;
37  
38      /**
39       * Gets the value of the businessServiceName property.
40       * 
41       * @return possible object is {@link String }
42       */
43      public String getBusinessServiceName() {
44          return businessServiceName;
45      }
46  
47      /**
48       * Sets the value of the businessServiceName property.
49       * 
50       * @param value
51       *            allowed object is {@link String }
52       */
53      public void setBusinessServiceName(String value) {
54          this.businessServiceName = value;
55      }
56  
57      /**
58       * Gets the value of the serviceTransaction property.
59       * 
60       * @return possible object is {@link ServiceTransaction }
61       */
62      public ServiceTransaction getServiceTransaction() {
63          return serviceTransaction;
64      }
65  
66      /**
67       * Sets the value of the serviceTransaction property.
68       * 
69       * @param value
70       *            allowed object is {@link ServiceTransaction }
71       */
72      public void setServiceTransaction(ServiceTransaction value) {
73          this.serviceTransaction = value;
74      }
75  
76  }