www in docker support

This commit is contained in:
MaddoScientisto 2026-04-22 18:41:37 +02:00
commit c227fce036
2145 changed files with 399596 additions and 58 deletions

View file

@ -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;
}
}