Examples of RoleAccessAssertion


Examples of org.mapfish.print.config.access.RoleAccessAssertion

     * </p>
     *
     * @param access the roles needed to access this
     */
    public final void setAccess(final List<String> access) {
        final RoleAccessAssertion assertion = new RoleAccessAssertion();
        assertion.setRequiredRoles(access);
        this.accessAssertion = assertion;
    }
View Full Code Here

Examples of org.mapfish.print.config.access.RoleAccessAssertion

     * </p>
     *
     * @param access the roles needed to access this
     */
    public final void setAccess(final ArrayList<String> access) {
        final RoleAccessAssertion assertion = new RoleAccessAssertion();
        assertion.setRequiredRoles(access);
        this.accessAssertion = assertion;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.