Object |
GenericCertificate.getContent() |
Returns a clone of the certificate's content as it was signed or
verified before.
|
static 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 Object |
PersistenceService.load(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 Object |
PersistenceService.load(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 Object |
PersistenceService.load(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(Object content,
PrivateKey signingKey,
Signature signingEngine) |
Encodes and signs the given content in this certificate and
locks it.
|
static void |
PersistenceService.store(Object root,
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(Object root,
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(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 String |
PersistenceService.store2String(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.
|