diff --git a/src/app/tests/suites/TV_AccountLoginCluster.yaml b/src/app/tests/suites/TV_AccountLoginCluster.yaml
index c29dc1b0c305bf..1a1239189d4393 100644
--- a/src/app/tests/suites/TV_AccountLoginCluster.yaml
+++ b/src/app/tests/suites/TV_AccountLoginCluster.yaml
@@ -33,20 +33,20 @@ tests:
timedInteractionTimeoutMs: 10000
arguments:
values:
- - name: "tempAccountIdentifier"
+ - name: "TempAccountIdentifier"
value: "asdf"
response:
values:
- - name: "setupPIN"
+ - name: "SetupPIN"
value: "tempPin123"
- label: "Login Command"
command: "login"
timedInteractionTimeoutMs: 10000
arguments:
values:
- - name: "tempAccountIdentifier"
+ - name: "TempAccountIdentifier"
value: "asdf"
- - name: "setupPIN"
+ - name: "SetupPIN"
value: "tempPin123"
- label: "Logout Command"
diff --git a/src/app/tests/suites/certification/Test_TC_ALOGIN_12_1.yaml b/src/app/tests/suites/certification/Test_TC_ALOGIN_12_1.yaml
index a480adf18fcb4e..c6b90fc870daa8 100644
--- a/src/app/tests/suites/certification/Test_TC_ALOGIN_12_1.yaml
+++ b/src/app/tests/suites/certification/Test_TC_ALOGIN_12_1.yaml
@@ -72,7 +72,7 @@ tests:
value: TempAccountIdentifier
response:
values:
- - name: "setupPIN"
+ - name: "SetupPIN"
saveAs: setupPIN
- label:
@@ -83,9 +83,9 @@ tests:
timedInteractionTimeoutMs: 10000
arguments:
values:
- - name: "tempAccountIdentifier"
+ - name: "TempAccountIdentifier"
value: TempAccountIdentifier
- - name: "setupPIN"
+ - name: "SetupPIN"
value: setupPIN
- label:
diff --git a/src/app/zap-templates/zcl/data-model/chip/account-login-cluster.xml b/src/app/zap-templates/zcl/data-model/chip/account-login-cluster.xml
index 6ed747812365ab..4ed035ed47d680 100644
--- a/src/app/zap-templates/zcl/data-model/chip/account-login-cluster.xml
+++ b/src/app/zap-templates/zcl/data-model/chip/account-login-cluster.xml
@@ -27,13 +27,13 @@ limitations under the License.
Upon receipt, the Content App checks if the account associated with the client Temp Account Identifier Rotating ID is the same acount that is active on the given Content App. If the accounts are the same, then the Content App includes the Setup PIN in the GetSetupPIN Response.
-
+
Upon receipt, the Content App checks if the account associated with the client’s Temp Account Identifier (Rotating ID) has a current active Setup PIN with the given value. If the Setup PIN is valid for the user account associated with the Temp Account Identifier, then the Content App MAY make that user account active.
-
-
+
+
@@ -42,7 +42,7 @@ limitations under the License.
This message is sent in response to the GetSetupPIN Request, and contains the Setup PIN code, or null when the accounts identified in the request does not match the active account of the running Content App.
-
+
diff --git a/src/controller/java/zap-generated/CHIPInvokeCallbacks.cpp b/src/controller/java/zap-generated/CHIPInvokeCallbacks.cpp
index 641136d75b97f8..a055b67cc3fa57 100644
--- a/src/controller/java/zap-generated/CHIPInvokeCallbacks.cpp
+++ b/src/controller/java/zap-generated/CHIPInvokeCallbacks.cpp
@@ -3718,10 +3718,10 @@ void CHIPAccountLoginClusterGetSetupPINResponseCallback::CallbackFn(
err = JniReferences::GetInstance().FindMethod(env, javaCallbackRef, "onSuccess", "(Ljava/lang/String;)V", &javaMethod);
VerifyOrReturn(err == CHIP_NO_ERROR, ChipLogError(Zcl, "Error invoking Java callback: %s", ErrorStr(err)));
- jobject setupPIN;
- setupPIN = env->NewStringUTF(std::string(dataResponse.setupPIN.data(), dataResponse.setupPIN.size()).c_str());
+ jobject SetupPIN;
+ SetupPIN = env->NewStringUTF(std::string(dataResponse.setupPIN.data(), dataResponse.setupPIN.size()).c_str());
- env->CallVoidMethod(javaCallbackRef, javaMethod, setupPIN);
+ env->CallVoidMethod(javaCallbackRef, javaMethod, SetupPIN);
}
CHIPUnitTestingClusterTestSpecificResponseCallback::CHIPUnitTestingClusterTestSpecificResponseCallback(jobject javaCallback) :
Callback::Callback(CallbackFn, this)
diff --git a/src/controller/java/zap-generated/chip/devicecontroller/ClusterInfoMapping.java b/src/controller/java/zap-generated/chip/devicecontroller/ClusterInfoMapping.java
index 3db3bbbe30e9de..2a4857ae12fa87 100644
--- a/src/controller/java/zap-generated/chip/devicecontroller/ClusterInfoMapping.java
+++ b/src/controller/java/zap-generated/chip/devicecontroller/ClusterInfoMapping.java
@@ -6544,10 +6544,10 @@ public void setCallbackDelegate(ClusterCommandCallback callback) {
}
@Override
- public void onSuccess(String setupPIN) {
+ public void onSuccess(String SetupPIN) {
Map responseValues = new LinkedHashMap<>();
- CommandResponseInfo setupPINResponseValue = new CommandResponseInfo("setupPIN", "String");
- responseValues.put(setupPINResponseValue, setupPIN);
+ CommandResponseInfo SetupPINResponseValue = new CommandResponseInfo("SetupPIN", "String");
+ responseValues.put(SetupPINResponseValue, SetupPIN);
callback.onSuccess(responseValues);
}
diff --git a/zzz_generated/app-common/app-common/zap-generated/callback.h b/zzz_generated/app-common/app-common/zap-generated/callback.h
index bacd478f877e5f..d646734249827d 100644
--- a/zzz_generated/app-common/app-common/zap-generated/callback.h
+++ b/zzz_generated/app-common/app-common/zap-generated/callback.h
@@ -8765,7 +8765,7 @@ bool emberAfAccountLoginClusterGetSetupPINCallback(
* @brief Account Login Cluster GetSetupPINResponse Command callback (from server)
*/
bool emberAfAccountLoginClusterGetSetupPINResponseCallback(chip::EndpointId endpoint, chip::app::CommandSender * commandObj,
- chip::CharSpan setupPIN);
+ chip::CharSpan SetupPIN);
/**
* @brief Account Login Cluster Login Command callback (from client)
*/
diff --git a/zzz_generated/darwin-framework-tool/zap-generated/test/Commands.h b/zzz_generated/darwin-framework-tool/zap-generated/test/Commands.h
index 8ac138182e76fc..b02ee22c71cc44 100644
--- a/zzz_generated/darwin-framework-tool/zap-generated/test/Commands.h
+++ b/zzz_generated/darwin-framework-tool/zap-generated/test/Commands.h
@@ -72245,7 +72245,7 @@ class TV_AccountLoginCluster : public TestCommandBridge {
{
id actualValue = values.setupPIN;
- VerifyOrReturn(CheckValueAsString("setupPIN", actualValue, @"tempPin123"));
+ VerifyOrReturn(CheckValueAsString("SetupPIN", actualValue, @"tempPin123"));
}
NextTest();