/** * 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.chat.util; /** * @author Brian Wing Shun Chan * @author Tibor Lipusz */ public interface PortletPropsKeys { public static final String BUDDY_LIST_ALLOWED_SOCIAL_RELATION_TYPES = "buddy.list.allowed.social.relation.types"; public static final String BUDDY_LIST_MAX_BUDDIES = "buddy.list.max.buddies"; public static final String BUDDY_LIST_SITE_EXCLUDES = "buddy.list.site.excludes"; public static final String BUDDY_LIST_STRATEGY = "buddy.list.strategy"; public static final String JABBER_ENABLED = "jabber.enabled"; public static final String JABBER_HOST = "jabber.host"; public static final String JABBER_IMPORT_USER_ENABLED = "jabber.import.user.enabled"; public static final String JABBER_PORT = "jabber.port"; public static final String JABBER_RESOURCE = "jabber.resource"; public static final String JABBER_SERVICE_NAME = "jabber.service.name"; public static final String JABBER_SOCK5_PROXY_ENABLED = "jabber.sock5.proxy.enabled"; public static final String JABBER_SOCK5_PROXY_PORT = "jabber.sock5.proxy.port"; }