what the below code line does in java.
private static final String PERMISSIONS_KEY = BaseActionStepsHandler.class.getName() + ".USER.ROLES";
Note:
BaseActionStepsHandler is java class,and it is extended in another java class
InvConfirmActionStepsHandler .
The above code is declared in BaseActionStepsHandler.java and it is
called in InvConfirmActionStepsHandler class like below
private static final String PERMISSIONS_KEY = BaseActionStepsHandler.class.getName() + ".USER.ROLES";
what does it mean.??