/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.jetspeed;
/**
* CPS: Common Portlet Services provided by Jetspeed available to portlet applications
*
* @author <a href="mailto:taylor@apache.org">David Sean Taylor</a>
* @version $Id: CommonPortletServices.java 592266 2007-11-06 04:30:15Z taylor $
*/
public interface CommonPortletServices
{
public final static String CPS_SEARCH_COMPONENT = "cps:SearchComponent";
public final static String CPS_REGISTRY_COMPONENT = "cps:PortletRegistryComponent";
public final static String CPS_USER_MANAGER_COMPONENT = "cps:UserManager";
public final static String CPS_PAGE_MANAGER_COMPONENT = "cps:PageManager";
public final static String CPS_ROLE_MANAGER_COMPONENT = "cps:RoleManager";
public final static String CPS_GROUP_MANAGER_COMPONENT = "cps:GroupManager";
public final static String CPS_PROFILER_COMPONENT = "cps:Profiler";
public final static String CPS_SSO_COMPONENT = "cps:SSO";
public final static String CPS_APPLICATION_SERVER_MANAGER_COMPONENT = "cps:ApplicationServerManager";
public final static String CPS_PORTLET_FACTORY_COMPONENT = "cps:PortletFactory";
public final static String CPS_DEPLOYMENT_MANAGER_COMPONENT = "cps:DeploymentManager";
public final static String CPS_ENTITY_ACCESS_COMPONENT = "cps:EntityAccessor";
public final static String CPS_WINDOW_ACCESS_COMPONENT = "cps:WindowAccessor";
public final static String CPS_ID_GENERATOR_COMPONENT = "cps:IdGenerator";
public final static String CPS_JETSPEED_POWERTOOL_FACTORY = "cps:Powertools";
public final static String CPS_HEADER_RESOURCE_FACTORY = "cps:HeaderResource";
public final static String CPS_PERMISSION_MANAGER = "cps:PermissionManager";
public final static String CPS_PORTAL_STATISTICS = "cps:PortalStatistics";
public final static String CPS_PORTAL_ADMINISTRATION = "cps:PortalAdministration";
public final static String CPS_PREFERENCES_PROVIDER = "cps:PreferencesProvider";
public final static String CPS_DECORATION_FACTORY = "cps:DecorationFactory";
public final static String CPS_DESKTOP = "cps:Desktop";
public final static String CPS_PASSWORD_ENCODER_COMPONENT = "cps:PasswordEncodingService";
public final static String CPS_SECURITY_ACCESS_CONTROLLER = "cps:SecurityAccessController";
public final static String CPS_PORTLET_TRACKING_MANAGER = "cps:PortletTrackingManager";
public final static String CPS_PORTAL_CONFIGURATION = "cps:PortalConfiguration";
public final static String CPS_IMPORTER_MANAGER = "cps:ImporterManager";
public final static String CPS_DECORATOR_CACHE = "cps:decorationContentCache";
public final static String CPS_PORTLET_CACHE = "cps:portletContentCache";
public final static String CPS_AUDIT_ACTIVITY = "cps:AuditActivity";
public final static String CPS_JETSPEED_SERIALIZER_FACTORY = "cps:JetspeedSerializerFactory";
}
|