Package cn.edu.zju.acm.onlinejudge.persistence

Examples of cn.edu.zju.acm.onlinejudge.persistence.AuthorizationPersistence.deleteRole()


            return forward;
        }

        long roleId = Utility.parseLong(context.getRequest().getParameter("roleId"));
        AuthorizationPersistence ap = PersistenceManager.getInstance().getAuthorizationPersistence();
        ap.deleteRole(roleId, context.getUserProfile().getId());

        return this.handleSuccess(mapping, context, "success");
    }

}
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.