/** * 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.akismet.util; /** * @author Amos Fong */ public class AkismetConstants { public static final String PATH_CHECK_SPAM = "/comment-check"; public static final String PATH_SUBMIT_HAM = "/submit-ham"; public static final String PATH_SUBMIT_SPAM = "/submit-spam"; public static final String PATH_VERIFY = "/verify-key"; public static final String TYPE_COMMENT = "comment"; public static final String TYPE_WIKI = "wiki"; public static final String URL_REST = "rest.akismet.com/1.1"; public static final String WIKI_PAGE_MARKED_AS_SPAM = "Marked as Spam"; public static final String WIKI_PAGE_PENDING_APPROVAL = "Pending Approval"; }