/** * 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.portal.search.web.internal.facet.display.context; import java.io.Serializable; import java.util.List; /** * @author Lino Alves */ public class FolderSearchFacetDisplayContext implements Serializable { public String getParameterName() { return _parameterName; } public String getParameterValue() { return _parameterValue; } public List<String> getParameterValues() { return _parameterValues; } public List<FolderSearchFacetTermDisplayContext> getTermDisplayContexts() { return _folderSearchFacetTermDisplayContexts; } public boolean isNothingSelected() { return _nothingSelected; } public boolean isRenderNothing() { return _renderNothing; } public void setNothingSelected(boolean nothingSelected) { _nothingSelected = nothingSelected; } public void setParameterName(String parameterName) { _parameterName = parameterName; } public void setParameterValue(String parameterValue) { _parameterValue = parameterValue; } public void setParameterValues(List<String> parameterValues) { _parameterValues = parameterValues; } public void setRenderNothing(boolean renderNothing) { _renderNothing = renderNothing; } public void setTermDisplayContexts( List<FolderSearchFacetTermDisplayContext> termDisplayContexts) { _folderSearchFacetTermDisplayContexts = termDisplayContexts; } private List<FolderSearchFacetTermDisplayContext> _folderSearchFacetTermDisplayContexts; private boolean _nothingSelected; private String _parameterName; private String _parameterValue; private List<String> _parameterValues; private boolean _renderNothing; }