de.uka.ipd.consensus.foundation
Interface ConsensusFoundationManager

All Known Implementing Classes:
AbstractConsensusFoundationEvent, AbstractConsensusFoundationModule, BasisAction, ConsensusFoundation

public interface ConsensusFoundationManager

A mixin interface that offers easy access to all seven managers of the ConsensusFoundation framework.

Version:
2006-06-14
Author:
Thomas Much

Method Summary
 DynamicRightsManager getDynamicRightsManager()
          Returns a reference to the DynamicRightsManager.
 EvolutionManager getEvolutionManager()
          Returns a reference to the EvolutionManager.
 IncentiveManager getIncentiveManager()
          Returns a reference to the IncentiveManager.
 LoggingManager getLoggingManager()
          Returns a reference to the LoggingManager.
 OntologyManager getOntologyManager()
          Returns a reference to the OntologyManager.
 RatingManager getRatingManager()
          Returns a reference to the RatingManager.
 UserManager getUserManager()
          Returns a reference to the UserManager.
 String getVersion()
          Returns a version string of the implementation of the ConsensusFoundation framework.
 

Method Detail

getLoggingManager

public LoggingManager getLoggingManager()
Returns a reference to the LoggingManager.

Returns:
the LoggingManager instance, never null after successful startup

getUserManager

public UserManager getUserManager()
Returns a reference to the UserManager.

Returns:
the UserManager instance, never null after successful startup

getOntologyManager

public OntologyManager getOntologyManager()
Returns a reference to the OntologyManager.

Returns:
the OntologyManager instance, never null after successful startup

getEvolutionManager

public EvolutionManager getEvolutionManager()
Returns a reference to the EvolutionManager.

Returns:
the EvolutionManager instance or null if an EvolutionManager is not available

getIncentiveManager

public IncentiveManager getIncentiveManager()
Returns a reference to the IncentiveManager.

Returns:
the IncentiveManager instance or null if an IncentiveManager is not available

getRatingManager

public RatingManager getRatingManager()
Returns a reference to the RatingManager.

Returns:
the RatingManager instance or null if a RatingManager is not available

getDynamicRightsManager

public DynamicRightsManager getDynamicRightsManager()
Returns a reference to the DynamicRightsManager.

Returns:
the DynamicRightsManager instance or null if a DynamicRightsManager is not available

getVersion

public String getVersion()
Returns a version string of the implementation of the ConsensusFoundation framework.

Returns:
the version of the framework's implementation
See Also:
ConsensusFoundation.getVersion()