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 COMPANY_ID_BASIC_DOCUMENT = 0;
025    
026            public static final long FILE_ENTRY_TYPE_ID_ALL = -1;
027    
028            public static final long FILE_ENTRY_TYPE_ID_BASIC_DOCUMENT = 0;
029    
030            public static final String FILE_ENTRY_TYPE_KEY_CONTRACT = "CONTRACT";
031    
032            public static final String FILE_ENTRY_TYPE_KEY_IG_IMAGE =
033                    "IMAGE GALLERY IMAGE";
034    
035            public static final String FILE_ENTRY_TYPE_KEY_MARKETING_BANNER =
036                    "MARKETING BANNER";
037    
038            public static final String FILE_ENTRY_TYPE_KEY_ONLINE_TRAINING =
039                    "ONLINE TRAINING";
040    
041            public static final String FILE_ENTRY_TYPE_KEY_SALES_PRESENTATION =
042                    "SALES PRESENTATION";
043    
044            public static final String NAME_BASIC_DOCUMENT = "basic-document";
045    
046            public static final String NAME_CONTRACT = "contract";
047    
048            public static final String NAME_IG_IMAGE = "image-gallery-image";
049    
050            public static final String NAME_MARKETING_BANNER = "marketing-banner";
051    
052            public static final String NAME_ONLINE_TRAINING = "online-training";
053    
054            public static final String NAME_SALES_PRESENTATION = "sales-presentation";
055    
056    }