/******************************************************************************* * 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. * * Contributors: * Kamesh Sampath - initial implementation *******************************************************************************/ package com.liferay.ide.portlet.core.model; import org.eclipse.sapphire.ElementList; import org.eclipse.sapphire.ElementType; import org.eclipse.sapphire.Length; import org.eclipse.sapphire.ListProperty; import org.eclipse.sapphire.ReferenceValue; import org.eclipse.sapphire.Type; import org.eclipse.sapphire.Value; import org.eclipse.sapphire.ValueProperty; import org.eclipse.sapphire.java.JavaType; import org.eclipse.sapphire.java.JavaTypeConstraint; import org.eclipse.sapphire.java.JavaTypeConstraintBehavior; import org.eclipse.sapphire.java.JavaTypeKind; import org.eclipse.sapphire.java.JavaTypeName; import org.eclipse.sapphire.modeling.annotations.Image; import org.eclipse.sapphire.modeling.annotations.Label; import org.eclipse.sapphire.modeling.annotations.MustExist; import org.eclipse.sapphire.modeling.annotations.Reference; import org.eclipse.sapphire.modeling.annotations.Required; import org.eclipse.sapphire.modeling.xml.annotations.XmlBinding; import org.eclipse.sapphire.modeling.xml.annotations.XmlListBinding; /** * @author Kamesh Sampath * @author Simon Jiang */ @Image( path = "images/elcl16/filter_16x16.gif" ) public interface Filter extends Describeable, Displayable { ElementType TYPE = new ElementType( Filter.class ); // *** Name *** @Label( standard = "name" ) @Required @XmlBinding( path = "filter-name" ) ValueProperty PROP_NAME = new ValueProperty( TYPE, "Name" ); //$NON-NLS-1$ Value<String> getName(); void setName( String value ); // *** Implementation *** @Type( base = JavaTypeName.class ) @Reference( target = JavaType.class ) @Label( standard = "implementation class", full = "Filter implementation class" ) @Required @MustExist @JavaTypeConstraint ( kind = JavaTypeKind.CLASS, type = { "javax.portlet.filter.ResourceFilter", "javax.portlet.filter.RenderFilter", "javax.portlet.filter.ActionFilter", "javax.portlet.filter.EventFilter" }, behavior = JavaTypeConstraintBehavior.AT_LEAST_ONE ) @XmlBinding( path = "filter-class" ) ValueProperty PROP_IMPLEMENTATION = new ValueProperty( TYPE, "Implementation" ); //$NON-NLS-1$ ReferenceValue<JavaTypeName, JavaType> getImplementation(); void setImplementation( String value ); void setImplementation( JavaTypeName value ); // *** LifeCycle *** @Type( base = LifeCycle.class ) @Label( standard = "lifecycle" ) @Length( min = 1 ) @XmlListBinding( mappings = @XmlListBinding.Mapping( element = "lifecycle", type = LifeCycle.class ) ) ListProperty PROP_LIFE_CYCLE = new ListProperty( TYPE, "LifeCycle" ); //$NON-NLS-1$ ElementList<LifeCycle> getLifeCycle(); // *** InitParams *** @Type( base = Param.class ) @Label( standard = "initialization parameters" ) @XmlListBinding( mappings = @XmlListBinding.Mapping( element = "init-param", type = Param.class ) ) ListProperty PROP_INIT_PARAMS = new ListProperty( TYPE, "InitParams" ); //$NON-NLS-1$ ElementList<Param> getInitParams(); }