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

/*
* SeocCreateResponse.java
* Copyright (c) 2017 Veterans Affairs.
*/
package gov.va.oneconsult.seoc.api.json;

import com.fasterxml.jackson.databind.annotation.JsonSerialize;

/**
* Description: Response for the creation of seoc request
*
* @author AbleVets
*/
@JsonSerialize
public class SeocCreateResponse extends SeocGenericResponse
{

private Integer uniqueId;

private String name;

private Integer seocKey;

private String status;

/**
* Description:
*
* @return - UniqueId
*/
public Integer getUniqueId()
{

return uniqueId;
}

/**
* Description:
*
* @param uniqueId
*/
public void setUniqueId(Integer uniqueId)
{

this.uniqueId = uniqueId;
}

/**
* Description:
*
* @return - Name
*/
public String getName()
{

return name;
}

/**
* Description:
*
* @param name
*/
public void setName(String name)
{

this.name = name;
}

/**
* 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;
}

}