BrightSide Workbench Full Report + Source Code
org.turro.elephant.impl.security.CertificateStore Class Reference
Inheritance diagram for org.turro.elephant.impl.security.CertificateStore:
Collaboration diagram for org.turro.elephant.impl.security.CertificateStore:

Public Member Functions

PrivateKey getKey ()
 
Certificate[] getChain ()
 
- Public Member Functions inherited from org.turro.elephant.impl.abstracts.AbstractImplementation
 AbstractImplementation ()
 
void setElement (IElement element)
 
void setConstructor (IConstructor constructor)
 
void setConfiguration (Element configuration)
 
KeyValueMap getAttributes ()
 
Long getLongAttribute (String key)
 

Additional Inherited Members

- Protected Attributes inherited from org.turro.elephant.impl.abstracts.AbstractImplementation
IElement iel
 
IConstructor constructor
 
Element configuration
 
Map attributes
 

Detailed Description

Author
Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g

Definition at line 38 of file CertificateStore.java.

Member Function Documentation

◆ getChain()

Certificate [] org.turro.elephant.impl.security.CertificateStore.getChain ( )

Definition at line 50 of file CertificateStore.java.

50  {
51  if(chain == null) {
52  initCertificate();
53  }
54  return chain;
55  }
Here is the caller graph for this function:

◆ getKey()

PrivateKey org.turro.elephant.impl.security.CertificateStore.getKey ( )

Definition at line 43 of file CertificateStore.java.

43  {
44  if(key == null) {
45  initCertificate();
46  }
47  return key;
48  }
Here is the caller graph for this function:

The documentation for this class was generated from the following file: