Repository: cxf
Updated Branches:
  refs/heads/3.0.x-fixes 14e26574a -> 53c84d714


adding another missing file


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/53c84d71
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/53c84d71
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/53c84d71

Branch: refs/heads/3.0.x-fixes
Commit: 53c84d714912349ec01e1a33e5497d2d8b1c61b9
Parents: 14e2657
Author: Sergey Beryozkin <sberyoz...@talend.com>
Authored: Fri Nov 14 17:46:54 2014 +0000
Committer: Sergey Beryozkin <sberyoz...@talend.com>
Committed: Fri Nov 14 17:47:51 2014 +0000

----------------------------------------------------------------------
 .../jaxrs/model/wadl/ResourceIdGenerator.java   | 27 ++++++++++++++++++++
 1 file changed, 27 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/53c84d71/rt/rs/description/src/main/java/org/apache/cxf/jaxrs/model/wadl/ResourceIdGenerator.java
----------------------------------------------------------------------
diff --git 
a/rt/rs/description/src/main/java/org/apache/cxf/jaxrs/model/wadl/ResourceIdGenerator.java
 
b/rt/rs/description/src/main/java/org/apache/cxf/jaxrs/model/wadl/ResourceIdGenerator.java
new file mode 100644
index 0000000..8906b39
--- /dev/null
+++ 
b/rt/rs/description/src/main/java/org/apache/cxf/jaxrs/model/wadl/ResourceIdGenerator.java
@@ -0,0 +1,27 @@
+/**
+ * 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.model.wadl;
+
+import org.apache.cxf.jaxrs.model.ClassResourceInfo;
+import org.apache.cxf.jaxrs.model.OperationResourceInfo;
+
+public interface ResourceIdGenerator {
+    String getClassResourceId(ClassResourceInfo cri);
+    String getMethodResourceId(OperationResourceInfo cri);
+}

Reply via email to