/** * 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.blogs.configuration; import aQute.bnd.annotation.metatype.Meta; import com.liferay.portal.configuration.metatype.annotations.ExtendedObjectClassDefinition; /** * @author Sergio González */ @ExtendedObjectClassDefinition( category = "collaboration", scope = ExtendedObjectClassDefinition.Scope.GROUP ) @Meta.OCD( id = "com.liferay.blogs.configuration.BlogsGroupServiceConfiguration", localization = "content/Language", name = "blogs.group.service.configuration.name" ) public interface BlogsGroupServiceConfiguration { @Meta.AD(deflt = "true", required = false) public boolean enableRss(); @Meta.AD( deflt = "${server-property://com.liferay.portal/search.container.page.default.delta}", required = false ) public String rssDelta(); @Meta.AD( deflt = "${server-property://com.liferay.portal/rss.feed.display.style.default}", required = false ) public String rssDisplayStyle(); @Meta.AD( deflt = "${server-property://com.liferay.portal/rss.feed.type.default}", required = false ) public String rssFeedType(); @Meta.AD(deflt = "300", required = false) public int smallImageWidth(); }