Uses of Class
java.security.CodeSource
-
Packages that use CodeSource 软件包 描述 com.sun.security.auth 提供Principal
的实现。java.net 提供实现网络应用程序的类。java.security 提供安全框架的类和接口。javax.security.auth 此软件包提供了认证和授权的框架。 -
-
Uses of CodeSource in com.sun.security.auth
Methods in com.sun.security.auth with parameters of type CodeSource Modifier and Type 方法 描述 PermissionCollection
PolicyFile. getPermissions(Subject subject, CodeSource codesource)
不推荐用于删除:此API元素将在以后的版本中被删除。检查此Policy
并返回授予给指定的Subject
和CodeSource
的权限。 -
Uses of CodeSource in java.net
Methods in java.net with parameters of type CodeSource Modifier and Type 方法 描述 protected PermissionCollection
URLClassLoader. getPermissions(CodeSource codesource)
返回给定的代码源对象的权限。 -
Uses of CodeSource in java.security
Methods in java.security that return CodeSource Modifier and Type 方法 描述 CodeSource
ProtectionDomain. getCodeSource()
返回此域的CodeSource。Methods in java.security with parameters of type CodeSource Modifier and Type 方法 描述 protected Class<?>
SecureClassLoader. defineClass(String name, byte[] b, int off, int len, CodeSource cs)
将字节数组转换为类Class的实例,并具有可选的CodeSource。protected Class<?>
SecureClassLoader. defineClass(String name, ByteBuffer b, CodeSource cs)
一个转换ByteBuffer
成类的实例Class
,使用可选的CodeSource。protected PermissionCollection
PolicySpi. engineGetPermissions(CodeSource codesource)
返回一个PermissionCollection对象,该对象包含授予指定CodeSource的一组权限。PermissionCollection
Policy. getPermissions(CodeSource codesource)
返回一个PermissionCollection对象,该对象包含授予指定CodeSource的一组权限。protected PermissionCollection
SecureClassLoader. getPermissions(CodeSource codesource)
返回给定CodeSource对象的权限。boolean
CodeSource. implies(CodeSource codesource)
如果此CodeSource对象“暗示”指定的CodeSource,则返回true。Constructors in java.security with parameters of type CodeSource Constructor 描述 ProtectionDomain(CodeSource codesource, PermissionCollection permissions)
使用给定的CodeSource和权限创建一个新的ProtectionDomain。ProtectionDomain(CodeSource codesource, PermissionCollection permissions, ClassLoader classloader, Principal[] principals)
创建一个由给定的CodeSource,Permissions,ClassLoader和Principals数组限定的新的ProtectionDomain。 -
Uses of CodeSource in javax.security.auth
Methods in javax.security.auth with parameters of type CodeSource Modifier and Type 方法 描述 abstract PermissionCollection
Policy. getPermissions(Subject subject, CodeSource cs)
已过时。检索授予与指定的CodeSource
相关的校长的权限。
-