package angularBeans.util; /** * Collected constants of general utility. * <P> * All members are immutable. * * @author melbehi * */ public final class Constants { /* * Both 0 and 1 is primitive values and do not need to be declared in this class. Otherwise, * please add your immutable values below. */ /** * Int value of 2. */ public static final int TWO = 2; /** * Int value of 3. */ public static final int THREE = 3; /** * Value default to urlPatterns */ public static final String URL_PATTERNS = "/http/invoke/*"; }