public class ConfidentialityAssertion extends Object implements SecurityAssertion
| Modifier and Type | Field and Description | 
|---|---|
| protected String | idDeprecated.  | 
CONFIDENTIALITY_ASSERTION, CONFIDENTIALITY_CODE, IDENTITY_ASSERTION, IDENTITY_CODE, INTEGRITY_ASSERTION, INTEGRITY_CODE, TYPE_CONFIDENTIALITY_ASSERTION, TYPE_CONFIDENTIALITY_CODE, TYPE_INTEGRITY_ASSERTION, TYPE_INTEGRITY_CODE| Modifier and Type | Method and Description | 
|---|---|
| String | getAssertionType()Deprecated.  getAssertionTypereturns the type of the assertion
 (e.g. | 
| int | getAssertionTypeCode()Deprecated.  Returns an integer that uniquely identifies the type of assertion. | 
| String | getId()Deprecated.  | 
| boolean | isAssertionType(String assertionType)Deprecated.  isAssertionTypetests to see whether the type of the
 assertion matches the passed in type. | 
| boolean | repudiable()Deprecated.  repudiablereturns repudiablility of an assertion --
 i.e. | 
protected String id
public String getAssertionType()
SecurityAssertiongetAssertionType returns the type of the assertion
 (e.g. identity, integrity, confidentiality) as a string.getAssertionType in interface SecurityAssertionString value representing the assertion typepublic int getAssertionTypeCode()
SecurityAssertiongetAssertionTypeCode in interface SecurityAssertionpublic String getId()
public boolean isAssertionType(String assertionType)
SecurityAssertionisAssertionType tests to see whether the type of the
 assertion matches the passed in type.isAssertionType in interface SecurityAssertionassertionType - a String valueboolean value indicating the match result.public boolean repudiable()
SecurityAssertionrepudiable returns repudiablility of an assertion --
 i.e. can the creator reasonably deny that they performed the
 operation that backs this assertion.  This is generally true for
 public/private key based operations where the operation is
 performed by the private key that is available only to a single
 individual or entity.
 True non-repudiation is only acheived in the context of solid
 practices (e.g. secure storage of keys, regular updates of
 revocation lists, certificate chain validation, etc.) and binding
 agreements between parties.    This property indicates only that
 the backing operation supports non-repudiation.repudiable in interface SecurityAssertionboolean value