You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/application-mgt/org.wso2.carbon.identity.application.common/src/main/java/org/wso2/carbon/identity/application/common/ApplicationAuthenticatorService.java
+14-20
Original file line number
Diff line number
Diff line change
@@ -310,12 +310,19 @@ public UserDefinedLocalAuthenticatorConfig updateUserDefinedLocalAuthenticator(
Copy file name to clipboardExpand all lines: components/application-mgt/org.wso2.carbon.identity.application.common/src/main/java/org/wso2/carbon/identity/application/common/model/LocalAuthenticatorConfig.java
+10
Original file line number
Diff line number
Diff line change
@@ -289,4 +289,14 @@ public void setAmrValue(String amrValue) {
289
289
290
290
this.amrValue = amrValue;
291
291
}
292
+
293
+
/**
294
+
* Get the enabled status of the Local authenticator config.
Copy file name to clipboardExpand all lines: components/application-mgt/org.wso2.carbon.identity.application.common/src/main/java/org/wso2/carbon/identity/application/common/util/AuthenticatorMgtExceptionBuilder.java
+2
Original file line number
Diff line number
Diff line change
@@ -94,6 +94,8 @@ public enum AuthenticatorMgtError {
94
94
"The provided authenticator name %s is not in the expected format %s."),
95
95
ERROR_INVALID_URL("60016", "Invalid URL.",
96
96
"The provided url %s is not in the expected format %s."),
97
+
ERROR_INVALID_AMR_VALUE("60017", "Invalid AMR value.",
98
+
"The provided AMR value %s is not in the expected format %s."),
97
99
98
100
// Server errors.
99
101
ERROR_WHILE_ADDING_AUTHENTICATOR("65001", "Error while adding authenticator.",
Copy file name to clipboardExpand all lines: components/application-mgt/org.wso2.carbon.identity.application.common/src/main/java/org/wso2/carbon/identity/application/common/util/UserDefinedLocalAuthenticatorValidator.java
+18
Original file line number
Diff line number
Diff line change
@@ -39,6 +39,9 @@ public class UserDefinedLocalAuthenticatorValidator {
Copy file name to clipboardExpand all lines: components/authentication-framework/org.wso2.carbon.identity.application.authentication.framework/src/main/java/org/wso2/carbon/identity/application/authentication/framework/config/model/AuthenticatorConfig.java
Copy file name to clipboardExpand all lines: components/authentication-framework/org.wso2.carbon.identity.application.authentication.framework/src/main/java/org/wso2/carbon/identity/application/authentication/framework/internal/FrameworkServiceComponent.java
0 commit comments