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.display.context;
016    
017    /**
018     * @author Iv??n Zaera
019     */
020    public class DLUIItemKeys {
021    
022            public static final String CANCEL_CHECKOUT =
023                    DLUIItemKeys.class.getName() + "#cancel-checkout";
024    
025            public static final String CHECKIN =
026                    DLUIItemKeys.class.getName() + "#checkin";
027    
028            public static final String CHECKOUT =
029                    DLUIItemKeys.class.getName() + "#checkout";
030    
031            public static final String DELETE =
032                    DLUIItemKeys.class.getName() + "#delete";
033    
034            public static final String DOWNLOAD =
035                    DLUIItemKeys.class.getName() + "#download";
036    
037            public static final String EDIT = DLUIItemKeys.class.getName() + "#edit";
038    
039            public static final String MOVE = DLUIItemKeys.class.getName() + "#move";
040    
041            public static final String MOVE_TO_THE_RECYCLE_BIN =
042                    DLUIItemKeys.class.getName() + "#move-to-the-recycle-bin";
043    
044            public static final String OPEN_IN_MS_OFFICE =
045                    DLUIItemKeys.class.getName() + "#open-in-ms-office";
046    
047            public static final String PERMISSIONS =
048                    DLUIItemKeys.class.getName() + "#permissions";
049    
050            public static final String VIEW_ORIGINAL_FILE =
051                    DLUIItemKeys.class.getName() + "#view-original-file";
052    
053    }