001package org.apache.fulcrum.security.model.turbine.entity;
002
003/*
004 * Licensed to the Apache Software Foundation (ASF) under one
005 * or more contributor license agreements.  See the NOTICE file
006 * distributed with this work for additional information
007 * regarding copyright ownership.  The ASF licenses this file
008 * to you under the Apache License, Version 2.0 (the
009 * "License"); you may not use this file except in compliance
010 * with the License.  You may obtain a copy of the License at
011 *
012 *   http://www.apache.org/licenses/LICENSE-2.0
013 *
014 * Unless required by applicable law or agreed to in writing,
015 * software distributed under the License is distributed on an
016 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
017 * KIND, either express or implied.  See the License for the
018 * specific language governing permissions and limitations
019 * under the License.
020 */
021
022import org.apache.fulcrum.security.entity.Permission;
023import org.apache.fulcrum.security.entity.Role;
024
025/**
026 * Represents the "turbine" model where permissions are in a many to many
027 * relationship to roles, roles are related to groups are related to users, all
028 * in many to many relationships.
029 * 
030 * @author <a href="mailto:epugh@upstate.com">Eric Pugh </a>
031 * @version $Id$
032 */
033public class TurbineRolePermissionoff
034{
035    private Role role;
036
037    private Permission permission;
038
039    /**
040     * @return Returns the permission.
041     */
042    public Permission getPermission()
043    {
044        return permission;
045    }
046
047    /**
048     * @return Returns the role.
049     */
050    public Role getRole()
051    {
052        return role;
053    }
054
055    /**
056     * @param permission
057     *            The permission to set.
058     */
059    public void setPermission(Permission permission)
060    {
061        this.permission = permission;
062    }
063
064    /**
065     * @param role
066     *            The role to set.
067     */
068    public void setRole(Role role)
069    {
070        this.role = role;
071    }
072}