Skip to content

Commit

Permalink
LWM2M Device 제어 추가 iotoasis#372
Browse files Browse the repository at this point in the history
  • Loading branch information
pahnjy01 committed Feb 15, 2017
1 parent a6754cc commit a89e07d
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class LWM2MDeviceControl {
* 값 : testlwm2mclient
* 설명 : 고정
*/
private String authld;
private String authId;

/**
* 값 : 1234567890abcdef1234567890abcdef
Expand All @@ -64,14 +64,14 @@ public class LWM2MDeviceControl {
public LWM2MDeviceControl() {
}

public LWM2MDeviceControl(String operation, String resourceUri, String displayName, String oui, String modelName, String sn, String authld, String authPwd, String sv) {
public LWM2MDeviceControl(String operation, String resourceUri, String displayName, String oui, String modelName, String sn, String authId, String authPwd, String sv) {
this.operation = operation;
this.resourceUri = resourceUri;
this.displayName = displayName;
this.oui = oui;
this.modelName = modelName;
this.sn = sn;
this.authld = authld;
this.authId = authId;
this.authPwd = authPwd;
this.sv = sv;
}
Expand Down Expand Up @@ -125,11 +125,11 @@ public void setSn(String sn) {
}

public String getAuthld() {
return authld;
return authId;
}

public void setAuthld(String authld) {
this.authld = authld;
this.authId = authld;
}

public String getAuthPwd() {
Expand Down Expand Up @@ -157,7 +157,7 @@ public String toString() {
", oui='" + oui + '\'' +
", modelName='" + modelName + '\'' +
", sn='" + sn + '\'' +
", authld='" + authld + '\'' +
", authId='" + authId + '\'' +
", authPwd='" + authPwd + '\'' +
", sv='" + sv + '\'' +
'}';
Expand Down

0 comments on commit a89e07d

Please sign in to comment.