protected void checkManageConfigurationAuthorization()
throws AuthenticationRequiredException, AuthorizationRequiredException
{
if ( !isAuthenticated() )
{
throw new AuthenticationRequiredException( "Authentication required." );
}
checkAuthorization( ContinuumRoleConstants.CONTINUUM_MANAGE_CONFIGURATION );
}