/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.portal.security.wedeploy.auth.web.internal.portlet; import com.liferay.portal.kernel.portlet.bridges.mvc.MVCPortlet; import com.liferay.portal.security.wedeploy.auth.web.internal.constants.WeDeployAuthPortletKeys; import javax.portlet.Portlet; import org.osgi.service.component.annotations.Component; /** * @author Supritha Sundaram */ @Component( property = { "com.liferay.portlet.css-class-wrapper=portlet-portal-security-wedeploy-auth-admin", "com.liferay.portlet.display-category=category.hidden", "com.liferay.portlet.instanceable=false", "javax.portlet.display-name=WeDeploy Auth Admin", "javax.portlet.expiration-cache=0", "javax.portlet.info.keywords=WeDeploy Auth Admin", "javax.portlet.info.short-title=WeDeploy Auth Admin", "javax.portlet.info.title=WeDeploy Auth Admin", "javax.portlet.init-param.clear-request-parameters=true", "javax.portlet.init-param.copy-request-parameters=true", "javax.portlet.init-param.template-path=/", "javax.portlet.init-param.view-template=/wedeploy_auth_admin/view.jsp", "javax.portlet.name=" + WeDeployAuthPortletKeys.WEDEPLOY_AUTH_ADMIN, "javax.portlet.resource-bundle=content.Language", "javax.portlet.security-role-ref=administrator", "javax.portlet.supports.mime-type=text/html" }, service = Portlet.class ) public class WeDeployAuthAdminPortlet extends MVCPortlet { }