/** * 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.document.library.kernel.model; /** * @author Hugo Huijser * @author Brian Wing Shun Chan * @author Alexander Chow */ public class DLFileEntryTypeConstants { public static final long COMPANY_ID_BASIC_DOCUMENT = 0; public static final long FILE_ENTRY_TYPE_ID_ALL = -1; public static final long FILE_ENTRY_TYPE_ID_BASIC_DOCUMENT = 0; public static final String FILE_ENTRY_TYPE_KEY_CONTRACT = "CONTRACT"; public static final String FILE_ENTRY_TYPE_KEY_IG_IMAGE = "IMAGE GALLERY IMAGE"; public static final String FILE_ENTRY_TYPE_KEY_MARKETING_BANNER = "MARKETING BANNER"; public static final String FILE_ENTRY_TYPE_KEY_ONLINE_TRAINING = "ONLINE TRAINING"; public static final String FILE_ENTRY_TYPE_KEY_SALES_PRESENTATION = "SALES PRESENTATION"; public static final String NAME_BASIC_DOCUMENT = "basic-document"; public static final String NAME_CONTRACT = "contract"; public static final String NAME_IG_IMAGE = "image-gallery-image"; public static final String NAME_MARKETING_BANNER = "marketing-banner"; public static final String NAME_ONLINE_TRAINING = "online-training"; public static final String NAME_SALES_PRESENTATION = "sales-presentation"; }