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.portal.kernel.dao.search;
016    
017    import com.liferay.portal.kernel.util.StringPool;
018    
019    /**
020     * @author Chema Balsas
021     */
022    public class RowMoverDropTarget {
023    
024            public RowMoverDropTarget() {
025            }
026    
027            public String getAction() {
028                    return _action;
029            }
030    
031            public String getActiveCssClass() {
032                    return _activeCssClass;
033            }
034    
035            public String getContainer() {
036                    return _container;
037            }
038    
039            public String getInfoCssClass() {
040                    return _infoCssClass;
041            }
042    
043            public String getSelector() {
044                    return _selector;
045            }
046    
047            public void setAction(String action) {
048                    _action = action;
049            }
050    
051            public void setActiveCssClass(String activeCssClass) {
052                    _activeCssClass = activeCssClass;
053            }
054    
055            public void setContainer(String container) {
056                    _container = container;
057            }
058    
059            public void setInfoCssClass(String infoCssClass) {
060                    _infoCssClass = infoCssClass;
061            }
062    
063            public void setSelector(String selector) {
064                    _selector = selector;
065            }
066    
067            private String _action = StringPool.BLANK;
068            private String _activeCssClass = StringPool.BLANK;
069            private String _container = StringPool.BLANK;
070            private String _infoCssClass = StringPool.BLANK;
071            private String _selector = StringPool.BLANK;
072    
073    }