Commit 48ee863d by Nilu

S12485354 # Internal Issues (raised by QA) #System unavailable error when applying coupon

parent e57eca61
...@@ -20,14 +20,14 @@ public class CouponDuration extends AbstractEnumerated ...@@ -20,14 +20,14 @@ public class CouponDuration extends AbstractEnumerated
public static final EnumeratedFactory FACTORY_CouponDuration = new CouponDurationFactory(); public static final EnumeratedFactory FACTORY_CouponDuration = new CouponDurationFactory();
public static final CouponDuration FORVER = new CouponDuration ("FORVER", "FORVER", "Forever", false); public static final CouponDuration FOREVER = new CouponDuration ("FOREVER", "FOREVER", "Forever", false);
public static final CouponDuration ONCE = new CouponDuration ("ONCE", "ONCE", "Once", false); public static final CouponDuration ONCE = new CouponDuration ("ONCE", "ONCE", "Once", false);
public static final CouponDuration REPEATING = new CouponDuration ("REPEATING", "REPEATING", "Repeating", false); public static final CouponDuration REPEATING = new CouponDuration ("REPEATING", "REPEATING", "Repeating", false);
private static final CouponDuration[] allCouponDurations = private static final CouponDuration[] allCouponDurations =
new CouponDuration[] { FORVER,ONCE,REPEATING}; new CouponDuration[] { FOREVER,ONCE,REPEATING};
private static CouponDuration[] getAllCouponDurations () private static CouponDuration[] getAllCouponDurations ()
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<ROOT> <ROOT>
<CONSTANT package="performa.orm.types" name="CouponDuration"> <CONSTANT package="performa.orm.types" name="CouponDuration">
<VALUE name="FORVER" description="Forever" /> <VALUE name="FOREVER" description="Forever" />
<VALUE name="ONCE" description="Once" /> <VALUE name="ONCE" description="Once" />
<VALUE name="REPEATING" description="Repeating" /> <VALUE name="REPEATING" description="Repeating" />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment