GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
ExWorksService.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.XmlType;
8
9
33@XmlAccessorType(XmlAccessType.FIELD)
34@XmlType(name = "ExWorksService", propOrder = {
35 "serviceName"
36})
37public class ExWorksService {
38
39 @XmlElement(name = "ServiceName", required = true)
40 protected String serviceName;
41
50 public String getServiceName() {
51 return serviceName;
52 }
53
62 public void setServiceName(String value) {
63 this.serviceName = value;
64 }
65
66}