001    /**
002     * Copyright (c) 2000-2013 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 NAME_BASIC_DOCUMENT = "basic-document";
029    
030            public static final String NAME_CONTRACT = "Contract";
031    
032            public static final String NAME_IG_IMAGE = "Image Gallery Image";
033    
034            public static final String NAME_LOCALIZED_CONTRACT = "contract";
035    
036            public static final String NAME_LOCALIZED_IG_IMAGE = "image-gallery-image";
037    
038            public static final String NAME_LOCALIZED_MARKETING_BANNER =
039                    "marketing-banner";
040    
041            public static final String NAME_LOCALIZED_ONLINE_TRAINING =
042                    "online-training";
043    
044            public static final String NAME_LOCALIZED_SALES_PRESENTATION =
045                    "sales-presentation";
046    
047            public static final String NAME_MARKETING_BANNER = "Marketing Banner";
048    
049            public static final String NAME_ONLINE_TRAINING = "Online Training";
050    
051            public static final String NAME_SALES_PRESENTATION = "Sales Presentation";
052    
053    }