Repository: cxf Updated Branches: refs/heads/3.1.x-fixes acbab5dea -> 67042418e
[CXF-6694] Adding a missing test resource Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/67042418 Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/67042418 Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/67042418 Branch: refs/heads/3.1.x-fixes Commit: 67042418e3355d5158dfd701e8c42625593324e1 Parents: 2c12caa Author: Sergey Beryozkin <[email protected]> Authored: Mon Dec 7 11:07:06 2015 +0000 Committer: Sergey Beryozkin <[email protected]> Committed: Mon Dec 7 11:08:23 2015 +0000 ---------------------------------------------------------------------- .../jaxrs/resources/BookStoreConstructor.java | 32 ++++++++++++++++++++ 1 file changed, 32 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/67042418/rt/frontend/jaxrs/src/test/java/org/apache/cxf/jaxrs/resources/BookStoreConstructor.java ---------------------------------------------------------------------- diff --git a/rt/frontend/jaxrs/src/test/java/org/apache/cxf/jaxrs/resources/BookStoreConstructor.java b/rt/frontend/jaxrs/src/test/java/org/apache/cxf/jaxrs/resources/BookStoreConstructor.java new file mode 100644 index 0000000..a20b4f4 --- /dev/null +++ b/rt/frontend/jaxrs/src/test/java/org/apache/cxf/jaxrs/resources/BookStoreConstructor.java @@ -0,0 +1,32 @@ +/** + * 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.resources; + +import javax.ws.rs.Path; + +@Path("/bookstore/") +public class BookStoreConstructor extends BookStore { + + public BookStoreConstructor(String id) { + } +} + +
