Class TModelInstanceInfo
- java.lang.Object
-
- com.sun.xml.registry.uddi.bindings_v2_2.TModelInstanceInfo
-
public class TModelInstanceInfo extends Object
Java class for tModelInstanceInfo complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="tModelInstanceInfo"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{urn:uddi-org:api_v2}description" maxOccurs="unbounded" minOccurs="0"/> <element ref="{urn:uddi-org:api_v2}instanceDetails" minOccurs="0"/> </sequence> <attribute name="tModelKey" use="required" type="{urn:uddi-org:api_v2}tModelKey" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<Description>descriptionprotected InstanceDetailsinstanceDetailsprotected StringtModelKey
-
Constructor Summary
Constructors Constructor Description TModelInstanceInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Description>getDescription()Gets the value of the description property.InstanceDetailsgetInstanceDetails()Gets the value of the instanceDetails property.StringgetTModelKey()Gets the value of the tModelKey property.voidsetInstanceDetails(InstanceDetails value)Sets the value of the instanceDetails property.voidsetTModelKey(String value)Sets the value of the tModelKey property.
-
-
-
Field Detail
-
description
protected List<Description> description
-
instanceDetails
protected InstanceDetails instanceDetails
-
tModelKey
protected String tModelKey
-
-
Method Detail
-
getDescription
public List<Description> getDescription()
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
setmethod 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
Description
-
getInstanceDetails
public InstanceDetails getInstanceDetails()
Gets the value of the instanceDetails property.- Returns:
- possible object is
InstanceDetails
-
setInstanceDetails
public void setInstanceDetails(InstanceDetails value)
Sets the value of the instanceDetails property.- Parameters:
value- allowed object isInstanceDetails
-
getTModelKey
public String getTModelKey()
Gets the value of the tModelKey property.- Returns:
- possible object is
String
-
-