/** * Copyright (c) 2000-present Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.liferay.expando.taglib.servlet.taglib; import com.liferay.expando.taglib.internal.servlet.ServletContextUtil; import com.liferay.taglib.util.IncludeTag; import javax.servlet.http.HttpServletRequest; import javax.servlet.jsp.PageContext; /** * @author Brian Wing Shun Chan */ public class CustomAttributeTag extends IncludeTag { public void setClassName(String className) { _className = className; } public void setClassPK(long classPK) { _classPK = classPK; } public void setEditable(boolean editable) { _editable = editable; } public void setLabel(boolean label) { _label = label; } public void setName(String name) { _name = name; } @Override public void setPageContext(PageContext pageContext) { super.setPageContext(pageContext); servletContext = ServletContextUtil.getServletContext(); } @Override protected void cleanUp() { _className = null; _classPK = 0; _editable = false; _label = false; _name = null; } @Override protected String getPage() { return _PAGE; } @Override protected void setAttributes(HttpServletRequest request) { request.setAttribute( "liferay-expando:custom-attribute:className", _className); request.setAttribute( "liferay-expando:custom-attribute:classPK", String.valueOf(_classPK)); request.setAttribute( "liferay-expando:custom-attribute:editable", String.valueOf(_editable)); request.setAttribute( "liferay-expando:custom-attribute:label", String.valueOf(_label)); request.setAttribute("liferay-expando:custom-attribute:name", _name); } private static final String _PAGE = "/custom_attribute/page.jsp"; private String _className; private long _classPK; private boolean _editable; private boolean _label; private String _name; }