[CXF-6638] Making sure a chunking is possible for PATCH/etc
Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/349ab460 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/349ab460 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/349ab460 Branch: refs/heads/2.7.x-fixes Commit: 349ab460edc8884fc584c618a20176463f1c0303 Parents: 2460922 Author: Sergey Beryozkin <[email protected]> Authored: Tue Oct 13 17:09:20 2015 +0100 Committer: Sergey Beryozkin <[email protected]> Committed: Tue Oct 13 17:09:20 2015 +0100 ---------------------------------------------------------------------- .../java/org/apache/cxf/jaxrs/ext/PATCH.java | 39 ++++++++++++++++++++ 1 file changed, 39 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/349ab460/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/ext/PATCH.java ---------------------------------------------------------------------- diff --git a/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/ext/PATCH.java b/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/ext/PATCH.java new file mode 100644 index 0000000..b0befd8 --- /dev/null +++ b/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/ext/PATCH.java @@ -0,0 +1,39 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +package org.apache.cxf.jaxrs.ext; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +import javax.ws.rs.HttpMethod; + +/** + * Indicates that the annotated method responds to HTTP PATCH requests. + * + * @see HttpMethod + */ +@Target({ElementType.METHOD }) +@Retention(RetentionPolicy.RUNTIME) +@HttpMethod("PATCH") +public @interface PATCH { + +} \ No newline at end of file
