Class XMLCipher.Factory.CipherValueImpl

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.String cipherValue  
    • Constructor Summary

      Constructors 
      Constructor Description
      CipherValueImpl​(java.lang.String value)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getValue()
      Returns the Base 64 encoded, encrypted octets that is the CipherValue.
      void setValue​(java.lang.String value)
      Sets the Base 64 encoded, encrypted octets that is the CipherValue.
      (package private) org.w3c.dom.Element toElement()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • cipherValue

        private java.lang.String cipherValue
    • Constructor Detail

      • CipherValueImpl

        public CipherValueImpl​(java.lang.String value)
        Parameters:
        value -
    • Method Detail

      • getValue

        public java.lang.String getValue()
        Returns the Base 64 encoded, encrypted octets that is the CipherValue.
        Specified by:
        getValue in interface CipherValue
        Returns:
        cipher value.
      • setValue

        public void setValue​(java.lang.String value)
        Sets the Base 64 encoded, encrypted octets that is the CipherValue.
        Specified by:
        setValue in interface CipherValue
        Parameters:
        value - the cipher value.
      • toElement

        org.w3c.dom.Element toElement()