29 lines
606 B
Java
29 lines
606 B
Java
package it.acxent.cart;
|
|
|
|
public class CartStatus {
|
|
private long status = 0L;
|
|
|
|
public static final long RES_ADD_ITEM_OK = 21L;
|
|
|
|
public static final long RES_ADD_ITEM_KO = 22L;
|
|
|
|
public static long ST_CHECK_OUT_ERROR = 9L;
|
|
|
|
public static long ST_CHECK_OUT_OK = 1L;
|
|
|
|
public static long ST_CHECK_OUT_OK_NO_MAIL = 2L;
|
|
|
|
public static long ST_LOSTPWD_SEND_ERROR = 12L;
|
|
|
|
public static long ST_OK = 0L;
|
|
|
|
public static long ST_LOSTPWD_SEND_OK = 10L;
|
|
|
|
public long getStatus() {
|
|
return this.status;
|
|
}
|
|
|
|
public void setStatus(long status) {
|
|
this.status = status;
|
|
}
|
|
}
|