ChangeCalendar/backend/src/main/java/com/nttdata/calender/implementer/ImplementerUpdateRequest.java

67 lines
1.5 KiB
Java

package com.nttdata.calender.implementer;
import com.bmc.arsys.api.Value;
/**
* Represents an implementer update request object that stores information about
* the package ID and login ID.
*/
public class ImplementerUpdateRequest {
private String pkgId;
private String loginId;
/**
* Sets the login ID for the implementer update request.
*
* @param loginId String representing the login ID
*/
public void setLoginId(String loginId) {
this.loginId = loginId;
}
/**
* Sets the package ID for the implementer update request.
*
* @param pkgId String representing the package ID
*/
public void setPkgId(String pkgId) {
this.pkgId = pkgId;
}
/**
* Returns the login ID for the implementer update request.
*
* @return String representing the login ID
*/
public String getLoginId() {
return loginId;
}
/**
* Returns the package ID for the implementer update request.
*
* @return String representing the package ID
*/
public String getPkgId() {
return pkgId;
}
/**
* Returns the login ID as a {@link Value} object.
*
* @return {@link Value} object representing the login ID
*/
public Value getLoginIdValue() {
return new Value(this.loginId);
}
/**
* Returns the package ID as a {@link Value} object.
*
* @return {@link Value} object representing the package ID
*/
public Value getPkgIdValue() {
return new Value(this.pkgId);
}
}