KeyStore.SecretKeyEntry
  public
  static
  final
  
  class
  KeyStore.SecretKeyEntry
  
    extends Object
  
  
  
  
  
      implements
      
        KeyStore.Entry
      
  
  
| java.lang.Object | |
| ↳ | java.security.KeyStore.SecretKeyEntry | 
A KeyStore entry that holds a SecretKey.
Summary
| Public constructors | |
|---|---|
| 
      SecretKeyEntry(SecretKey secretKey)
      Constructs a  | |
| 
      SecretKeyEntry(SecretKey secretKey, Set<KeyStore.Entry.Attribute> attributes)
      Constructs a  | |
| Public methods | |
|---|---|
| 
        
        
        
        
        
        Set<KeyStore.Entry.Attribute> | 
      getAttributes()
      Retrieves the attributes associated with an entry. | 
| 
        
        
        
        
        
        SecretKey | 
      getSecretKey()
      Gets the  | 
| 
        
        
        
        
        
        String | 
      toString()
      Returns a string representation of this SecretKeyEntry. | 
| Inherited methods | |
|---|---|
Public constructors
SecretKeyEntry
public SecretKeyEntry (SecretKey secretKey)
Constructs a SecretKeyEntry with a
 SecretKey.
| Parameters | |
|---|---|
| secretKey | SecretKey: theSecretKey | 
| Throws | |
|---|---|
| NullPointerException | if secretKeyisnull | 
SecretKeyEntry
public SecretKeyEntry (SecretKey secretKey, Set<KeyStore.Entry.Attribute> attributes)
Constructs a SecretKeyEntry with a SecretKey and
 associated entry attributes.
 
 The specified attributes is cloned before it is stored
 in the new SecretKeyEntry object.
| Parameters | |
|---|---|
| secretKey | SecretKey: theSecretKey | 
| attributes | Set: the attributes | 
| Throws | |
|---|---|
| NullPointerException | if secretKeyorattributesisnull | 
Public methods
getAttributes
public Set<KeyStore.Entry.Attribute> getAttributes ()
Retrieves the attributes associated with an entry.
| Returns | |
|---|---|
| Set<KeyStore.Entry.Attribute> | an unmodifiable Setof attributes, possibly empty | 
getSecretKey
public SecretKey getSecretKey ()
Gets the SecretKey from this entry.
| Returns | |
|---|---|
| SecretKey | the SecretKeyfrom this entry | 
toString
public String toString ()
Returns a string representation of this SecretKeyEntry.
| Returns | |
|---|---|
| String | a string representation of this SecretKeyEntry. | 
