001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.model;
016    
017    /**
018     * @author Sergio Gonz??lez
019     */
020    public class LayoutQueryStringComposite {
021    
022            public LayoutQueryStringComposite(
023                    Layout layout, String friendlyURL, String queryString) {
024    
025                    _friendlyURL = friendlyURL;
026                    _layout = layout;
027                    _queryString = queryString;
028            }
029    
030            public String getFriendlyURL() {
031                    return _friendlyURL;
032            }
033    
034            public Layout getLayout() {
035                    return _layout;
036            }
037    
038            public String getQueryString() {
039                    return _queryString;
040            }
041    
042            public void setFriendlyURL(String friendlyURL) {
043                    _friendlyURL = friendlyURL;
044            }
045    
046            public void setLayout(Layout layout) {
047                    _layout = layout;
048            }
049    
050            public void setQueryString(String queryString) {
051                    _queryString = queryString;
052            }
053    
054            private String _friendlyURL;
055            private Layout _layout;
056            private String _queryString;
057    
058    }