Searched defs:tokenType (Results 1 - 25 of 117) sorted by relevance

12345

/forgerock/openam-v13/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/token/
H A DCTSTokenIdGenerator.java33 * @param tokenType the type of token for which an id must be generated
38 String generateTokenId(TokenType tokenType, String tokenString) throws TokenIdGenerationException; argument
/forgerock/openam-v13/openam-sts/openam-rest-sts/src/main/java/org/forgerock/openam/sts/rest/operation/cancel/
H A DIssuedTokenCancellerFactory.java31 * @param tokenType The TokenTypeId for which a RestIssuedTokenCanceller instance should be obtained
36 RestIssuedTokenCanceller getTokenCanceller(TokenTypeId tokenType) throws STSInitializationException; argument
H A DIssuedTokenCancellerFactoryImpl.java45 public RestIssuedTokenCanceller getTokenCanceller(TokenTypeId tokenType) throws STSInitializationException { argument
46 if (TokenType.SAML2.getId().equals(tokenType.getId())) {
48 } else if (TokenType.OPENIDCONNECT.getId().equals(tokenType.getId())) {
52 "available for cancellation. Illegal validation token type: " + tokenType.getId());
/forgerock/openam-v13/openam-sts/openam-rest-sts/src/main/java/org/forgerock/openam/sts/rest/operation/validate/
H A DIssuedTokenValidatorFactory.java29 * @param tokenType The TokenTypeId for which a RestIssuedTokenValidator instance should be obtained
34 RestIssuedTokenValidator getTokenValidator(TokenTypeId tokenType) throws STSInitializationException; argument
H A DIssuedTokenValidatorFactoryImpl.java45 public RestIssuedTokenValidator getTokenValidator(TokenTypeId tokenType) throws STSInitializationException { argument
46 if (TokenType.SAML2.getId().equals(tokenType.getId())) {
48 } else if (TokenType.OPENIDCONNECT.getId().equals(tokenType.getId())) {
52 "available for validation. Illegal validation token type: " + tokenType.getId());
/forgerock/openam/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/token/
H A DCTSTokenIdGenerator.java33 * @param tokenType the type of token for which an id must be generated
38 String generateTokenId(TokenType tokenType, String tokenString) throws TokenIdGenerationException; argument
/forgerock/openam/openam-sts/openam-rest-sts/src/main/java/org/forgerock/openam/sts/rest/operation/cancel/
H A DIssuedTokenCancellerFactory.java31 * @param tokenType The TokenTypeId for which a RestIssuedTokenCanceller instance should be obtained
36 RestIssuedTokenCanceller getTokenCanceller(TokenTypeId tokenType) throws STSInitializationException; argument
H A DIssuedTokenCancellerFactoryImpl.java45 public RestIssuedTokenCanceller getTokenCanceller(TokenTypeId tokenType) throws STSInitializationException { argument
46 if (TokenType.SAML2.getId().equals(tokenType.getId())) {
48 } else if (TokenType.OPENIDCONNECT.getId().equals(tokenType.getId())) {
52 "available for cancellation. Illegal validation token type: " + tokenType.getId());
/forgerock/openam/openam-sts/openam-rest-sts/src/main/java/org/forgerock/openam/sts/rest/operation/validate/
H A DIssuedTokenValidatorFactory.java29 * @param tokenType The TokenTypeId for which a RestIssuedTokenValidator instance should be obtained
34 RestIssuedTokenValidator getTokenValidator(TokenTypeId tokenType) throws STSInitializationException; argument
H A DIssuedTokenValidatorFactoryImpl.java45 public RestIssuedTokenValidator getTokenValidator(TokenTypeId tokenType) throws STSInitializationException { argument
46 if (TokenType.SAML2.getId().equals(tokenType.getId())) {
48 } else if (TokenType.OPENIDCONNECT.getId().equals(tokenType.getId())) {
52 "available for validation. Illegal validation token type: " + tokenType.getId());
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/cts/monitoring/impl/persistence/
H A DCtsPersistenceOperationsDelegate.java47 * @param tokenType The type of token for which we are gathering results
51 public int countTokenEntries(TokenType tokenType) throws CoreTokenException { argument
57 .withAttribute(CoreTokenField.TOKEN_TYPE, tokenType)
76 * @param tokenType The type of token for which we are gathering results
80 public Collection<Long> listDurationOfTokens(TokenType tokenType) throws CoreTokenException { argument
89 .withAttribute(CoreTokenField.TOKEN_TYPE, tokenType)
H A DCtsPersistenceOperationsMonitor.java56 * @param tokenType the token type we're looking up
60 public Long getTotalCount(TokenType tokenType) throws CoreTokenException { argument
62 if (tokenType == null) {
66 return (long) delegate.countTokenEntries(tokenType);
72 * @param tokenType the token type we're looking up
76 public Long getAverageDuration(TokenType tokenType) throws CoreTokenException { argument
79 if (tokenType == null) {
83 final Collection<Long> queryResults = delegate.listDurationOfTokens(tokenType);
/forgerock/openam-v13/openam-oauth2-common/oauth2-core/src/main/java/org/forgerock/oauth2/core/
H A DNoneResponseTypeHandler.java32 public Map.Entry<String, Token> handle(String tokenType, Set<String> scope, argument
H A DResponseTypeHandler.java38 * @param tokenType The type of the token.
53 Map.Entry<String, Token> handle(String tokenType, Set<String> scope, ResourceOwner resourceOwner, argument
H A DTokenIntrospectionHandler.java30 * @param tokenType The type of the token being introspected - could be null, in which case try and find any token
37 JsonValue introspect(OAuth2Request request, String clientId, String tokenType, String tokenId) argument
/forgerock/openam-v13/openam-sts/openam-rest-sts/src/main/java/org/forgerock/openam/sts/rest/token/canceller/
H A DRestIssuedTokenCanceller.java28 * @param tokenType the type of the to-be-cancelled token
31 boolean canCancelToken(TokenTypeId tokenType); argument
/forgerock/openam-v13/openam-sts/openam-rest-sts/src/main/java/org/forgerock/openam/sts/rest/token/validator/
H A DRestIssuedTokenValidator.java31 * @param tokenType the type of the to-be-validated token
34 boolean canValidateToken(TokenTypeId tokenType); 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 DWSSValidatorFactory.java32 * @param tokenType The type of token which the Validator will validate
36 * @return The org.apache.ws.security.validate.Validator instance which can validate the specified tokenType
40 Validator getValidator(TokenType tokenType, ValidationInvocationContext validationInvocationContext, argument
/forgerock/openam/openam-oauth2/src/main/java/org/forgerock/oauth2/core/
H A DNoneResponseTypeHandler.java34 public Map.Entry<String, Token> handle(String tokenType, Set<String> scope, argument
H A DResponseTypeHandler.java38 * @param tokenType The type of the token.
53 Map.Entry<String, Token> handle(String tokenType, Set<String> scope, ResourceOwner resourceOwner, argument
H A DTokenIntrospectionHandler.java30 * @param tokenType The type of the token being introspected - could be null, in which case try and find any token
37 JsonValue introspect(OAuth2Request request, String clientId, String tokenType, String tokenId) argument
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/cts/monitoring/impl/persistence/
H A DCtsPersistenceOperationsDelegate.java47 * @param tokenType The type of token for which we are gathering results
51 public int countTokenEntries(TokenType tokenType) throws CoreTokenException { argument
57 .withAttribute(CoreTokenField.TOKEN_TYPE, tokenType)
76 * @param tokenType The type of token for which we are gathering results
80 public Collection<Long> listDurationOfTokens(TokenType tokenType) throws CoreTokenException { argument
89 .withAttribute(CoreTokenField.TOKEN_TYPE, tokenType)
H A DCtsPersistenceOperationsMonitor.java56 * @param tokenType the token type we're looking up
60 public Long getTotalCount(TokenType tokenType) throws CoreTokenException { argument
62 if (tokenType == null) {
66 return (long) delegate.countTokenEntries(tokenType);
72 * @param tokenType the token type we're looking up
76 public Long getAverageDuration(TokenType tokenType) throws CoreTokenException { argument
79 if (tokenType == null) {
83 final Collection<Long> queryResults = delegate.listDurationOfTokens(tokenType);
/forgerock/openam/openam-sts/openam-rest-sts/src/main/java/org/forgerock/openam/sts/rest/token/canceller/
H A DRestIssuedTokenCanceller.java28 * @param tokenType the type of the to-be-cancelled token
31 boolean canCancelToken(TokenTypeId tokenType); argument
/forgerock/openam/openam-sts/openam-rest-sts/src/main/java/org/forgerock/openam/sts/rest/token/validator/
H A DRestIssuedTokenValidator.java31 * @param tokenType the type of the to-be-validated token
34 boolean canValidateToken(TokenTypeId tokenType); argument

Completed in 86 milliseconds

12345