javax.xml.crypto.enc
Interface ToBeEncryptedXML
-
- All Superinterfaces:
- ToBeEncrypted
- All Known Implementing Classes:
- DOMToBeEncryptedXML
public interface ToBeEncryptedXML extends ToBeEncrypted
A representation of aToBeEncryptedclass that contains a XML Element or content of an Element
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description CanonicalizationMethodgetCanonicalizationMethod()Returns the canonicalization methodjava.lang.StringgetEncoding()Returns a URI identifying the transfer encoding of the data that has been encrypted.java.lang.StringgetMimeType()Returns the mime type of the data that has been encrypted.java.lang.StringgetType()Returns the URI identifying the type of the plaintext form of the encrypted content.
-
-
-
Method Detail
-
getCanonicalizationMethod
CanonicalizationMethod getCanonicalizationMethod()
Returns the canonicalization method- Returns:
- the canonicalization method.
nullif not specified
-
getType
java.lang.String getType()
Returns the URI identifying the type of the plaintext form of the encrypted content.- Specified by:
getTypein interfaceToBeEncrypted- Returns:
- the type, or
nullif not specified
-
getMimeType
java.lang.String getMimeType()
Returns the mime type of the data that has been encrypted.- Specified by:
getMimeTypein interfaceToBeEncrypted- Returns:
- the mime type, or
nullif not specified
-
getEncoding
java.lang.String getEncoding()
Returns a URI identifying the transfer encoding of the data that has been encrypted.- Specified by:
getEncodingin interfaceToBeEncrypted- Returns:
- the encoding, or
nullif not specified
-
-