001 /*******************************************************************************
002 * Copyright (c) PicoContainer Organization. All rights reserved.
003 * ---------------------------------------------------------------------------
004 * The software in this package is published under the terms of the BSD style
005 * license a copy of which has been included with this distribution in the
006 * LICENSE.txt file.
007 ******************************************************************************/
008 package org.picocontainer.web;
009
010 import java.lang.annotation.Retention;
011 import java.lang.annotation.RetentionPolicy;
012 import java.lang.annotation.Target;
013 import java.lang.annotation.ElementType;
014
015 /**
016 * If it is possible to bind a request to an invocation, only bind to POST requests
017 */
018 @Retention(RetentionPolicy.RUNTIME)
019 @Target(value={ElementType.METHOD})
020 public @interface POST {
021 }