Searched defs:Policy (Results 1 - 9 of 9) sorted by relevance

/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A DPolicy.java29 * Interfaces derived from the <tt>Policy</tt> interface allow an
32 * manner using interfaces derived from the <tt>Policy</tt>
36 * this technique for associating Security Policy with objects
39 * org/omg/CORBA/Policy.java
45 public interface Policy extends PolicyOperations, org.omg.CORBA.Object, org.omg.CORBA.portable.IDLEntity interface in inherits:PolicyOperations,org.omg.CORBA.Object,org.omg.CORBA.portable.IDLEntity
47 } // interface Policy
/openjdk7/jdk/test/java/lang/ProcessBuilder/
H A DSecurityManagerClinit.java38 private static class Policy extends java.security.Policy { class in class:SecurityManagerClinit
41 public Policy(Permission... permissions) { method in class:SecurityManagerClinit.Policy
60 final Policy policy =
61 new Policy
64 Policy.setPolicy(policy);
H A DBasic.java1013 final Policy policy = new Policy();
1014 Policy.setPolicy(policy);
2056 final Policy policy = new Policy();
2057 Policy.setPolicy(policy);
2153 // A Policy class designed to make permissions fiddling very easy.
2155 private static class Policy extends java.security.Policy { class in class:Basic
2164 public Policy() { setPermission method in class:Basic.Policy
[all...]
/openjdk7/jdk/src/share/classes/javax/security/auth/
H A DPolicy.java35 * access control <code>Policy</code>.
37 * <p> A <code>Policy</code> object can be queried for the set of
42 * policy = Policy.getPolicy();
47 * The <code>Policy</code> object consults the local policy and returns
53 * <p> A <code>Policy</code> contains the following information.
55 * <code>Policy</code> implementation. Subclass implementations of this class
57 * <code>Policy</code> from any source such as files, databases,
60 * <p> Each entry in the <code>Policy</code> is represented as
96 * Note that this <code>Policy</code> (and the Permissions
97 * granted in this <code>Policy</cod
160 public abstract class Policy { class
182 protected Policy() { } method in class:Policy
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/wspolicy/
H A DXmlToken.java33 Policy("Policy", true), enum constant in enum:XmlToken
/openjdk7/jdk/test/java/util/concurrent/Executors/
H A DPrivilegedCallables.java56 // A Policy class designed to make permissions fiddling very easy.
58 static class Policy extends java.security.Policy { class in class:PrivilegedCallables
67 public Policy() { setPermissions(/* Nothing */); } method in class:PrivilegedCallables.Policy
87 final Policy policy = new Policy();
88 Policy.setPolicy(policy);
/openjdk7/jdk/src/share/classes/java/security/
H A DPolicy.java47 * A Policy object is responsible for determining whether code executing
51 * <p> There is only one Policy object installed in the runtime at any
52 * given time. A Policy object can be installed by calling the
53 * <code>setPolicy</code> method. The installed Policy object can be
56 * <p> If no Policy object has been installed in the runtime, a call to
57 * <code>getPolicy</code> installs an instance of the default Policy
59 * The default Policy implementation can be changed by setting the value
61 * file) to the fully qualified name of the desired Policy subclass
67 * <p> Application code can directly subclass Policy to provide a custom
68 * implementation. In addition, an instance of a Policy objec
98 public abstract class Policy { class
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/
H A DPolicy.java47 public class Policy implements Iterable<AssertionSet> { class in inherits:Iterable
76 private static final Policy ANONYMOUS_NULL_POLICY = new Policy(null, null, NULL_POLICY_ASSERTION_SETS, EMPTY_VOCABULARY);
82 private static final Policy ANONYMOUS_EMPTY_POLICY = new Policy(null, null, EMPTY_POLICY_ASSERTION_SETS, EMPTY_VOCABULARY);
85 * Policy ID holder
90 * Policy name holder
115 * policy object name used in a toString() method. This ensures that Policy class children can customize
116 * (via package private Policy constructors) the toString() method without having to override it.
126 public static Policy createNullPolic
288 private Policy(final String name, final String policyId, final List<AssertionSet> assertionSets, final Set<QName> vocabulary) { method in class:Policy
309 Policy(final String toStringName, final Collection<AssertionSet> sets) { method in class:Policy
339 Policy(final String toStringName, final String name, final String policyId, final Collection<AssertionSet> sets) { method in class:Policy
358 private Policy(final NamespaceVersion nsVersion, final String name, final String policyId, final List<AssertionSet> assertionSets, final Set<QName> vocabulary) { method in class:Policy
380 Policy(final NamespaceVersion nsVersion, final String toStringName, final Collection<AssertionSet> sets) { method in class:Policy
411 Policy(final NamespaceVersion nsVersion, final String toStringName, final String name, final String policyId, final Collection<AssertionSet> sets) { method in class:Policy
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DobjectMonitor.cpp1674 int Policy = Knob_MoveNotifyee ; local
1682 if (Policy != 4) {
1696 if (Policy == 0) { // prepend to EntryList
1707 if (Policy == 1) { // append to EntryList
1723 if (Policy == 2) { // prepend to cxq
1739 if (Policy == 3) { // append to cxq
1764 if (Policy < 4) {
1794 int Policy = Knob_MoveNotifyee ; local
1814 if (Policy != 4) {
1825 if (Policy
[all...]

Completed in 563 milliseconds