本文整理汇总了Java中sun.security.provider.PolicyFile.implies方法的典型用法代码示例。如果您正苦于以下问题:Java PolicyFile.implies方法的具体用法?Java PolicyFile.implies怎么用?Java PolicyFile.implies使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类sun.security.provider.PolicyFile
的用法示例。
在下文中一共展示了PolicyFile.implies方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: doBadTest
import sun.security.provider.PolicyFile; //导入方法依赖的package包/类
private static int doBadTest(PolicyFile policy, int testnum) {
// this principal is not in policy - should not match any policy grants
ProtectionDomain pd = new ProtectionDomain(cs, null, null, badP);
if (policy.implies(pd, FOO)) {
throw new SecurityException("test." + testnum + " failed");
}
testnum++;
// this principal is not in policy - should not match any policy grants
if (policy.implies(pd, BAR)) {
throw new SecurityException("test." + testnum + " failed");
}
testnum++;
// this principal is not in policy - should not match any policy grants
if (policy.implies(pd, FOOBAR)) {
throw new SecurityException("test." + testnum + " failed");
}
testnum++;
return testnum;
}
示例2: doPrincipalTest
import sun.security.provider.PolicyFile; //导入方法依赖的package包/类
private static int doPrincipalTest(PolicyFile policy, int testnum) {
// security check against one principal should pass
ProtectionDomain pd = new ProtectionDomain(cs, null, null, p1);
if (!policy.implies(pd, FOO)) {
throw new SecurityException("test." + testnum + " failed");
}
testnum++;
// should not match BAR grant entry in policy
pd = new ProtectionDomain(cs, null, null, p1);
if (policy.implies(pd, BAR)) {
throw new SecurityException("test." + testnum + " failed");
}
testnum++;
// security check against two principals should pass
pd = new ProtectionDomain(cs, null, null, p2);
if (!policy.implies(pd, BAR)) {
throw new SecurityException("test." + testnum + " failed");
}
testnum++;
// should not match FOOBAR grant entry in policy
pd = new ProtectionDomain(cs, null, null, p1);
if (policy.implies(pd, FOOBAR)) {
throw new SecurityException("test." + testnum + " failed");
}
testnum++;
// should not match FOOBAR grant entry in policy
pd = new ProtectionDomain(cs, null, null, p2);
if (policy.implies(pd, FOOBAR)) {
throw new SecurityException("test." + testnum + " failed");
}
testnum++;
testnum = doBadTest(policy, testnum);
return testnum;
}
示例3: doComparatorTest
import sun.security.provider.PolicyFile; //导入方法依赖的package包/类
private static int doComparatorTest(PolicyFile policy, int testnum) {
// security check against one comparator should pass
ProtectionDomain pd = new ProtectionDomain(cs, null, null, p1);
if (!policy.implies(pd, FOO)) {
throw new SecurityException("test." + testnum + " failed");
}
testnum++;
// should not match BAR grant entry in policy
pd = new ProtectionDomain(cs, null, null, p1);
if (policy.implies(pd, BAR)) {
throw new SecurityException("test." + testnum + " failed");
}
testnum++;
// security check against two comparators should pass for FOO
pd = new ProtectionDomain(cs, null, null, p3);
if (!policy.implies(pd, FOO)) {
throw new SecurityException("test." + testnum + " failed");
}
testnum++;
// security check against two comparators should pass for BAR
pd = new ProtectionDomain(cs, null, null, p3);
if (!policy.implies(pd, BAR)) {
throw new SecurityException("test." + testnum + " failed");
}
testnum++;
// security check should fail against FOOBAR
pd = new ProtectionDomain(cs, null, null, p3);
if (policy.implies(pd, FOOBAR)) {
throw new SecurityException("test." + testnum + " failed");
}
testnum++;
testnum = doBadTest(policy, testnum);
return testnum;
}
示例4: doCombinedTest
import sun.security.provider.PolicyFile; //导入方法依赖的package包/类
private static int doCombinedTest(PolicyFile policy, int testnum) {
// security check against principal followed by comparator should pass
ProtectionDomain pd = new ProtectionDomain(cs, null, null, p3);
if (!policy.implies(pd, FOO)) {
throw new SecurityException("test." + testnum + " failed");
}
testnum++;
// should not match BAR grant entry in policy
pd = new ProtectionDomain(cs, null, null, p3);
if (policy.implies(pd, BAR)) {
throw new SecurityException("test." + testnum + " failed");
}
testnum++;
// security check against comparator followed by principal should pass
pd = new ProtectionDomain(cs, null, null, p4);
if (!policy.implies(pd, BAR)) {
throw new SecurityException("test." + testnum + " failed");
}
testnum++;
// should not match FOO grant entry in policy
pd = new ProtectionDomain(cs, null, null, p4);
if (policy.implies(pd, FOO)) {
throw new SecurityException("test." + testnum + " failed");
}
testnum++;
// security check against principal-principal-comparator should pass
pd = new ProtectionDomain(cs, null, null, p5);
if (!policy.implies(pd, HELLO)) {
throw new SecurityException("test." + testnum + " failed");
}
testnum++;
// should not match WORLD grant entry in policy
pd = new ProtectionDomain(cs, null, null, p5);
if (policy.implies(pd, WORLD)) {
throw new SecurityException("test." + testnum + " failed");
}
testnum++;
// security check against principal-principal-comparator should pass
pd = new ProtectionDomain(cs, null, null, p6);
if (!policy.implies(pd, WORLD)) {
throw new SecurityException("test." + testnum + " failed");
}
testnum++;
// should not match HELLO grant entry in policy
pd = new ProtectionDomain(cs, null, null, p6);
if (policy.implies(pd, HELLO)) {
throw new SecurityException("test." + testnum + " failed");
}
testnum++;
testnum = doBadTest(policy, testnum);
return testnum;
}