Skip to content

Commit

Permalink
Merge pull request wso2#5004 from DMHP/API_B
Browse files Browse the repository at this point in the history
Modify the AdditionalData object
  • Loading branch information
DMHP authored Oct 16, 2023
2 parents 223479b + bfdd9d0 commit 3b6c431
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
/*
* Copyright (c) 2023, WSO2 LLC. (https://www.wso2.com).
*
* WSO2 LLC. licenses this file to you under the Apache License,
* Version 2.0 (the "License"); you may not use this file except
* in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/

package org.wso2.carbon.identity.application.authentication.framework.model;

import java.util.HashMap;
import java.util.Map;

/**
* Holds the additional data related to an authenticator which requires to populate {@Code AuthenticatorData}
* during an authentication flow. This contains additional authentication data specific to authentication flow.
*/
public class AdditionalData {

private String requiredParams;
private String redirectUrl;
private String promptType;
private Map<String, String> additionalAuthenticationParams = new HashMap<>();

public String getRequiredParams() {

return requiredParams;
}

public void setRequiredParams(String requiredParams) {

this.requiredParams = requiredParams;
}

public String getRedirectUrl() {

return redirectUrl;
}

public void setRedirectUrl(String redirectUrl) {

this.redirectUrl = redirectUrl;
}

public String getPromptType() {

return promptType;
}

public void setPromptType(String promptType) {

this.promptType = promptType;
}

public Map<String, String> getAdditionalAuthenticationParams() {

return additionalAuthenticationParams;
}

public void setAdditionalAuthenticationParams(Map<String, String> additionalAuthenticationParams) {

this.additionalAuthenticationParams = additionalAuthenticationParams;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,17 @@ public class AuthenticatorData {
private String i18nKey;
private List<AuthenticatorParamMetadata> authParams = new ArrayList<>();
private Map<String, String> additionalData = new HashMap<>();
private AdditionalData additionalDataObj;

public AdditionalData getAdditionalDataObj() {

return additionalDataObj;
}

public void setAdditionalData(AdditionalData additionalDataObj) {

this.additionalDataObj = additionalDataObj;
}

public String getI18nKey() {

Expand Down

0 comments on commit 3b6c431

Please sign in to comment.