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.taglib.ui;
016    
017    import com.liferay.portal.kernel.util.Validator;
018    import com.liferay.taglib.util.IncludeTag;
019    
020    import javax.servlet.http.HttpServletRequest;
021    
022    /**
023     * @author     Brian Wing Shun Chan
024     * @deprecated As of 7.0.0, with no direct replacement
025     */
026    @Deprecated
027    public class WriteTag extends IncludeTag {
028    
029            public void setBean(Object bean) {
030                    _bean = bean;
031            }
032    
033            public void setProperty(String property) {
034                    _property = property;
035            }
036    
037            @Override
038            protected void cleanUp() {
039                    _bean = null;
040                    _property = null;
041            }
042    
043            @Override
044            protected String getPage() {
045                    if ((_bean == null) || Validator.isNull(_property)) {
046                            return null;
047                    }
048                    else {
049                            return _PAGE;
050                    }
051            }
052    
053            @Override
054            protected void setAttributes(HttpServletRequest request) {
055                    request.setAttribute("liferay-ui:write:bean", _bean);
056                    request.setAttribute("liferay-ui:write:property", _property);
057            }
058    
059            private static final String _PAGE = "/html/taglib/ui/write/page.jsp";
060    
061            private Object _bean;
062            private String _property;
063    
064    }