Package org.apache.cxf.xkms.model.xkms
Class RegisterResultType
- java.lang.Object
-
- org.apache.cxf.xkms.model.xkms.MessageAbstractType
-
- org.apache.cxf.xkms.model.xkms.ResultType
-
- org.apache.cxf.xkms.model.xkms.RegisterResultType
-
public class RegisterResultType extends ResultType
Java class for RegisterResultType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="RegisterResultType"> <complexContent> <extension base="{http://www.w3.org/2002/03/xkms#}ResultType"> <sequence> <element ref="{http://www.w3.org/2002/03/xkms#}KeyBinding" maxOccurs="unbounded" minOccurs="0"/> <element ref="{http://www.w3.org/2002/03/xkms#}PrivateKey" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<KeyBindingType>keyBindingprotected PrivateKeyTypeprivateKey-
Fields inherited from class org.apache.cxf.xkms.model.xkms.ResultType
requestId, requestSignatureValue, resultMajor, resultMinor
-
Fields inherited from class org.apache.cxf.xkms.model.xkms.MessageAbstractType
id, messageExtension, nonce, opaqueClientData, service, signature
-
-
Constructor Summary
Constructors Constructor Description RegisterResultType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<KeyBindingType>getKeyBinding()Gets the value of the keyBinding property.PrivateKeyTypegetPrivateKey()Gets the value of the privateKey property.voidsetPrivateKey(PrivateKeyType value)Sets the value of the privateKey property.-
Methods inherited from class org.apache.cxf.xkms.model.xkms.ResultType
getRequestId, getRequestSignatureValue, getResultMajor, getResultMinor, setRequestId, setRequestSignatureValue, setResultMajor, setResultMinor
-
Methods inherited from class org.apache.cxf.xkms.model.xkms.MessageAbstractType
getId, getMessageExtension, getNonce, getOpaqueClientData, getService, getSignature, setId, setNonce, setOpaqueClientData, setService, setSignature
-
-
-
-
Field Detail
-
keyBinding
protected List<KeyBindingType> keyBinding
-
privateKey
protected PrivateKeyType privateKey
-
-
Method Detail
-
getKeyBinding
public List<KeyBindingType> getKeyBinding()
Gets the value of the keyBinding 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 keyBinding property.For example, to add a new item, do as follows:
getKeyBinding().add(newItem);Objects of the following type(s) are allowed in the list
KeyBindingType
-
getPrivateKey
public PrivateKeyType getPrivateKey()
Gets the value of the privateKey property.- Returns:
- possible object is
PrivateKeyType
-
setPrivateKey
public void setPrivateKey(PrivateKeyType value)
Sets the value of the privateKey property.- Parameters:
value- allowed object isPrivateKeyType
-
-