Package com.codingcrayons.aspectfaces.configuration.guards

Examples of com.codingcrayons.aspectfaces.configuration.guards.VarGuard


  public void addConditionGuard(String expression, String tagPath, String[] formRoles, String[] userRoles) {
    this.guards.add(new ConditionGuard(expression, tagPath, formRoles, userRoles));
  }

  public void addVarGuard(String var, String tagPath, String[] formRoles, String[] userRoles) {
    this.guards.add(new VarGuard(var, tagPath, formRoles, userRoles));
  }
View Full Code Here


    }
    if (tagPath == null) {
      throw new ConfigurationParsingException(
        "Configuration error: tag attribute must be defined in element var!");
    }
    return new VarGuard(var, tagPath, profiles, userRoles);
  }
View Full Code Here

TOP

Related Classes of com.codingcrayons.aspectfaces.configuration.guards.VarGuard

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.