/* * Copyright (C) 2003-2009 eXo Platform SAS. * * This 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 software 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 software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.chromattic.api.annotations; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import java.lang.annotation.ElementType; /** * <p>Annotates a Chromattic property having a return type equals to {@code java.util.Map<String,?>} or * {@code java.util.Map<String, List<?>>}. The generic value type of the map can be any type, it is used at runtime * to filter the returned properties according to their value type. It provides access to residual properties of * the corresponding jcr node when that type is compatible with the generic value type of the returned Map.</p> * * <p>This annotation can be combined with the {@link NamingPrefix} annotation to filter the property map with * a name prefix.</p> * * @author <a href="mailto:julien.viet@exoplatform.com">Julien Viet</a> * @version $Revision$ */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface Properties { }