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

12

/forgerock/openam-v13/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/rest/config/user/
H A DTokenTransformConfig.java31 * inputTokenType, should be invalidated following the generation of the outputTokenType.
42 private static final String INPUT_TOKEN_TYPE = "inputTokenType";
48 private final String inputTokenType; field in class:TokenTransformConfig
52 public TokenTransformConfig(TokenTypeId inputTokenType, TokenTypeId outputTokenType, boolean invalidateInterimOpenAMSession) { argument
53 this.inputTokenType = inputTokenType.getId();
56 Reject.ifNull(inputTokenType, INPUT_TOKEN_TYPE + " cannot be null");
63 public TokenTransformConfig(String inputTokenType, String outputTokenType, boolean invalidateInterimOpenAMSession) { argument
64 this.inputTokenType = inputTokenType;
[all...]
/forgerock/openam/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/rest/config/user/
H A DTokenTransformConfig.java31 * inputTokenType, should be invalidated following the generation of the outputTokenType.
42 private static final String INPUT_TOKEN_TYPE = "inputTokenType";
48 private final String inputTokenType; field in class:TokenTransformConfig
52 public TokenTransformConfig(TokenTypeId inputTokenType, TokenTypeId outputTokenType, boolean invalidateInterimOpenAMSession) { argument
53 this.inputTokenType = inputTokenType.getId();
56 Reject.ifNull(inputTokenType, INPUT_TOKEN_TYPE + " cannot be null");
63 public TokenTransformConfig(String inputTokenType, String outputTokenType, boolean invalidateInterimOpenAMSession) { argument
64 this.inputTokenType = inputTokenType;
[all...]
/forgerock/openam-v13/openam-sts/openam-rest-sts/src/main/java/org/forgerock/openam/sts/rest/operation/translate/
H A DOpenIdConnectRestTokenProviderParameters.java30 private final TokenTypeId inputTokenType; field in class:OpenIdConnectRestTokenProviderParameters
34 TokenTypeId inputTokenType, JsonValue inputToken) {
36 this.inputTokenType = inputTokenType;
47 return inputTokenType;
33 OpenIdConnectRestTokenProviderParameters(OpenIdConnectTokenCreationState openIdConnectTokenCreationState, TokenTypeId inputTokenType, JsonValue inputToken) argument
H A DSaml2RestTokenProviderParameters.java29 private final TokenTypeId inputTokenType; field in class:Saml2RestTokenProviderParameters
32 public Saml2RestTokenProviderParameters(Saml2TokenCreationState saml2TokenCreationState, TokenTypeId inputTokenType, JsonValue inputToken) { argument
34 this.inputTokenType = inputTokenType;
45 return inputTokenType;
H A DCustomRestTokenProviderParametersImpl.java32 private final TokenTypeId inputTokenType; field in class:CustomRestTokenProviderParametersImpl
38 public CustomRestTokenProviderParametersImpl(JsonValue tokenCreationState, TokenTypeId inputTokenType, JsonValue inputToken) { argument
40 this.inputTokenType = inputTokenType;
50 return inputTokenType;
H A DTokenTransformImpl.java46 private final TokenTypeId inputTokenType; field in class:TokenTransformImpl
56 TokenTypeId inputTokenType, TokenTypeId outputTokenType) {
59 this.inputTokenType = inputTokenType;
61 key = this.inputTokenType.getId() + this.outputTokenType.getId();
65 public boolean isTransformSupported(TokenTypeId inputTokenType, TokenTypeId outputTokenType) { argument
66 return this.inputTokenType.getId().equals(inputTokenType.getId()) && this.outputTokenType.getId().equals(outputTokenType.getId());
53 TokenTransformImpl( RestTokenTransformValidator<?> tokenValidator, RestTokenProvider<?> tokenProvider, TokenTypeId inputTokenType, TokenTypeId outputTokenType) argument
H A DTokenTransform.java42 * @param inputTokenType the input token type in the token transformation
46 boolean isTransformSupported(TokenTypeId inputTokenType, TokenTypeId outputTokenType); argument
H A DTokenTranslateOperationImpl.java80 TokenTypeId inputTokenType = tokenRequestMarshaller.getTokenType(invocationState.getInputTokenState());
85 if (transform.isTransformSupported(inputTokenType, outputTokenType)) {
91 String message = "The desired transformation, from " + inputTokenType.getId() + " to " + outputTokenType.getId() +
98 tokenRequestMarshaller.buildTokenProviderParameters(inputTokenType,
/forgerock/openam/openam-sts/openam-rest-sts/src/main/java/org/forgerock/openam/sts/rest/operation/translate/
H A DOpenIdConnectRestTokenProviderParameters.java30 private final TokenTypeId inputTokenType; field in class:OpenIdConnectRestTokenProviderParameters
34 TokenTypeId inputTokenType, JsonValue inputToken) {
36 this.inputTokenType = inputTokenType;
47 return inputTokenType;
33 OpenIdConnectRestTokenProviderParameters(OpenIdConnectTokenCreationState openIdConnectTokenCreationState, TokenTypeId inputTokenType, JsonValue inputToken) argument
H A DSaml2RestTokenProviderParameters.java29 private final TokenTypeId inputTokenType; field in class:Saml2RestTokenProviderParameters
32 public Saml2RestTokenProviderParameters(Saml2TokenCreationState saml2TokenCreationState, TokenTypeId inputTokenType, JsonValue inputToken) { argument
34 this.inputTokenType = inputTokenType;
45 return inputTokenType;
H A DCustomRestTokenProviderParametersImpl.java32 private final TokenTypeId inputTokenType; field in class:CustomRestTokenProviderParametersImpl
38 public CustomRestTokenProviderParametersImpl(JsonValue tokenCreationState, TokenTypeId inputTokenType, JsonValue inputToken) { argument
40 this.inputTokenType = inputTokenType;
50 return inputTokenType;
H A DTokenTransformImpl.java46 private final TokenTypeId inputTokenType; field in class:TokenTransformImpl
56 TokenTypeId inputTokenType, TokenTypeId outputTokenType) {
59 this.inputTokenType = inputTokenType;
61 key = this.inputTokenType.getId() + this.outputTokenType.getId();
65 public boolean isTransformSupported(TokenTypeId inputTokenType, TokenTypeId outputTokenType) { argument
66 return this.inputTokenType.getId().equals(inputTokenType.getId()) && this.outputTokenType.getId().equals(outputTokenType.getId());
53 TokenTransformImpl( RestTokenTransformValidator<?> tokenValidator, RestTokenProvider<?> tokenProvider, TokenTypeId inputTokenType, TokenTypeId outputTokenType) argument
H A DTokenTransform.java42 * @param inputTokenType the input token type in the token transformation
46 boolean isTransformSupported(TokenTypeId inputTokenType, TokenTypeId outputTokenType); argument
/forgerock/openam-v13/openam-sts/openam-rest-sts/src/main/java/org/forgerock/openam/sts/rest/token/provider/saml/
H A DSaml2JsonTokenAuthnContextMapperImpl.java37 public String getAuthnContext(TokenTypeId inputTokenType, JsonValue inputToken) { argument
38 if (TokenType.OPENAM.getId().equals(inputTokenType.getId())) {
40 } else if (TokenType.USERNAME.getId().equals(inputTokenType.getId())) {
42 } else if (TokenType.OPENIDCONNECT.getId().equals(inputTokenType.getId())) {
44 } else if (TokenType.X509.getId().equals(inputTokenType.getId())) {
48 logger.error("Unexpected TokenType passed to Saml2JsonTokenAuthnContextMapperImpl: " + inputTokenType + "; returning " +
H A DSaml2JsonTokenAuthnContextMapper.java46 * @param inputTokenType The TokenType validated as part of the token transformation
53 String getAuthnContext(TokenTypeId inputTokenType, JsonValue inputToken); argument
/forgerock/openam/openam-sts/openam-rest-sts/src/main/java/org/forgerock/openam/sts/rest/token/provider/saml/
H A DSaml2JsonTokenAuthnContextMapperImpl.java37 public String getAuthnContext(TokenTypeId inputTokenType, JsonValue inputToken) { argument
38 if (TokenType.OPENAM.getId().equals(inputTokenType.getId())) {
40 } else if (TokenType.USERNAME.getId().equals(inputTokenType.getId())) {
42 } else if (TokenType.OPENIDCONNECT.getId().equals(inputTokenType.getId())) {
44 } else if (TokenType.X509.getId().equals(inputTokenType.getId())) {
48 logger.error("Unexpected TokenType passed to Saml2JsonTokenAuthnContextMapperImpl: " + inputTokenType + "; returning " +
H A DSaml2JsonTokenAuthnContextMapper.java46 * @param inputTokenType The TokenType validated as part of the token transformation
53 String getAuthnContext(TokenTypeId inputTokenType, JsonValue inputToken); argument
/forgerock/openam-v13/openam-sts/openam-rest-sts/src/main/java/org/forgerock/openam/sts/rest/token/provider/oidc/
H A DDefaultOpenIdConnectTokenAuthMethodReferencesMapper.java31 public Set<String> getAuthnMethodsReferences(TokenTypeId inputTokenType, JsonValue inputToken) { argument
H A DDefaultOpenIdConnectTokenAuthnContextMapper.java30 * @param inputTokenType The TokenType validated as part of the token transformation
38 public String getAuthnContextClassReference(TokenTypeId inputTokenType, JsonValue inputToken) { argument
H A DOpenIdConnectTokenAuthMethodReferencesMapper.java31 * @param inputTokenType The input token type passed as input to the token transformation operation
35 Set<String> getAuthnMethodsReferences(TokenTypeId inputTokenType, JsonValue inputToken); argument
H A DOpenIdConnectTokenAuthnContextMapper.java34 * @param inputTokenType The TokenType validated as part of the token transformation
41 String getAuthnContextClassReference(TokenTypeId inputTokenType, JsonValue inputToken); argument
/forgerock/openam/openam-sts/openam-rest-sts/src/main/java/org/forgerock/openam/sts/rest/token/provider/oidc/
H A DDefaultOpenIdConnectTokenAuthMethodReferencesMapper.java31 public Set<String> getAuthnMethodsReferences(TokenTypeId inputTokenType, JsonValue inputToken) { argument
H A DDefaultOpenIdConnectTokenAuthnContextMapper.java30 * @param inputTokenType The TokenType validated as part of the token transformation
38 public String getAuthnContextClassReference(TokenTypeId inputTokenType, JsonValue inputToken) { argument
H A DOpenIdConnectTokenAuthMethodReferencesMapper.java33 * @param inputTokenType The input token type passed as input to the token transformation operation
37 Set<String> getAuthnMethodsReferences(TokenTypeId inputTokenType, JsonValue inputToken); argument
H A DOpenIdConnectTokenAuthnContextMapper.java36 * @param inputTokenType The TokenType validated as part of the token transformation
43 String getAuthnContextClassReference(TokenTypeId inputTokenType, JsonValue inputToken); argument

Completed in 133 milliseconds

12