/**
* 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.social.kernel.model;
/**
* @author Zsolt Berentey
* @author Brian Wing Shun Chan
*/
public class SocialActivityCounterConstants {
public static final int END_PERIOD_UNDEFINED = -1;
public static final String NAME_ASSET_ACTIVITIES = "asset.activities";
public static final String NAME_CONTRIBUTION = "contribution";
public static final String NAME_PARTICIPATION = "participation";
public static final String NAME_POPULARITY = "popularity";
public static final String NAME_USER_ACHIEVEMENTS = "user.achievements";
public static final String NAME_USER_ACTIVITIES = "user.activities";
public static final int PERIOD_LENGTH_INFINITE = -1;
public static final int PERIOD_LENGTH_SYSTEM = 0;
public static final int TYPE_ACTOR = 1;
public static final int TYPE_ALL = 0;
public static final int TYPE_ASSET = 2;
public static final int TYPE_CREATOR = 3;
}