Package org.apache.openejb.jee.wls
Class ServiceReferenceDescription
- java.lang.Object
-
- org.apache.openejb.jee.wls.ServiceReferenceDescription
-
public class ServiceReferenceDescription extends Object
Java class for service-reference-description complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="service-reference-description"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="service-ref-name" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="wsdl-url" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="call-property" type="{http://www.bea.com/ns/weblogic/90}property-namevalue" maxOccurs="unbounded" minOccurs="0"/> <element name="port-info" type="{http://www.bea.com/ns/weblogic/90}port-info" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<PropertyNamevalue>callPropertyprotected Stringidprotected List<PortInfo>portInfoprotected StringserviceRefNameprotected StringwsdlUrl
-
Constructor Summary
Constructors Constructor Description ServiceReferenceDescription()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<PropertyNamevalue>getCallProperty()Gets the value of the callProperty property.StringgetId()Gets the value of the id property.List<PortInfo>getPortInfo()Gets the value of the portInfo property.StringgetServiceRefName()Gets the value of the serviceRefName property.StringgetWsdlUrl()Gets the value of the wsdlUrl property.voidsetId(String value)Sets the value of the id property.voidsetServiceRefName(String value)Sets the value of the serviceRefName property.voidsetWsdlUrl(String value)Sets the value of the wsdlUrl property.
-
-
-
Method Detail
-
getServiceRefName
public String getServiceRefName()
Gets the value of the serviceRefName property.- Returns:
- possible object is
String
-
setServiceRefName
public void setServiceRefName(String value)
Sets the value of the serviceRefName property.- Parameters:
value- allowed object isString
-
getWsdlUrl
public String getWsdlUrl()
Gets the value of the wsdlUrl property.- Returns:
- possible object is
String
-
setWsdlUrl
public void setWsdlUrl(String value)
Sets the value of the wsdlUrl property.- Parameters:
value- allowed object isString
-
getCallProperty
public List<PropertyNamevalue> getCallProperty()
Gets the value of the callProperty 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 asetmethod for the callProperty property. For example, to add a new item, do as follows:getCallProperty().add(newItem);Objects of the following type(s) are allowed in the listPropertyNamevalue
-
getPortInfo
public List<PortInfo> getPortInfo()
Gets the value of the portInfo 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 asetmethod for the portInfo property. For example, to add a new item, do as follows:getPortInfo().add(newItem);Objects of the following type(s) are allowed in the listPortInfo
-
-