Searched defs:isSpecialUser (Results 1 - 14 of 14) sorted by relevance

/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/forgerockrest/utils/
H A DSpecialUserIdentity.java23 * consumption of AuthD.isSpecialUser to aid in unit-tests. Note that the SSOToken returned from
32 boolean isSpecialUser(SSOToken token); method in interface:SpecialUserIdentity
H A DSpecialUserIdentityImpl.java38 public boolean isSpecialUser(SSOToken token) { method in class:SpecialUserIdentityImpl
41 return AuthD.getAuth().isSpecialUser(userId);
/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/forgerockrest/utils/
H A DSpecialUserIdentity.java23 * consumption of AuthD.isSpecialUser to aid in unit-tests. Note that the SSOToken returned from
32 boolean isSpecialUser(SSOToken token); method in interface:SpecialUserIdentity
H A DSpecialUserIdentityImpl.java38 public boolean isSpecialUser(SSOToken token) { method in class:SpecialUserIdentityImpl
41 return AuthD.getAuth().isSpecialUser(userId);
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sso/providers/stateless/
H A DStatelessAdminRestriction.java82 return delegate.isSuperUser(userDN) || delegate.isSpecialUser(userDN);
109 public boolean isSpecialUser(String userDN) {
110 return getAuthD().isSpecialUser(userDN);
120 boolean isSpecialUser(String userDN); method in interface:StatelessAdminRestriction.SuperUserDelegate
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/sso/providers/stateless/
H A DStatelessAdminRestriction.java82 return delegate.isSuperUser(userDN) || delegate.isSpecialUser(userDN);
109 public boolean isSpecialUser(String userDN) {
110 return getAuthD().isSpecialUser(userDN);
120 boolean isSpecialUser(String userDN); method in interface:StatelessAdminRestriction.SuperUserDelegate
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/policy/plugins/
H A DAuthenticatedAgents.java167 if (isSpecialUser(token.getPrincipal().getName())) {
209 protected boolean isSpecialUser(String dn) { method in class:AuthenticatedAgents
210 boolean isSpecialUser = false;
227 isSpecialUser = true;
233 return isSpecialUser;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/policy/plugins/
H A DAuthenticatedAgents.java167 if (isSpecialUser(token.getPrincipal().getName())) {
209 protected boolean isSpecialUser(String dn) { method in class:AuthenticatedAgents
210 boolean isSpecialUser = false;
227 isSpecialUser = true;
233 return isSpecialUser;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idm/plugins/internal/
H A DSpecialRepo.java173 if (isSpecialUser(type, name)) {
204 if (isSpecialUser(type, name)) {
231 if (isSpecialUser(type, name)) {
273 if (isSpecialUser(type, name)) {
318 if (isSpecialUser(type, name)) {
340 if (isSpecialUser(type, name)) {
377 if (isSpecialUser(type, name)) {
398 if (isSpecialUser(type, name)) {
417 if (isSpecialUser(type, name)) {
438 if (isSpecialUser(typ
936 private boolean isSpecialUser(IdType type, String name) method in class:SpecialRepo
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/idsvcs/opensso/
H A DIdentityServicesImpl.java282 if (isSpecialUser(amIdentity)) {
391 if (isSpecialUser(amIdentity)) {
600 if (isSpecialUser(userIdentity)) {
760 if (isSpecialUser(amIdentity)) {
871 private boolean isSpecialUser(AMIdentity identity) { method in class:IdentityServicesImpl
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idm/plugins/internal/
H A DSpecialRepo.java173 if (isSpecialUser(type, name)) {
204 if (isSpecialUser(type, name)) {
231 if (isSpecialUser(type, name)) {
273 if (isSpecialUser(type, name)) {
318 if (isSpecialUser(type, name)) {
340 if (isSpecialUser(type, name)) {
377 if (isSpecialUser(type, name)) {
398 if (isSpecialUser(type, name)) {
417 if (isSpecialUser(type, name)) {
438 if (isSpecialUser(typ
936 private boolean isSpecialUser(IdType type, String name) method in class:SpecialRepo
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/idsvcs/opensso/
H A DIdentityServicesImpl.java285 if (isSpecialUser(amIdentity)) {
394 if (isSpecialUser(amIdentity)) {
603 if (isSpecialUser(userIdentity)) {
763 if (isSpecialUser(amIdentity)) {
874 private boolean isSpecialUser(AMIdentity identity) { method in class:IdentityServicesImpl
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DAuthD.java889 isAdmin = isSpecialUser(nDN);
916 public boolean isSpecialUser(String dn) { method in class:AuthD
918 boolean isSpecialUser = false;
933 isSpecialUser = true;
940 debug.message("is Special User :" + isSpecialUser);
942 return isSpecialUser;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DAuthD.java838 isAdmin = isSpecialUser(nDN);
866 public boolean isSpecialUser(String dn) { method in class:AuthD
868 boolean isSpecialUser = false;
883 isSpecialUser = true;
890 debug.message("is Special User :" + isSpecialUser);
892 return isSpecialUser;

Completed in 77 milliseconds