1 /* 2 * Copyright (C) The Apache Software Foundation. All rights reserved. 3 * 4 * This software is published under the terms of the Apache Software License 5 * version 1.1, a copy of which has been included with this distribution in 6 * the LICENSE.txt file. 7 */ 8 package org.apache.avalon.excalibur.component; 9 10 /** 11 * RoleManageable Interface, use this to set the RoleManagers for child 12 * Components. 13 * 14 * @author <a HREF="mailto:bloritsch@apache.org">Berin Loritsch</a> 15 * @version CVS $Revision: 1.3 $ $Date: 2001/12/11 09:53:27 $ 16 * @since 4.0 17 */ 18 public interface RoleManageable 19 { 20 /** 21 * Sets the RoleManager for child components. Can be for special 22 * purpose components, however it is used mostly internally. 23 */ 24 void setRoleManager(RoleManager roles); 25 } 26