Skip to content

Commit

Permalink
Update Constants.java
Browse files Browse the repository at this point in the history
  • Loading branch information
osnimarin authored Sep 30, 2016
1 parent 0a3ed93 commit 576fbfa
Showing 1 changed file with 18 additions and 10 deletions.
28 changes: 18 additions & 10 deletions angular-beans/src/main/java/angularBeans/util/Constants.java
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

package angularBeans.util;

/**
Expand All @@ -9,16 +10,23 @@
*
*/
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. */
/*
* 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 2.
*/
public static final int TWO = 2;
/**
* Int value of 3.
*/
public static final int THREE = 3;

/**
* Int value of 3.
*/
public static final int THREE = 3;
/**
* Value default to urlPatterns
*/
public static final String URL_PATTERNS = "/http/invoke/*";
}

0 comments on commit 576fbfa

Please sign in to comment.