Summary Table
Categories |
Total Count |
PII |
0 |
URL |
0 |
DNS |
0 |
EKL |
0 |
IP |
0 |
PORT |
0 |
VsID |
0 |
CF |
0 |
AI |
0 |
VPD |
0 |
PL |
0 |
Other |
0 |
File Content
package gov.va.oneconsult.seoc.api.json;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonInclude.Include;
public class SeocGenericResponse
{
/**
* seocId
*/
@JsonInclude(Include.NON_DEFAULT)
private int seocId;
/**
* seocKey
*/
@JsonInclude(Include.NON_NULL)
private Integer seocKey;
/**
* Status of the response
*/
@JsonInclude(Include.NON_NULL)
private String status;
/**
* Message from end point
*/
@JsonInclude(Include.NON_NULL)
private String message;
/**
* vaUserId
*/
@JsonInclude(Include.NON_NULL)
private String vaUserId;
/**
* User role
*/
@JsonInclude(Include.NON_NULL)
private String userRole;
/**
*
*/
@JsonInclude(Include.NON_NULL)
private String action;
/**
*
*/
@JsonInclude(Include.NON_NULL)
private String comments;
/**
*
*/
@JsonInclude(Include.NON_NULL)
private String inMaintenanceBy;
public SeocGenericResponse()
{
}
/**
*
* @param status
* @param message
*/
public SeocGenericResponse(String status, String message)
{
this.status = status;
this.message = message;
}
/**
* Description:
*
* @return seocId
*/
public int getSeocId()
{
return seocId;
}
/**
* Description:
*
* @param seocId
*/
public void setSeocId(int seocId)
{
this.seocId = seocId;
}
/**
* Description:
*
* @return seocKey
*/
public Integer getSeocKey()
{
return seocKey;
}
/**
* Description:
*
* @param seocKey
*/
public void setSeocKey(Integer seocKey)
{
this.seocKey = seocKey;
}
/**
* Description:
*
* @return status
*/
public String getStatus()
{
return status;
}
/**
* Description:
*
* @param status
*/
public void setStatus(String status)
{
this.status = status;
}
/**
* Description:
*
* @return message
*/
public String getMessage()
{
return message;
}
/**
* Description:
*
* @param message
*/
public void setMessage(String message)
{
this.message = message;
}
/**
* Description:
*
* @return
*/
public String getVaUserId()
{
return vaUserId;
}
/**
* Description:
*
* @param vaUserId
*/
public void setVaUserId(String vaUserId)
{
this.vaUserId = vaUserId;
}
/**
* Description:
*
* @return
*/
public String getUserRole()
{
return userRole;
}
/**
* Description:
*
* @param userRole
*/
public void setUserRole(String userRole)
{
this.userRole = userRole;
}
/**
* Description:
*
* @return - Action
*/
public String getAction()
{
return action;
}
/**
* Description:
*
* @param action
*/
public void setAction(String action)
{
this.action = action;
}
/**
* Description:
*
* @return - comments
*/
public String getComments()
{
return comments;
}
/**
* Description:
*
* @param comments
*/
public void setComments(String comments)
{
this.comments = comments;
}
/**
* Description:
*
* @return
*/
public String getInMaintenanceBy()
{
return inMaintenanceBy;
}
/**
* Description:
*
* @param inMaintenanceBy
*/
public void setInMaintenanceBy(String inMaintenanceBy)
{
this.inMaintenanceBy = inMaintenanceBy;
}
/**
* {@inheritDoc}
*/
@Override
public String toString()
{
return "SeocGenericResponse [status=" + status + ", message=" + message + "]";
}
}