#include <PKIFCRLNodeEntry.h>
Definition at line 34 of file PKIFCRLNodeEntry.h.
Public Member Functions | |
CPKIFCRLNodeEntry () | |
CPKIFCRLNodeEntry (CPKIFCRLPtr &crl) | |
virtual | ~CPKIFCRLNodeEntry (void) |
virtual CPKIFCRLPtr | GetCRL () const |
virtual void | SetCRL (const CPKIFCRLPtr &crl) |
bool | operator== (const CPKIFCRLNodeEntry &rhs) |
bool | operator== (const CPKIFCRLPtr &rhs) |
CPKIFCRLNodeEntry::CPKIFCRLNodeEntry | ( | ) |
Interface: External
Default constructor
Definition at line 26 of file PKIFCRLNodeEntry.cpp.
CPKIFCRLNodeEntry::CPKIFCRLNodeEntry | ( | CPKIFCRLPtr & | crl | ) |
Interface: External
Constructor that accepts a CRL object and internally calls SetCRL.
Definition at line 37 of file PKIFCRLNodeEntry.cpp.
References SetCRL().
CPKIFCRLNodeEntry::~CPKIFCRLNodeEntry | ( | void | ) | [virtual] |
Interface: External
Default destructor
Definition at line 49 of file PKIFCRLNodeEntry.cpp.
CPKIFCRLPtr CPKIFCRLNodeEntry::GetCRL | ( | ) | const [virtual] |
Interface: External
GetCRL returns a pointer to a CPKIFCRL object associated with an instance of CPKIFCRLNodeEntry. If no CRL has been associated with the instance, NULL is returned.
Definition at line 63 of file PKIFCRLNodeEntry.cpp.
void CPKIFCRLNodeEntry::SetCRL | ( | const CPKIFCRLPtr & | crl | ) | [virtual] |
Interface: External
SetCRL associates a CPKIFCRLPtr with an instance of CPKIFCRLNodeEntry and sets the state to PAS_AVAILABLE.
Definition at line 76 of file PKIFCRLNodeEntry.cpp.
References PAS_AVAILABLE, and IPKIFPkiArtifact::SetState().
Referenced by CPKIFCRLNodeEntry().
bool CPKIFCRLNodeEntry::operator== | ( | const CPKIFCRLNodeEntry & | rhs | ) |
Interface: External
operator== internally invokes the CPKIFCRL::operator== if both objects have an associated CRL and returns the resulting boolean value. If neither object has an associated CRL, true is returned. If one object has a CRL and the other does not, false is returned.
Definition at line 92 of file PKIFCRLNodeEntry.cpp.
References m_impl.
bool CPKIFCRLNodeEntry::operator== | ( | const CPKIFCRLPtr & | rhs | ) |
Interface: External
operator== internally invokes the CPKIFCRL::operator== if the left hand side object has an associated CRL and the rhs parameter is not NULL then returns the resulting boolean value. If the left hand object does not have an associated CRL and rhs is NULL, true is returned. Otherwise, false is returned.
Definition at line 112 of file PKIFCRLNodeEntry.cpp.