java.lang.Object |
GenericCertificate.getContent() |
Returns a clone of the certificate's content as it was signed or
verified before.
|
static java.lang.Object |
PersistenceService.load(byte[] encoded) |
Loads a single object, which may form the root of an entire
object graph, from XML content in the UTF-8 encoded byte array
encoded.
|
static java.lang.Object |
PersistenceService.load(java.io.File file) |
Loads a single object, which may form the root of an entire
object graph, from XML content in the given file file.
|
static java.lang.Object |
PersistenceService.load(java.io.InputStream xmlIn) |
Loads a single object, which may form the root of an entire
object graph, from XML content in the given input stream xmlIn.
|
static java.lang.Object |
PersistenceService.load(java.lang.String encoded) |
Loads a single object, which may form the root of an entire
object graph, from XML content in the string encoded.
|
void |
GenericCertificate.sign(java.lang.Object content,
java.security.PrivateKey signingKey,
java.security.Signature signingEngine) |
Encodes and signs the given content in this certificate and
locks it.
|
static void |
PersistenceService.store(java.lang.Object root,
java.io.File file) |
Stores the object root, which may form the root of an entire
object graph, as XML content to the file file for
long term persistence.
|
static void |
PersistenceService.store(java.lang.Object root,
java.io.OutputStream xmlOut) |
Stores the object root, which may form the root of an entire
object graph, as XML content to the output stream xmlOut for
long term persistence.
|
static byte[] |
PersistenceService.store2ByteArray(java.lang.Object root) |
Stores the object root, which may form the root of an entire
object graph, as XML content into a UTF-8 encoded byte array for
long term persistence.
|
static java.lang.String |
PersistenceService.store2String(java.lang.Object root) |
Stores the object root, which may form the root of an entire
object graph, as XML content into a string for long term persistence.
|