Class BindingTemplates
- java.lang.Object
-
- com.sun.xml.registry.uddi.bindings_v2_2.BindingTemplates
-
public class BindingTemplates extends Object
Java class for bindingTemplates complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="bindingTemplates"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{urn:uddi-org:api_v2}bindingTemplate" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<BindingTemplate>bindingTemplate
-
Constructor Summary
Constructors Constructor Description BindingTemplates()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<BindingTemplate>getBindingTemplate()Gets the value of the bindingTemplate property.
-
-
-
Field Detail
-
bindingTemplate
protected List<BindingTemplate> bindingTemplate
-
-
Method Detail
-
getBindingTemplate
public List<BindingTemplate> getBindingTemplate()
Gets the value of the bindingTemplate 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
setmethod for the bindingTemplate property.For example, to add a new item, do as follows:
getBindingTemplate().add(newItem);Objects of the following type(s) are allowed in the list
BindingTemplate
-
-