Class KeyDescriptorType
- java.lang.Object
-
- org.certificateservices.messages.saml2.metadata.jaxb.KeyDescriptorType
-
public class KeyDescriptorType extends java.lang.ObjectJava class for KeyDescriptorType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="KeyDescriptorType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://www.w3.org/2000/09/xmldsig#}KeyInfo"/> <element ref="{urn:oasis:names:tc:SAML:2.0:metadata}EncryptionMethod" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="use" type="{urn:oasis:names:tc:SAML:2.0:metadata}KeyTypes" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<EncryptionMethodType>encryptionMethodprotected KeyInfoTypekeyInfoprotected KeyTypesuse
-
Constructor Summary
Constructors Constructor Description KeyDescriptorType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<EncryptionMethodType>getEncryptionMethod()Gets the value of the encryptionMethod property.KeyInfoTypegetKeyInfo()Gets the value of the keyInfo property.KeyTypesgetUse()Gets the value of the use property.voidsetKeyInfo(KeyInfoType value)Sets the value of the keyInfo property.voidsetUse(KeyTypes value)Sets the value of the use property.
-
-
-
Field Detail
-
keyInfo
protected KeyInfoType keyInfo
-
encryptionMethod
protected java.util.List<EncryptionMethodType> encryptionMethod
-
use
protected KeyTypes use
-
-
Method Detail
-
getKeyInfo
public KeyInfoType getKeyInfo()
Gets the value of the keyInfo property.- Returns:
- possible object is
KeyInfoType
-
setKeyInfo
public void setKeyInfo(KeyInfoType value)
Sets the value of the keyInfo property.- Parameters:
value- allowed object isKeyInfoType
-
getEncryptionMethod
public java.util.List<EncryptionMethodType> getEncryptionMethod()
Gets the value of the encryptionMethod 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 encryptionMethod property.For example, to add a new item, do as follows:
getEncryptionMethod().add(newItem);Objects of the following type(s) are allowed in the list
EncryptionMethodType
-
getUse
public KeyTypes getUse()
Gets the value of the use property.- Returns:
- possible object is
KeyTypes
-
-