Package models

Examples of models.SecurityRole


  private void initialData() {
    if (SecurityRole.find.findRowCount() == 0) {
      for (final String roleName : Arrays
          .asList(controllers.Application.USER_ROLE)) {
        final SecurityRole role = new SecurityRole();
        role.roleName = roleName;
        role.save();
      }
    }
  }
View Full Code Here

TOP

Related Classes of models.SecurityRole

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.