www in docker support
This commit is contained in:
parent
539a848e95
commit
c227fce036
2145 changed files with 399596 additions and 58 deletions
|
|
@ -0,0 +1,29 @@
|
|||
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;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue