GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
CarrierService.java
Go to the documentation of this file.
1
2package eu.gls_group.fpcs.v1.common;
3
4import javax.xml.bind.annotation.XmlAccessType;
5import javax.xml.bind.annotation.XmlAccessorType;
6import javax.xml.bind.annotation.XmlElement;
7import javax.xml.bind.annotation.XmlSchemaType;
8import javax.xml.bind.annotation.XmlType;
9
10
34@XmlAccessorType(XmlAccessType.FIELD)
35@XmlType(name = "CarrierService", propOrder = {
36 "serviceName"
37})
38public 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}