/** * 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.hello.world.web.internal.portlet; import com.liferay.hello.world.web.internal.constants.HelloWorldPortletKeys; import com.liferay.portal.kernel.portlet.bridges.mvc.MVCPortlet; import com.liferay.portal.kernel.util.ContentTypes; import com.liferay.portal.kernel.util.ReleaseInfo; import java.io.IOException; import java.io.PrintWriter; import javax.portlet.Portlet; import javax.portlet.PortletException; import javax.portlet.RenderRequest; import javax.portlet.RenderResponse; import org.osgi.service.component.annotations.Component; /** * @author Peter Fellwock */ @Component( immediate = true, property = { "com.liferay.portlet.css-class-wrapper=portlet-hello-world", "com.liferay.portlet.display-category=category.sample", "com.liferay.portlet.icon=/icons/hello_world.png", "com.liferay.portlet.layout-cacheable=true", "com.liferay.portlet.preferences-owned-by-group=true", "com.liferay.portlet.private-request-attributes=false", "com.liferay.portlet.private-session-attributes=false", "com.liferay.portlet.remoteable=true", "com.liferay.portlet.render-weight=50", "com.liferay.portlet.use-default-template=true", "javax.portlet.display-name=Hello World", "javax.portlet.expiration-cache=0", "javax.portlet.init-param.always-display-default-configuration-icons=true", "javax.portlet.name=" + HelloWorldPortletKeys.HELLO_WORLD, "javax.portlet.resource-bundle=content.Language", "javax.portlet.security-role-ref=guest,power-user,user", "javax.portlet.supports.mime-type=text/html" }, service = Portlet.class ) public class HelloWorldPortlet extends MVCPortlet { @Override public void doView( RenderRequest renderRequest, RenderResponse renderResponse) throws IOException, PortletException { renderResponse.setContentType(ContentTypes.TEXT_HTML_UTF8); PrintWriter printWriter = renderResponse.getWriter(); printWriter.print( "Welcome to ".concat(ReleaseInfo.getReleaseInfo()).concat(".")); } }