| org.jasig.portal.groups.IComponentGroupService
All known Subclasses: org.jasig.portal.groups.ReferenceComponentGroupService,
IComponentGroupService | public interface IComponentGroupService (Code) | | Defines a component group service that is part of a composite groups system.
A component contains individual group services, which may themselves be
components.
The component is only used in the process of composing the composite
service, so it does not define any operations on groups, only on other
components.
author: Dan Ellentuck version: $Revision: 34758 $ |
Method Summary | |
public Map | getComponentServices() Returns a Map of the services contained by this component,
keyed on the name of the service WITHIN THIS COMPONENT. | public Name | getServiceName() Returns the FULLY-QUALIFIED Name of the service, which
may not be known until the composite service is assembled. | public boolean | isLeafService() Answers if this service is a leaf in the composite; a service that
actually operates on groups. | public void | setServiceName(Name newServiceName) Sets the name of the service to the new value. |
getComponentServices | public Map getComponentServices()(Code) | | Returns a Map of the services contained by this component,
keyed on the name of the service WITHIN THIS COMPONENT.
|
getServiceName | public Name getServiceName()(Code) | | Returns the FULLY-QUALIFIED Name of the service, which
may not be known until the composite service is assembled.
|
isLeafService | public boolean isLeafService()(Code) | | Answers if this service is a leaf in the composite; a service that
actually operates on groups.
|
setServiceName | public void setServiceName(Name newServiceName)(Code) | | Sets the name of the service to the new value.
|
|
|