/********************************************************************** * $Source: /cvsroot/jameica/jameica.webadmin/src/de/willuhn/jameica/webadmin/annotation/Request.java,v $ * $Revision: 1.1 $ * $Date: 2009/08/05 09:03:40 $ * $Author: willuhn $ * $Locker: $ * $State: Exp $ * * Copyright (c) by willuhn software & services * All rights reserved * **********************************************************************/ package de.willuhn.jameica.webadmin.annotation; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Annotation fuer den HttpServletRequest eines REST-Kommandos. */ @Documented @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.FIELD) public @interface Request { } /********************************************************************* * $Log: Request.java,v $ * Revision 1.1 2009/08/05 09:03:40 willuhn * @C Annotations in eigenes Package verschoben (sind nicht mehr REST-spezifisch) * * Revision 1.1 2008/10/08 16:01:38 willuhn * @N REST-Services via Injection (mittels Annotation) mit Context-Daten befuellen * **********************************************************************/