OpenEUICC/libs/lpad-sm-dp-plus-connector/src/main/java/com/truphone/es9plus/message/request/AuthenticateClientReq.java

29 lines
745 B
Java

package com.truphone.es9plus.message.request;
import com.truphone.es9plus.message.MsgType;
import com.truphone.es9plus.message.request.base.RequestMsgBody;
@MsgType("/gsma/rsp2/es9plus/authenticateClient")
public class AuthenticateClientReq extends RequestMsgBody {
private String transactionId;
private String authenticateServerResponse;
public String getTransactionId() {
return transactionId;
}
public void setTransactionId(String transactionId) {
this.transactionId = transactionId;
}
public String getAuthenticateServerResponse() {
return authenticateServerResponse;
}
public void setAuthenticateServerResponse(String authenticateServerResponse) {
this.authenticateServerResponse = authenticateServerResponse;
}
}