Class EncryptionMethodType
- java.lang.Object
-
- com.evolveum.prism.xml.ns._public.types_3.EncryptionMethodType
-
- All Implemented Interfaces:
JaxbVisitable
,Serializable
,Cloneable
public class EncryptionMethodType extends Object implements Serializable, Cloneable, JaxbVisitable
TODO Loosely based on XML encryption 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 EncryptionMethodType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="EncryptionMethodType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="algorithm" type="{http://www.w3.org/2001/XMLSchema}anyURI"/> </sequence> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EncryptionMethodType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(JaxbVisitor visitor)
EncryptionMethodType
clone()
boolean
equals(Object obj)
String
getAlgorithm()
Gets the value of the algorithm property.int
hashCode()
void
setAlgorithm(String value)
Sets the value of the algorithm property.String
toString()
-
-
-
Field Detail
-
algorithm
protected String algorithm
-
-
Method Detail
-
getAlgorithm
public String getAlgorithm()
Gets the value of the algorithm property.- Returns:
- possible object is
String
-
setAlgorithm
public void setAlgorithm(String value)
Sets the value of the algorithm property.- Parameters:
value
- allowed object isString
-
clone
public EncryptionMethodType clone()
-
accept
public void accept(JaxbVisitor visitor)
- Specified by:
accept
in interfaceJaxbVisitable
-
-