GLS ShipIT 4.0.f2
GLS ShipIT - SOAP services
Loading...
Searching...
No Matches
gls_group/fpcs/v1/shipmentprocessing/types/AllowedService.java
Go to the documentation of this file.
1
2package eu.gls_group.fpcs.v1.shipmentprocessing.types;
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;
9import eu.gls_group.fpcs.v1.common.ProductType;
10
11
37@XmlAccessorType(XmlAccessType.FIELD)
38@XmlType(name = "AllowedService", propOrder = {
39 "productName",
40 "serviceName"
41})
42public class AllowedService {
43
44 @XmlElement(name = "ProductName")
45 @XmlSchemaType(name = "string")
46 protected ProductType productName;
47 @XmlElement(name = "ServiceName")
48 protected String serviceName;
49
58 public ProductType getProductName() {
59 return productName;
60 }
61
70 public void setProductName(ProductType value) {
71 this.productName = value;
72 }
73
82 public String getServiceName() {
83 return serviceName;
84 }
85
94 public void setServiceName(String value) {
95 this.serviceName = value;
96 }
97
98}