GLS ShipIT  4.0.f3
GLS ShipIT - REST services
CarrierService.java
Go to the documentation of this file.
1 
2 package eu.gls_group.fpcs.v1.common;
3 
4 import javax.xml.bind.annotation.XmlAccessType;
5 import javax.xml.bind.annotation.XmlAccessorType;
6 import javax.xml.bind.annotation.XmlElement;
7 import javax.xml.bind.annotation.XmlSchemaType;
8 import javax.xml.bind.annotation.XmlType;
9 
10 
34 @XmlAccessorType(XmlAccessType.FIELD)
35 @XmlType(name = "CarrierService", propOrder = {
36  "serviceName"
37 })
38 public class CarrierService {
39 
40  @XmlElement(name = "ServiceName", required = true)
41  @XmlSchemaType(name = "string")
42  protected CarrierType serviceName;
43 
52  public CarrierType getServiceName() {
53  return serviceName;
54  }
55 
64  public void setServiceName(CarrierType value) {
65  this.serviceName = value;
66  }
67 
68 }