public interface SecurityAssertion
| Modifier and Type | Field and Description | 
|---|---|
| static String | CONFIDENTIALITY_ASSERTIONDeprecated.  | 
| static int | CONFIDENTIALITY_CODEDeprecated.  | 
| static String | IDENTITY_ASSERTIONDeprecated.  | 
| static int | IDENTITY_CODEDeprecated.  | 
| static String | INTEGRITY_ASSERTIONDeprecated.  | 
| static int | INTEGRITY_CODEDeprecated.  | 
| static String | TYPE_CONFIDENTIALITY_ASSERTIONDeprecated.  | 
| static int | TYPE_CONFIDENTIALITY_CODEDeprecated.  | 
| static String | TYPE_INTEGRITY_ASSERTIONDeprecated.  | 
| static int | TYPE_INTEGRITY_CODEDeprecated.  | 
| 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. | 
| 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. | 
static final String IDENTITY_ASSERTION
static final int IDENTITY_CODE
static final String INTEGRITY_ASSERTION
static final int INTEGRITY_CODE
static final String TYPE_INTEGRITY_ASSERTION
static final int TYPE_INTEGRITY_CODE
static final String CONFIDENTIALITY_ASSERTION
static final int CONFIDENTIALITY_CODE
static final String TYPE_CONFIDENTIALITY_ASSERTION
static final int TYPE_CONFIDENTIALITY_CODE
String getAssertionType()
getAssertionType returns the type of the assertion
 (e.g. identity, integrity, confidentiality) as a string.String value representing the assertion typeint getAssertionTypeCode()
boolean isAssertionType(String assertionType)
isAssertionType tests to see whether the type of the
 assertion matches the passed in type.assertionType - a String valueboolean value indicating the match result.boolean repudiable()
repudiable 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.boolean value