resource-manager/io/src/main/java/org/gcube/resourcemanagement/manager/io/rs/RMDeleteContextCode.java

38 lines
866 B
Java

package org.gcube.resourcemanagement.manager.io.rs;
import org.gcube.common.gxrest.response.outbound.ErrorCode;
/**
* Error codes returned by the delete method of the context resource.
*
* @author Manuele Simi (ISTI CNR)
*
*/
public enum RMDeleteContextCode implements ErrorCode {
CONTEXT_DOES_NOT_EXIST(1, "The context does not exist."),
GENERIC_ERROR_FROM_RR(2, "The Resource Registry returned an error.");
private int id;
private String msg;
private RMDeleteContextCode(int id, String msg) {
this.id = id;
this.msg = msg;
}
/* (non-Javadoc)
* @see org.gcube.resourcemanagement.manager.io.codeexceptions.ErrorCode#getId()
*/
public int getId() {
return this.id;
}
/* (non-Javadoc)
* @see org.gcube.resourcemanagement.manager.io.codeexceptions.ErrorCode#getMessage()
*/
public String getMessage() {
return this.msg;
}
}