org.uddi.api_v3.BindingTemplate Maven / Gradle / Ivy
package org.uddi.api_v3;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import org.w3._2000._09.xmldsig_.SignatureType;
/**
* Java class for bindingTemplate complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="bindingTemplate">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{urn:uddi-org:api_v3}description" maxOccurs="unbounded" minOccurs="0"/>
* <choice>
* <element ref="{urn:uddi-org:api_v3}accessPoint"/>
* <element ref="{urn:uddi-org:api_v3}hostingRedirector"/>
* </choice>
* <element ref="{urn:uddi-org:api_v3}tModelInstanceDetails" minOccurs="0"/>
* <element ref="{urn:uddi-org:api_v3}categoryBag" minOccurs="0"/>
* <element ref="{http://www.w3.org/2000/09/xmldsig#}Signature" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="bindingKey" type="{urn:uddi-org:api_v3}bindingKey" />
* <attribute name="serviceKey" type="{urn:uddi-org:api_v3}serviceKey" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "bindingTemplate", propOrder = {
"description",
"accessPoint",
"hostingRedirector",
"tModelInstanceDetails",
"categoryBag",
"signature"
})
public class BindingTemplate {
protected List description;
protected AccessPoint accessPoint;
protected HostingRedirector hostingRedirector;
protected TModelInstanceDetails tModelInstanceDetails;
protected CategoryBag categoryBag;
@XmlElement(name = "Signature", namespace = "http://www.w3.org/2000/09/xmldsig#")
protected List signature;
@XmlAttribute
protected String bindingKey;
@XmlAttribute
protected String serviceKey;
/**
* Gets the value of the description property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the description property.
*
*
* For example, to add a new item, do as follows:
*
* getDescription().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Description }
*
*
*/
public List getDescription() {
if (description == null) {
description = new ArrayList();
}
return this.description;
}
/**
* Gets the value of the accessPoint property.
*
* @return
* possible object is
* {@link AccessPoint }
*
*/
public AccessPoint getAccessPoint() {
return accessPoint;
}
/**
* Sets the value of the accessPoint property.
*
* @param value
* allowed object is
* {@link AccessPoint }
*
*/
public void setAccessPoint(AccessPoint value) {
this.accessPoint = value;
}
/**
* Gets the value of the hostingRedirector property.
*
* @return
* possible object is
* {@link HostingRedirector }
*
*/
public HostingRedirector getHostingRedirector() {
return hostingRedirector;
}
/**
* Sets the value of the hostingRedirector property.
*
* @param value
* allowed object is
* {@link HostingRedirector }
*
*/
public void setHostingRedirector(HostingRedirector value) {
this.hostingRedirector = value;
}
/**
* Gets the value of the tModelInstanceDetails property.
*
* @return
* possible object is
* {@link TModelInstanceDetails }
*
*/
public TModelInstanceDetails getTModelInstanceDetails() {
return tModelInstanceDetails;
}
/**
* Sets the value of the tModelInstanceDetails property.
*
* @param value
* allowed object is
* {@link TModelInstanceDetails }
*
*/
public void setTModelInstanceDetails(TModelInstanceDetails value) {
this.tModelInstanceDetails = value;
}
/**
* Gets the value of the categoryBag property.
*
* @return
* possible object is
* {@link CategoryBag }
*
*/
public CategoryBag getCategoryBag() {
return categoryBag;
}
/**
* Sets the value of the categoryBag property.
*
* @param value
* allowed object is
* {@link CategoryBag }
*
*/
public void setCategoryBag(CategoryBag value) {
this.categoryBag = value;
}
/**
* Gets the value of the signature property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the signature property.
*
*
* For example, to add a new item, do as follows:
*
* getSignature().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link SignatureType }
*
*
*/
public List getSignature() {
if (signature == null) {
signature = new ArrayList();
}
return this.signature;
}
/**
* Gets the value of the bindingKey property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBindingKey() {
return bindingKey;
}
/**
* Sets the value of the bindingKey property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBindingKey(String value) {
this.bindingKey = value;
}
/**
* Gets the value of the serviceKey property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getServiceKey() {
return serviceKey;
}
/**
* Sets the value of the serviceKey property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setServiceKey(String value) {
this.serviceKey = value;
}
}