Class AttributeConsumingServiceType
- java.lang.Object
-
- org.certificateservices.messages.saml2.metadata.jaxb.AttributeConsumingServiceType
-
public class AttributeConsumingServiceType extends java.lang.ObjectJava class for AttributeConsumingServiceType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="AttributeConsumingServiceType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{urn:oasis:names:tc:SAML:2.0:metadata}ServiceName" maxOccurs="unbounded"/> <element ref="{urn:oasis:names:tc:SAML:2.0:metadata}ServiceDescription" maxOccurs="unbounded" minOccurs="0"/> <element ref="{urn:oasis:names:tc:SAML:2.0:metadata}RequestedAttribute" maxOccurs="unbounded"/> </sequence> <attribute name="index" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedShort" /> <attribute name="isDefault" type="{http://www.w3.org/2001/XMLSchema}boolean" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected intindexprotected java.lang.BooleanisDefaultprotected java.util.List<RequestedAttributeType>requestedAttributeprotected java.util.List<LocalizedNameType>serviceDescriptionprotected java.util.List<LocalizedNameType>serviceName
-
Constructor Summary
Constructors Constructor Description AttributeConsumingServiceType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetIndex()Gets the value of the index property.java.util.List<RequestedAttributeType>getRequestedAttribute()Gets the value of the requestedAttribute property.java.util.List<LocalizedNameType>getServiceDescription()Gets the value of the serviceDescription property.java.util.List<LocalizedNameType>getServiceName()Gets the value of the serviceName property.java.lang.BooleanisIsDefault()Gets the value of the isDefault property.voidsetIndex(int value)Sets the value of the index property.voidsetIsDefault(java.lang.Boolean value)Sets the value of the isDefault property.
-
-
-
Field Detail
-
serviceName
protected java.util.List<LocalizedNameType> serviceName
-
serviceDescription
protected java.util.List<LocalizedNameType> serviceDescription
-
requestedAttribute
protected java.util.List<RequestedAttributeType> requestedAttribute
-
index
protected int index
-
isDefault
protected java.lang.Boolean isDefault
-
-
Method Detail
-
getServiceName
public java.util.List<LocalizedNameType> getServiceName()
Gets the value of the serviceName 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 serviceName property.For example, to add a new item, do as follows:
getServiceName().add(newItem);Objects of the following type(s) are allowed in the list
LocalizedNameType
-
getServiceDescription
public java.util.List<LocalizedNameType> getServiceDescription()
Gets the value of the serviceDescription 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 serviceDescription property.For example, to add a new item, do as follows:
getServiceDescription().add(newItem);Objects of the following type(s) are allowed in the list
LocalizedNameType
-
getRequestedAttribute
public java.util.List<RequestedAttributeType> getRequestedAttribute()
Gets the value of the requestedAttribute 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 requestedAttribute property.For example, to add a new item, do as follows:
getRequestedAttribute().add(newItem);Objects of the following type(s) are allowed in the list
RequestedAttributeType
-
getIndex
public int getIndex()
Gets the value of the index property.
-
setIndex
public void setIndex(int value)
Sets the value of the index property.
-
isIsDefault
public java.lang.Boolean isIsDefault()
Gets the value of the isDefault property.- Returns:
- possible object is
Boolean
-
setIsDefault
public void setIsDefault(java.lang.Boolean value)
Sets the value of the isDefault property.- Parameters:
value- allowed object isBoolean
-
-