/** * Copyright 2010 JBoss Inc * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.drools.guvnor.server.security; import java.io.Serializable; public class RoleBasedPermission implements Serializable { private String packageName; private String categoryPath; private String userName; private String role; public RoleBasedPermission(String userName, String role, String packageName, String categoryPath) { this.packageName = packageName; this.categoryPath = categoryPath; this.userName = userName; this.role = role; } public String getRole() { return role; } public void setRole(String role) { this.role = role; } public String getUserName() { return userName; } public void setUserName(String userName) { this.userName = userName; } public String getPackageName() { return packageName; } public void setPackageName(String packageName) { this.packageName = packageName; } public String getCategoryPath() { return categoryPath; } public void setCategoryPath(String categoryPath) { this.categoryPath = categoryPath; } }