001    /**
002     * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portlet.documentlibrary.model;
016    
017    /**
018     * @author Hugo Huijser
019     * @author Brian Wing Shun Chan
020     * @author Alexander Chow
021     */
022    public class DLFileEntryTypeConstants {
023    
024            public static final long FILE_ENTRY_TYPE_ID_ALL = -1;
025    
026            public static final long FILE_ENTRY_TYPE_ID_BASIC_DOCUMENT = 0;
027    
028            public static final String FILE_ENTRY_TYPE_KEY_CONTRACT = "CONTRACT";
029    
030            public static final String FILE_ENTRY_TYPE_KEY_IG_IMAGE =
031                    "IMAGE GALLERY IMAGE";
032    
033            public static final String FILE_ENTRY_TYPE_KEY_MARKETING_BANNER =
034                    "MARKETING BANNER";
035    
036            public static final String FILE_ENTRY_TYPE_KEY_ONLINE_TRAINING =
037                    "ONLINE TRAINING";
038    
039            public static final String FILE_ENTRY_TYPE_KEY_SALES_PRESENTATION =
040                    "SALES PRESENTATION";
041    
042            public static final String NAME_BASIC_DOCUMENT = "basic-document";
043    
044            public static final String NAME_CONTRACT = "contract";
045    
046            public static final String NAME_IG_IMAGE = "image-gallery-image";
047    
048            public static final String NAME_MARKETING_BANNER = "marketing-banner";
049    
050            public static final String NAME_ONLINE_TRAINING = "online-training";
051    
052            public static final String NAME_SALES_PRESENTATION = "sales-presentation";
053    
054    }