Class KeyInfoType
- java.lang.Object
-
- com.evolveum.prism.xml.ns._public.types_3.KeyInfoType
-
- All Implemented Interfaces:
JaxbVisitable
,Serializable
,Cloneable
public class KeyInfoType extends Object implements Serializable, Cloneable, JaxbVisitable
TODO Loosely based on XML digital signature standard. But we cannot use full standard as we are not bound to XML. We need this to work also for JSON and YAML and other languages.Java class for KeyInfoType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="KeyInfoType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="keyName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description KeyInfoType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(JaxbVisitor visitor)
KeyInfoType
clone()
boolean
equals(Object obj)
String
getKeyName()
Gets the value of the keyName property.int
hashCode()
void
setKeyName(String value)
Sets the value of the keyName property.String
toString()
-
-
-
Field Detail
-
keyName
protected String keyName
-
-
Method Detail
-
getKeyName
public String getKeyName()
Gets the value of the keyName property.- Returns:
- possible object is
String
-
setKeyName
public void setKeyName(String value)
Sets the value of the keyName property.- Parameters:
value
- allowed object isString
-
clone
public KeyInfoType clone()
-
accept
public void accept(JaxbVisitor visitor)
- Specified by:
accept
in interfaceJaxbVisitable
-
-