Class ChoiceType
- java.lang.Object
-
- org.apache.cxf.ws.security.sts.provider.model.wstrust14.ChoiceType
-
public class ChoiceType extends Object
Java class for ChoiceType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ChoiceType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Image" type="{http://docs.oasis-open.org/ws-sx/ws-trust/200802}ImageType" minOccurs="0"/> </sequence> <attribute name="RefID" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> <attribute name="Label" type="{http://www.w3.org/2001/XMLSchema}string" /> <anyAttribute processContents='lax' namespace='##other'/> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description ChoiceType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImageTypegetImage()Gets the value of the image property.StringgetLabel()Gets the value of the label property.Map<QName,String>getOtherAttributes()Gets a map that contains attributes that aren't bound to any typed property on this class.StringgetRefID()Gets the value of the refID property.voidsetImage(ImageType value)Sets the value of the image property.voidsetLabel(String value)Sets the value of the label property.voidsetRefID(String value)Sets the value of the refID property.
-
-
-
Method Detail
-
getImage
public ImageType getImage()
Gets the value of the image property.- Returns:
- possible object is
ImageType
-
setImage
public void setImage(ImageType value)
Sets the value of the image property.- Parameters:
value- allowed object isImageType
-
getRefID
public String getRefID()
Gets the value of the refID property.- Returns:
- possible object is
String
-
setRefID
public void setRefID(String value)
Sets the value of the refID property.- Parameters:
value- allowed object isString
-
getLabel
public String getLabel()
Gets the value of the label property.- Returns:
- possible object is
String
-
setLabel
public void setLabel(String value)
Sets the value of the label property.- Parameters:
value- allowed object isString
-
getOtherAttributes
public Map<QName,String> getOtherAttributes()
Gets a map that contains attributes that aren't bound to any typed property on this class.the map is keyed by the name of the attribute and the value is the string value of the attribute. the map returned by this method is live, and you can add new attribute by updating the map directly. Because of this design, there's no setter.
- Returns:
- always non-null
-
-