/** * Copyright (C) 2011 JTalks.org Team * 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. * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ package org.jtalks.poulpe.model.entity; import java.util.List; import org.jtalks.common.model.entity.Component; import org.jtalks.common.model.entity.ComponentType; import org.jtalks.common.model.entity.Property; /** * Poulpe entity which represents Administrator Panel as itself. * * @author Vyacheslav Zhivaev */ public class Poulpe extends Component { /** * Creates Component with {@link ComponentType#ADMIN_PANEL}. Visible for hibernate */ protected Poulpe() { setComponentType(ComponentType.ADMIN_PANEL); } /** * Creates Poulpe component with ComponentType.ADMIN_PANEL type, given name, description and the list of properties. * Instances should be created using {@link ComponentBase#newComponent(String, String)} with ADMIN_PANEL * ComponentBase * * @param name of the component * @param description its descriptions * @param properties of the component */ Poulpe(String name, String description, List<Property> properties) { super(name, description, ComponentType.ADMIN_PANEL, properties); } /** * Returns boolean representation of poulpe.experimental_features_enabled property value. * * @return {@code true} if the property value equals "true"; {@code false} - otherwise */ public boolean isExperimentalFeaturesEnabled() { return Boolean.parseBoolean(getProperty("poulpe.experimental_features_enabled")); } }