Package net.sf.minuteProject.configuration.bean.presentation

Examples of net.sf.minuteProject.configuration.bean.presentation.PresentationEntity


  /**
   * returns null or blank if access is for all
   * otherwise the user roles define in presentationEntity
   */
  public static String getPresentationEntityAccessRoles (String name, Model model) {
    PresentationEntity presentationEntity = getPresentationEntity(name, model);
    if (presentationEntity!=null) {
      return presentationEntity.getRoles();
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of net.sf.minuteProject.configuration.bean.presentation.PresentationEntity

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.