1 package org.apache.archiva.redback.rbac;
6 * Copyright 2001-2006 The Apache Software Foundation.
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
22 * AbstractUserAssignment useful for common logic that implementors can use.
24 * @author <a href="mailto:joakim@erdfelt.com">Joakim Erdfelt</a>
27 public abstract class AbstractUserAssignment
28 implements UserAssignment
31 public void addRoleName( Role role )
33 addRoleName( role.getName() );
36 public void addRoleName( String roleName )
38 List<String> names = getRoleNames();
39 if ( !names.contains( roleName ) )
41 names.add( roleName );
43 setRoleNames( names );
46 public void removeRoleName( Role role )
48 removeRoleName( role.getName() );
51 public void removeRoleName( String roleName )
53 getRoleNames().remove( roleName );