Searched defs:credential (Results 1 - 25 of 32) sorted by relevance

12

/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/log/spi/
H A DIAuthorizer.java41 * @param credential The credential to be authorized.
42 * @return <code>true</code> if the credential is authorized.
47 Object credential);
53 * @param credential Credential to be checked for authorization.
57 public boolean isAuthorized(Object credential); argument
44 isAuthorized( String logName, String operation, Object credential) argument
H A DISAuthorizer.java65 * @param credential The credential to be authorized.
66 * @return <code>true</code> if the credential is authorized.
71 Object credential
74 if (credential instanceof SSOToken) {
75 ssoToken = (SSOToken)credential;
144 * @param credential Credential to be checked for authorization.
148 public boolean isAuthorized(Object credential) { argument
H A DAuthorizer.java61 * @param credential Credential to be authorized.
62 * @return true if the credential is authorized.
67 Object credential)
69 return authorizer.isAuthorized (logName, operation, credential);
75 * @param credential Credential to be checked for authorization.
78 public static boolean isAuthorized (Object credential) { argument
79 return authorizer.isAuthorized (credential);
64 isAuthorized( String logName, String operation, Object credential) argument
/forgerock/jee-agents-v3.5/jee-agents-jetty/jee-agents-jetty-v7/src/main/java/org/forgerock/agents/jetty/v7/
H A DAgentUserInfo.java29 public AgentUserInfo(String userName, Credential credential, List<String> roleNames) { argument
/forgerock/openam/openam-core/src/main/java/com/sun/identity/log/spi/
H A DIAuthorizer.java41 * @param credential The credential to be authorized.
42 * @return <code>true</code> if the credential is authorized.
47 Object credential);
53 * @param credential Credential to be checked for authorization.
57 public boolean isAuthorized(Object credential); argument
44 isAuthorized( String logName, String operation, Object credential) argument
H A DISAuthorizer.java65 * @param credential The credential to be authorized.
66 * @return <code>true</code> if the credential is authorized.
71 Object credential
74 if (credential instanceof SSOToken) {
75 ssoToken = (SSOToken)credential;
144 * @param credential Credential to be checked for authorization.
148 public boolean isAuthorized(Object credential) { argument
H A DAuthorizer.java61 * @param credential Credential to be authorized.
62 * @return true if the credential is authorized.
67 Object credential)
69 return authorizer.isAuthorized (logName, operation, credential);
75 * @param credential Credential to be checked for authorization.
78 public static boolean isAuthorized (Object credential) { argument
79 return authorizer.isAuthorized (credential);
64 isAuthorized( String logName, String operation, Object credential) argument
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/interfaces/
H A DAuthorizer.java64 * @param credential credential of a <code>WSC</code>.
80 public boolean isAuthorized(Object credential, String action, argument
86 * @param credential credential of a <code>WSC</code>.
103 Object credential,
102 getAuthorizationDecision( Object credential, String action, Object data, java.util.Map env) argument
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/interfaces/
H A DAuthorizer.java64 * @param credential credential of a <code>WSC</code>.
80 public boolean isAuthorized(Object credential, String action, argument
86 * @param credential credential of a <code>WSC</code>.
103 Object credential,
102 getAuthorizationDecision( Object credential, String action, Object data, java.util.Map env) argument
/forgerock/openam-v13/openam-sts/openam-soap-sts/openam-soap-sts-server/src/main/java/org/forgerock/openam/sts/soap/token/validator/wss/
H A DSoapCertificateTokenValidator.java70 public Credential validate(Credential credential, RequestData data) throws WSSecurityException { argument
72 final String sessionId = authenticationHandler.authenticate(credential.getCertificates(), TokenType.X509);
74 return credential;
/forgerock/openam-v13/openam-federation/OpenFM/src/main/java/com/sun/identity/liberty/ws/disco/plugins/
H A DDefaultDiscoAuthorizer.java69 * @param credential credential of a WSC.
70 * In this implmentation, credential is the SSOToken of the WSC.
89 public boolean isAuthorized(Object credential, String action, argument
102 if (!checkInput(credential, action, data, env)) {
120 result = pe.isAllowed((SSOToken) credential, resource, action, env);
129 private boolean checkInput(Object credential, String action, Object data, argument
132 if ((credential == null) || !(credential instanceof SSOToken)) {
134 + "wrong credential
181 getAuthorizationDecision( Object credential, String action, Object data, java.util.Map env) argument
[all...]
/forgerock/openam-v13/openam-federation/OpenFM/src/main/java/com/sun/identity/liberty/ws/idpp/plugin/
H A DIDPPAuthorizer.java79 * @param credential credential
85 public boolean isAuthorized(Object credential, String action, argument
92 * @param credential SSOToken of a WSC.
112 Object credential,
118 if(credential == null || action == null || data == null) {
124 SSOToken token = (SSOToken)credential;
111 getAuthorizationDecision( Object credential, String action, Object data, java.util.Map env) argument
/forgerock/openam/openam-federation/OpenFM/src/main/java/com/sun/identity/liberty/ws/disco/plugins/
H A DDefaultDiscoAuthorizer.java69 * @param credential credential of a WSC.
70 * In this implmentation, credential is the SSOToken of the WSC.
89 public boolean isAuthorized(Object credential, String action, argument
102 if (!checkInput(credential, action, data, env)) {
120 result = pe.isAllowed((SSOToken) credential, resource, action, env);
129 private boolean checkInput(Object credential, String action, Object data, argument
132 if ((credential == null) || !(credential instanceof SSOToken)) {
134 + "wrong credential
181 getAuthorizationDecision( Object credential, String action, Object data, java.util.Map env) argument
[all...]
/forgerock/openam/openam-federation/OpenFM/src/main/java/com/sun/identity/liberty/ws/idpp/plugin/
H A DIDPPAuthorizer.java79 * @param credential credential
85 public boolean isAuthorized(Object credential, String action, argument
92 * @param credential SSOToken of a WSC.
112 Object credential,
118 if(credential == null || action == null || data == null) {
124 SSOToken token = (SSOToken)credential;
111 getAuthorizationDecision( Object credential, String action, Object data, java.util.Map env) argument
/forgerock/openam/openam-sts/openam-soap-sts/openam-soap-sts-server/src/main/java/org/forgerock/openam/sts/soap/token/validator/wss/
H A DSoapCertificateTokenValidator.java70 public Credential validate(Credential credential, RequestData data) throws WSSecurityException { argument
72 final String sessionId = authenticationHandler.authenticate(credential.getCertificates(), TokenType.X509);
74 return credential;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/security/
H A DSecurityTokenProvider.java53 * @param credential The credential of the caller used
61 public void initialize(java.lang.Object credential, argument
120 * identity, it is normally obtained by the credential reference in
161 * identity, it is normally obtained by the credential reference in
200 * identity, it is normally obtained by the credential reference in
240 * identity, it is normally obtained by the credential reference in
H A DSecurityTokenManager.java76 * @param credential The credential of the caller used
82 public SecurityTokenManager(java.lang.Object credential) argument
85 // no null checking for credential since provider may allow it
113 provider.initialize(credential, manager);
121 * @param credential The credential of the caller used
129 public SecurityTokenManager(java.lang.Object credential, argument
133 // no null checking for credential since provider may allow it
152 provider.initialize(credential, signatureManage
[all...]
H A DSecurityTokenManagerClient.java111 * @param credential credential of the caller used to see
116 public SecurityTokenManagerClient(Object credential) argument
131 securityTokenManager = new SecurityTokenManager(credential);
150 SessionManager.getProvider().getSessionID(credential);
170 * @param credential credential of the caller used to see
175 public SecurityTokenManagerClient(String url, Object credential) argument
179 ssoToken = SessionManager.getProvider().getSessionID(credential);
390 * identity, it is normally obtained by the credential referenc
[all...]
H A DLibSecurityTokenProvider.java121 * @param credential The credential of the caller used to see if
129 public void initialize(Object credential,XMLSignatureManager sigManager) argument
143 ssoToken = credential;
291 * is normally obtained by the credential reference in
334 * is normally obtained by the credential reference in the
374 * is normally obtained by the credential reference in the
416 * is normally obtained by the credential reference in the
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/security/
H A DSecurityTokenProvider.java53 * @param credential The credential of the caller used
61 public void initialize(java.lang.Object credential, argument
120 * identity, it is normally obtained by the credential reference in
161 * identity, it is normally obtained by the credential reference in
200 * identity, it is normally obtained by the credential reference in
240 * identity, it is normally obtained by the credential reference in
H A DSecurityTokenManager.java76 * @param credential The credential of the caller used
82 public SecurityTokenManager(java.lang.Object credential) argument
85 // no null checking for credential since provider may allow it
113 provider.initialize(credential, manager);
121 * @param credential The credential of the caller used
129 public SecurityTokenManager(java.lang.Object credential, argument
133 // no null checking for credential since provider may allow it
152 provider.initialize(credential, signatureManage
[all...]
H A DSecurityTokenManagerClient.java111 * @param credential credential of the caller used to see
116 public SecurityTokenManagerClient(Object credential) argument
131 securityTokenManager = new SecurityTokenManager(credential);
150 SessionManager.getProvider().getSessionID(credential);
170 * @param credential credential of the caller used to see
175 public SecurityTokenManagerClient(String url, Object credential) argument
179 ssoToken = SessionManager.getProvider().getSessionID(credential);
390 * identity, it is normally obtained by the credential referenc
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/idpp/
H A DPersonalProfile.java66 * A WSC credential may not have enough priveleges to write or read the
70 * will be done for a WSC credential.
97 * @param credential credentials of the requesting WSC.
107 public Map queryData(Object credential, argument
115 if(credential == null || resourceID == null ||
124 sessionValid = SessionManager.getProvider().isValid(credential);
481 * @param credential credential of a WSC.
491 public boolean modifyData(Object credential, argument
498 if(credential
676 getAuthZAction(Object credential, String action, String select, Map env) argument
[all...]
/forgerock/openidm-v4/openidm-authnfilter/src/main/java/org/forgerock/openidm/auth/modules/
H A DDelegatedAuthModule.java165 private boolean authenticate(IDMAuthModuleWrapper.Credential credential, MessageInfoContext messageInfo, argument
168 if (!credential.isComplete()) {
174 securityContextMapper.setAuthenticationId(credential.username);
183 credential.username, credential.password, context);
196 logger.debug("Failed delegated authentication of {} on {}.", credential.username, queryOnResource, e);
200 "Failed delegated authentication of " + credential.username + " on " + queryOnResource, e);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/liberty/ws/idpp/
H A DPersonalProfile.java69 * A WSC credential may not have enough priveleges to write or read the
73 * will be done for a WSC credential.
100 * @param credential credentials of the requesting WSC.
110 public Map queryData(Object credential, argument
118 if(credential == null || resourceID == null ||
127 sessionValid = SessionManager.getProvider().isValid(credential);
484 * @param credential credential of a WSC.
494 public boolean modifyData(Object credential, argument
501 if(credential
679 getAuthZAction(Object credential, String action, String select, Map env) argument
[all...]

Completed in 107 milliseconds

12