Package org.apache.wicket.security.examples.customactions.authorization

Examples of org.apache.wicket.security.examples.customactions.authorization.DepartmentModel


      protected IModel<Department> getListItemModel(
          IModel< ? extends List<Department>> listViewModel, int index)
      {
        // by using a securemodel we are preventing the secure
        // departments from showing up.
        return new DepartmentModel(super.getListItemModel(listViewModel, index));
        // return new
        // CompoundPropertyModel(super.getListItemModel(listViewModel,
        // index));
      }
    });
View Full Code Here

TOP

Related Classes of org.apache.wicket.security.examples.customactions.authorization.DepartmentModel

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.