001/*
002 * The contents of this file are subject to the license and copyright
003 * detailed in the LICENSE and NOTICE files at the root of the source
004 * tree.
005 */
006package org.fcrepo.http.commons.domain;
007
008import static java.lang.annotation.ElementType.METHOD;
009import static java.lang.annotation.RetentionPolicy.RUNTIME;
010
011import java.lang.annotation.Retention;
012import java.lang.annotation.Target;
013
014import javax.ws.rs.HttpMethod;
015
016/**
017 * PATCH HTTP method
018 *
019 * @author awoods
020 */
021@Target({METHOD})
022@Retention(RUNTIME)
023@HttpMethod("PATCH")
024public @interface PATCH {
025}