Searched refs:pe (Results 1 - 25 of 282) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/
H A DSMSErrorHandler.java36 public void error(SAXParseException pe) throws SAXParseException { argument
37 throw (pe);
40 public void fatalError(SAXParseException pe) throws SAXParseException { argument
41 throw (pe);
44 public void warning(SAXParseException pe) throws SAXParseException { argument
45 throw (pe);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/
H A DSMSErrorHandler.java36 public void error(SAXParseException pe) throws SAXParseException { argument
37 throw (pe);
40 public void fatalError(SAXParseException pe) throws SAXParseException { argument
41 throw (pe);
44 public void warning(SAXParseException pe) throws SAXParseException { argument
45 throw (pe);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/
H A DPolicyEvaluatorFactory.java90 PolicyEvaluator pe
92 if (pe == null) {
100 pe = new PolicyEvaluator(serviceType);
101 evaluatorCache.put(serviceType, pe);
110 return pe;
H A DSharedSubject.java161 } catch (PolicyException pe) {
188 } catch (PolicyException pe) {
191 + " could not getValues()", pe);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/
H A DPolicyEvaluatorFactory.java90 PolicyEvaluator pe
92 if (pe == null) {
100 pe = new PolicyEvaluator(serviceType);
101 evaluatorCache.put(serviceType, pe);
110 return pe;
H A DSharedSubject.java161 } catch (PolicyException pe) {
188 } catch (PolicyException pe) {
191 + " could not getValues()", pe);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/client/
H A DPolicyEvaluatorFactory.java110 PolicyEvaluator pe = null;
124 pe = (PolicyEvaluator)appTokenEvaluatorsMap.get(appSSOTokenProvider);
125 if ( pe == null) {
132 pe = PolicyEvaluator.getInstance(serviceName, appSSOTokenProvider);
133 appTokenEvaluatorsMap.put(appSSOTokenProvider, pe);
142 return pe;
H A DPolicyNotificationHandler.java96 } catch (PolicyException pe) {
100 pe);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/client/
H A DPolicyEvaluatorFactory.java110 PolicyEvaluator pe = null;
124 pe = (PolicyEvaluator)appTokenEvaluatorsMap.get(appSSOTokenProvider);
125 if ( pe == null) {
132 pe = PolicyEvaluator.getInstance(serviceName, appSSOTokenProvider);
133 appTokenEvaluatorsMap.put(appSSOTokenProvider, pe);
142 return pe;
H A DPolicyNotificationHandler.java95 } catch (PolicyException pe) {
99 pe);
/forgerock/openam-v13/openam-federation/OpenFM/src/test/java/com/sun/identity/policy/
H A DPolicyWildcardTest.java139 PolicyEvaluator pe = new PolicyEvaluator(Util.IPLANETAMWEBAGENTSERVICE);
140 Assert.assertTrue(pe.isAllowed(userSSOToken, URL_USER_TEST1, Util.GET_ACTION), "Expecting " + URL_USER_TEST1 + " to be allowed.");
146 PolicyEvaluator pe = new PolicyEvaluator(Util.IPLANETAMWEBAGENTSERVICE);
147 Assert.assertTrue(pe.isAllowed(userSSOToken, URL_USER_TEST2, Util.GET_ACTION), "Expecting " + URL_USER_TEST2 + " to be allowed.");
153 PolicyEvaluator pe = new PolicyEvaluator(Util.IPLANETAMWEBAGENTSERVICE);
154 Assert.assertTrue(pe.isAllowed(userSSOToken, URL_USER_TEST3, Util.GET_ACTION), "Expecting " + URL_USER_TEST3 + " to be allowed.");
160 PolicyEvaluator pe = new PolicyEvaluator(Util.IPLANETAMWEBAGENTSERVICE);
161 Assert.assertTrue(pe.isAllowed(adminUserSSOToken, URL_ADMIN_USER_TEST1, Util.GET_ACTION), "Expecting " + URL_ADMIN_USER_TEST1 + " to be allowed.");
167 PolicyEvaluator pe = new PolicyEvaluator(Util.IPLANETAMWEBAGENTSERVICE);
168 Assert.assertTrue(pe
[all...]
/forgerock/openam/openam-federation/OpenFM/src/test/java/com/sun/identity/policy/
H A DPolicyWildcardTest.java139 PolicyEvaluator pe = new PolicyEvaluator(Util.IPLANETAMWEBAGENTSERVICE);
140 Assert.assertTrue(pe.isAllowed(userSSOToken, URL_USER_TEST1, Util.GET_ACTION), "Expecting " + URL_USER_TEST1 + " to be allowed.");
146 PolicyEvaluator pe = new PolicyEvaluator(Util.IPLANETAMWEBAGENTSERVICE);
147 Assert.assertTrue(pe.isAllowed(userSSOToken, URL_USER_TEST2, Util.GET_ACTION), "Expecting " + URL_USER_TEST2 + " to be allowed.");
153 PolicyEvaluator pe = new PolicyEvaluator(Util.IPLANETAMWEBAGENTSERVICE);
154 Assert.assertTrue(pe.isAllowed(userSSOToken, URL_USER_TEST3, Util.GET_ACTION), "Expecting " + URL_USER_TEST3 + " to be allowed.");
160 PolicyEvaluator pe = new PolicyEvaluator(Util.IPLANETAMWEBAGENTSERVICE);
161 Assert.assertTrue(pe.isAllowed(adminUserSSOToken, URL_ADMIN_USER_TEST1, Util.GET_ACTION), "Expecting " + URL_ADMIN_USER_TEST1 + " to be allowed.");
167 PolicyEvaluator pe = new PolicyEvaluator(Util.IPLANETAMWEBAGENTSERVICE);
168 Assert.assertTrue(pe
[all...]
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/validation/
H A DXSDateTimeValidator.java68 } catch (ParseException pe) {
/forgerock/openam-v13/openam-federation/OpenFM/src/main/java/com/sun/identity/liberty/ws/disco/plugins/
H A DDefaultDiscoAuthorizer.java52 PolicyEvaluator pe = null; field in class:DefaultDiscoAuthorizer
60 pe = new PolicyEvaluator("sunIdentityServerDiscoveryService");
93 if (pe == null) {
120 result = pe.isAllowed((SSOToken) credential, resource, action, env);
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/validation/
H A DXSDateTimeValidator.java68 } catch (ParseException pe) {
/forgerock/openam/openam-federation/OpenFM/src/main/java/com/sun/identity/liberty/ws/disco/plugins/
H A DDefaultDiscoAuthorizer.java52 PolicyEvaluator pe = null; field in class:DefaultDiscoAuthorizer
60 pe = new PolicyEvaluator("sunIdentityServerDiscoveryService");
93 if (pe == null) {
120 result = pe.isAllowed((SSOToken) credential, resource, action, env);
/forgerock/opendj2/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DBinaryValue.java222 catch (ParseException pe)
225 "Unexpected error getting bytes: "+pe, pe);
/forgerock/opendj-b2.6/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DBinaryValue.java223 catch (ParseException pe)
226 "Unexpected error getting bytes: "+pe, pe);
/forgerock/opendj2.6.2/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DBinaryValue.java223 catch (ParseException pe)
226 "Unexpected error getting bytes: "+pe, pe);
/forgerock/opendj2-hg/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DBinaryValue.java222 catch (ParseException pe)
225 "Unexpected error getting bytes: "+pe, pe);
/forgerock/opendj2-jel-hg/src/guitools/org/opends/guitools/controlpanel/datamodel/
H A DBinaryValue.java223 catch (ParseException pe)
226 "Unexpected error getting bytes: "+pe, pe);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/guitools/controlpanel/datamodel/
H A DBinaryValue.java207 catch (ParseException pe)
210 "Unexpected error getting bytes: "+pe, pe);
/forgerock/opendj-b2.6/src/server/org/opends/server/tools/dsconfig/
H A DArgumentExceptionFactory.java122 IllegalPropertyValueException pe = (IllegalPropertyValueException) e;
123 return adapt(d, pe);
125 IllegalPropertyValueStringException pe =
127 return adapt(d, pe);
129 PropertyIsMandatoryException pe = (PropertyIsMandatoryException) e;
130 return adapt(d, pe);
132 PropertyIsSingleValuedException pe = (PropertyIsSingleValuedException) e;
133 return adapt(d, pe);
135 PropertyIsReadOnlyException pe = (PropertyIsReadOnlyException) e;
136 return adapt(d, pe);
[all...]
/forgerock/opendj2/src/server/org/opends/server/tools/dsconfig/
H A DArgumentExceptionFactory.java121 IllegalPropertyValueException pe = (IllegalPropertyValueException) e;
122 return adapt(d, pe);
124 IllegalPropertyValueStringException pe =
126 return adapt(d, pe);
128 PropertyIsMandatoryException pe = (PropertyIsMandatoryException) e;
129 return adapt(d, pe);
131 PropertyIsSingleValuedException pe = (PropertyIsSingleValuedException) e;
132 return adapt(d, pe);
134 PropertyIsReadOnlyException pe = (PropertyIsReadOnlyException) e;
135 return adapt(d, pe);
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/tools/dsconfig/
H A DArgumentExceptionFactory.java122 IllegalPropertyValueException pe = (IllegalPropertyValueException) e;
123 return adapt(d, pe);
125 IllegalPropertyValueStringException pe =
127 return adapt(d, pe);
129 PropertyIsMandatoryException pe = (PropertyIsMandatoryException) e;
130 return adapt(d, pe);
132 PropertyIsSingleValuedException pe = (PropertyIsSingleValuedException) e;
133 return adapt(d, pe);
135 PropertyIsReadOnlyException pe = (PropertyIsReadOnlyException) e;
136 return adapt(d, pe);
[all...]

Completed in 62 milliseconds

1234567891011>>