Commit abf5752a by Lee Jaebin

削除したソースの戻し

parent a103aa63
...@@ -87,5 +87,52 @@ public abstract class AbstractAcmsLoginParameters extends HttpParameterObject { ...@@ -87,5 +87,52 @@ public abstract class AbstractAcmsLoginParameters extends HttpParameterObject {
public String getPassword() { public String getPassword() {
return password; return password;
} }
/**
* アプリケーションIDを取得します。
* @return アプリケーションID
* @since 1.0.0
*/
public int getAppId() {
return appId;
}
/**
* アプリケーションの現在バージョンを取得します。
* @return アプリケーションの現在バージョンです。
* @since 1.0.0
*/
public String getAppVersion() {
return appVersion;
}
/**
* 端末タイプを返します。
* @return 端末タイプです。
* @since 1.0.0
*/
public int getDeviceTypeId() {
return deviceTypeId;
}
/**
* デバイストークンを取得します。
* @return デバイストークンです。
* @since 1.0.0
*/
public String getDeviceToken() {
return deviceToken;
}
/**
* 端末のMACアドレスを取得します。
* @return 端末のMACアドレスです。
* @since 1.0.0
*/
public String getMa() {
return ma;
}
/**
* システムの言語コードを返します。
* @since 1.1.0
*/
public String getLanguage() {
return Locale.getDefault().getLanguage();
}
} }
...@@ -47,4 +47,37 @@ public class MobileLoginParameters extends HttpParameterObject { ...@@ -47,4 +47,37 @@ public class MobileLoginParameters extends HttpParameterObject {
this.udid = udid; this.udid = udid;
this.deviceTypeId = deviceTypeId; this.deviceTypeId = deviceTypeId;
} }
/**
* ユーザのログインIDを指定します。
* @return ユーザのログインIDです。
* @since 1.0.0
*/
public String getLoginId() {
return loginId;
}
/**
* ユーザのパスワードを取得します。
* @return ユーザのパスワードです。
* @since 1.0.0
*/
public String getPassword() {
return password;
}
/**
* 端末の一意IDを取得します。
* @return 端末の一意IDです。
* @since 1.0.0
*/
public String getUdid() {
return udid;
}
/**
* 端末タイプを返します。
* @return 端末タイプです。
* @since 1.0.0
*/
public int getDeviceTypeId() {
return deviceTypeId;
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment