1 package se.anatom.ejbca.approval; 2 3 import org.ejbca.core.model.approval.ApprovalExecutorUtil; 4 5 public class ApprovalJunitHelper { 6 7 public static class JunitApprovalExecutorUtil1 extends ApprovalExecutorUtil { 8 9 public static void init() { 10 ApprovalExecutorUtil.globallyAllowedString = "se.anatom.ejbca.approval.TestApprovalExecutorUtil"; 11 ApprovalExecutorUtil.globallyAllowed = null; 12 13 } 14 } 15 public static class JunitApprovalExecutorUtil2 extends ApprovalExecutorUtil { 16 17 public static void init() { 18 ApprovalExecutorUtil.globallyAllowedString = "foo.base.Foo,se.anatom.ejbca.approval.TestApprovalExecutorUtil, foo.bar.Bar"; 19 ApprovalExecutorUtil.globallyAllowed = null; 20 21 } 22 } 23 public static class JunitApprovalExecutorUtil3 extends ApprovalExecutorUtil { 24 25 public static void init() { 26 ApprovalExecutorUtil.globallyAllowedString = "foo.base.Foo, foo.bar.Bar"; 27 ApprovalExecutorUtil.globallyAllowed = null; 28 29 } 30 } 31 32 } 33 | Popular Tags |