Searched refs:policies (Results 1 - 25 of 37) sorted by relevance

12

/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/oa/poa/
H A DPOAPolicyMediatorFactory.java29 // create an appropriate policy mediator based on the policies.
30 // Note that the policies object has already been validated before
31 // this call, so it can only contain valid combinations of POA policies.
32 static POAPolicyMediator create( Policies policies, POAImpl poa ) argument
34 if (policies.retainServants()) {
35 if (policies.useActiveMapOnly())
36 return new POAPolicyMediatorImpl_R_AOM( policies, poa ) ;
37 else if (policies.useDefaultServant())
38 return new POAPolicyMediatorImpl_R_UDS( policies, poa ) ;
39 else if (policies
[all...]
H A DPOAPolicyMediatorBase.java52 private Policies policies ; field in class:POAPolicyMediatorBase
64 return policies ;
77 POAPolicyMediatorBase( Policies policies, POAImpl poa ) argument
79 if (policies.isSingleThreaded())
85 this.policies = policies ;
89 switch (policies.servantCachingLevel()) {
104 if ( policies.isTransient() ) {
111 isImplicit = policies.isImplicitlyActivated() ;
112 isUnique = policies
[all...]
H A DPolicies.java165 /** Add the first index in policies at which the policy is of type
166 * policyId to errorSet, if the polictId is in policies (it may not be).
168 private void addToErrorSet( Policy[] policies, int policyId, argument
171 for (int ctr=0; ctr<policies.length; ctr++ )
172 if (policies[ctr].policy_type() == policyId) {
181 Policies(Policy[] policies, int id ) throws InvalidPolicy argument
188 if ( policies == null )
191 // Set to record all indices in policies for which errors
193 BitSet errorSet = new BitSet( policies.length ) ;
195 for(short i = 0; i < policies
[all...]
H A DPOAPolicyMediatorImpl_R_UDS.java50 POAPolicyMediatorImpl_R_UDS( Policies policies, POAImpl poa ) argument
52 // assert policies.retainServants()
53 super( policies, poa ) ;
56 // policies.useDefaultServant()
57 if (!policies.useDefaultServant())
H A DPOAPolicyMediatorImpl_R_AOM.java52 POAPolicyMediatorImpl_R_AOM( Policies policies, POAImpl poa ) argument
54 // assert policies.retainServants()
55 super( policies, poa ) ;
57 // policies.useActiveObjectMapOnly()
58 if (!policies.useActiveMapOnly())
H A DPOAPolicyMediatorImpl_NR_UDS.java50 POAPolicyMediatorImpl_NR_UDS( Policies policies, POAImpl poa ) argument
52 super( policies, poa ) ;
54 // assert !policies.retainServants() && policies.useDefaultServant()
55 if (policies.retainServants())
58 if (!policies.useDefaultServant())
H A DPOAPolicyMediatorImpl_NR_USM.java56 POAPolicyMediatorImpl_NR_USM( Policies policies, POAImpl poa ) argument
58 super( policies, poa ) ;
60 // assert !policies.retainServants() && policies.useServantManager()
61 if (policies.retainServants())
64 if (!policies.useServantManager())
H A DPOAPolicyMediatorBase_R.java48 POAPolicyMediatorBase_R( Policies policies, POAImpl poa ) argument
50 super( policies, poa ) ;
52 // assert policies.retainServants() && policies.useActiveObjectMapOnly()
53 if (!policies.retainServants())
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.loop.phases/src/org/graalvm/compiler/loop/phases/
H A DLoopPhase.java30 private P policies; field in class:LoopPhase
32 public LoopPhase(P policies) { argument
33 this.policies = policies;
37 return policies;
H A DContextlessLoopPhase.java31 public ContextlessLoopPhase(P policies) { argument
32 super(policies);
H A DLoopFullUnrollPhase.java39 public LoopFullUnrollPhase(CanonicalizerPhase canonicalizer, LoopPolicies policies) { argument
40 super(policies);
H A DLoopPeelingPhase.java34 public LoopPeelingPhase(LoopPolicies policies) { argument
35 super(policies);
H A DLoopUnswitchingPhase.java43 public LoopUnswitchingPhase(LoopPolicies policies) { argument
44 super(policies);
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/policy/
H A DPolicySubject.java44 private final List<Policy> policies = new LinkedList<Policy>(); field in class:PolicySubject
50 * @param subject object to which the policies are attached. Must not be {@code null}.
67 * @param subject object to which the policies are attached. Must not be {@code null}.
68 * @param policies first policy attached to the subject. Must not be {@code null}.
71 * in case {@code policies} argument represents empty collection.
73 public PolicySubject(Object subject, Collection<Policy> policies) throws IllegalArgumentException { argument
74 if (subject == null || policies == null) {
78 if (policies.isEmpty()) {
83 this.policies.addAll(policies);
[all...]
H A DPolicyMerger.java35 * Merge policies and return the effective policy.
59 * Takes collection of policies and merges them into a single policy using algorithm described in
60 * WS-PolicyAttachment specification. None of the original policies in the collection are modified in
65 * @param policies collection of policies to be merged. The collection must not contain '{@code null}' elements!
66 * @return merged policy containing combination of policy alternatives stored in all input policies.
67 * If provided collection of policies is {@code null} or empty, returns {@code null}. If provided
68 * collection of policies contains only single policy, the policy is returned.
70 public Policy merge(final Collection<Policy> policies) { argument
71 if (policies
[all...]
H A DPolicyIntersector.java63 * Returns a strict policy intersector that can be used to intersect group of policies.
72 * Returns a strict policy intersector that can be used to intersect group of policies.
81 * Performs intersection on the input collection of policies and returns the resulting (intersected) policy. If input policy
85 * @param policies collection of policies to be intersected. Must not be {@code null} nor empty, otherwise exception is thrown.
88 * @throws IllegalArgumentException in case {@code policies} argument is either {@code null} or empty collection.
90 public Policy intersect(final Policy... policies) { argument
91 if (policies == null || policies.length == 0) {
93 } else if (policies
[all...]
H A DPolicyScope.java37 * hold policies
65 * Returns all policies of the scope merged into one policy
70 final LinkedList<Policy> policies = new LinkedList<Policy>();
72 policies.add(subject.getEffectivePolicy(merger));
74 return merger.merge(policies);
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/spi/transport/
H A DCorbaAcceptor.java44 public void addToIORTemplate(IORTemplate iorTemplate, Policies policies, argument
H A DCorbaTransportManager.java50 // REVISIT - POA specific policies
52 Policies policies,
51 addToIORTemplate(IORTemplate iorTemplate, Policies policies, String codebase, String objectAdapterManagerId, ObjectAdapterId objectAdapterId) argument
/openjdk9/jdk/src/java.security.sasl/share/classes/com/sun/security/sasl/util/
H A DPolicyUtils.java91 * subset that conforms to the policies defined in props.
95 public static String[] filterMechs(String[] mechs, int[] policies, argument
104 if (passed[i] = checkPolicy(policies[i], props)) {
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/policy/jaxws/
H A DBuilderHandler.java95 final Collection<Policy> policies = getPolicies();
96 final Collection<PolicySubject> result = new ArrayList<PolicySubject>(policies.size());
97 for (Policy policy : policies) {
/openjdk9/corba/src/java.corba/share/classes/org/omg/CORBA/
H A DObject.java251 * domain managers, and hence the security and other policies applicable
263 * Returns a new <code>Object</code> with the given policies
264 * either replacing any existing policies in this
265 * <code>Object</code> or with the given policies added
269 * @param policies an array of <code>Policy</code> objects containing
270 * the policies to be added or to be used as replacements
272 * that the given policies will replace any existing ones, or
274 * the given policies should be added to any existing ones
275 * @return a new <code>Object</code> with the given policies replacing
278 org.omg.CORBA.Object _set_policy_override(Policy[] policies, argument
[all...]
/openjdk9/jdk/src/java.base/share/classes/sun/security/pkcs/
H A DSigningCertificateInfo.java48 * policies SEQUENCE OF PolicyInformation OPTIONAL
100 // format policies as a string
121 // Parse policies, if present
123 DerValue[] policies = derValue.data.getSequence(1);
124 for (int i = 0; i < policies.length; i++) {
/openjdk9/jdk/src/java.base/share/classes/sun/security/provider/certpath/
H A DPKIX.java84 private Set<String> policies; field in class:PKIX.ValidatorParams
166 if (policies == null)
167 policies = params.getInitialPolicies();
168 return policies;
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/spi/presentation/rmi/
H A DStubWrapper.java157 public org.omg.CORBA.Object _set_policy_override( Policy[] policies, argument
160 return object._set_policy_override( policies, set_add ) ;

Completed in 209 milliseconds

12