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.portal.kernel.servlet.taglib.ui;
016    
017    import java.util.Map;
018    
019    /**
020     * @author Sergio Gonz??lez
021     */
022    public class BreadcrumbEntry {
023    
024            public Map<String, Object> getData() {
025                    return _data;
026            }
027    
028            public String getTitle() {
029                    return _title;
030            }
031    
032            public String getURL() {
033                    return _url;
034            }
035    
036            public void setData(Map<String, Object> data) {
037                    _data = data;
038            }
039    
040            public void setTitle(String title) {
041                    _title = title;
042            }
043    
044            public void setURL(String url) {
045                    _url = url;
046            }
047    
048            private Map<String, Object> _data;
049            private String _title;
050            private String _url;
051    
052    }