javax.crypto
static class: CryptoPolicyParser.GrantEntry [javadoc |
source]
java.lang.Object
javax.crypto.CryptoPolicyParser$GrantEntry
Each grant entry in the policy configuration file is represented by a
GrantEntry object.
For example, the entry
grant {
permission javax.crypto.CryptoPermission "DES", 56;
};
is represented internally
pe = new CryptoPermissionEntry("javax.crypto.CryptoPermission",
"DES", 56);
ge = new GrantEntry();
ge.add(pe);
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |