You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2016/11/29 17:19:18 UTC

cxf git commit: Prototyping a UserAplication model bean

Repository: cxf
Updated Branches:
  refs/heads/master 5954d4ce3 -> e0c3ed7c1


Prototyping a UserAplication model bean


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

Branch: refs/heads/master
Commit: e0c3ed7c11a68a9395df811465066b250e87b255
Parents: 5954d4c
Author: Sergey Beryozkin <sb...@gmail.com>
Authored: Tue Nov 29 17:18:46 2016 +0000
Committer: Sergey Beryozkin <sb...@gmail.com>
Committed: Tue Nov 29 17:18:46 2016 +0000

----------------------------------------------------------------------
 .../apache/cxf/jaxrs/model/UserApplication.java | 65 ++++++++++++++++++++
 1 file changed, 65 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/e0c3ed7c/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/model/UserApplication.java
----------------------------------------------------------------------
diff --git a/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/model/UserApplication.java b/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/model/UserApplication.java
new file mode 100644
index 0000000..404416d
--- /dev/null
+++ b/rt/frontend/jaxrs/src/main/java/org/apache/cxf/jaxrs/model/UserApplication.java
@@ -0,0 +1,65 @@
+/**
+ * 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;
+
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+public class UserApplication {
+
+    private String name;
+    private List<UserResource> resources; 
+    
+    public UserApplication() {
+    }
+    
+    public UserApplication(String name) {
+        this(name, null);
+    }
+    public UserApplication(String name, List<UserResource> resources) {
+        this.name = name;
+        this.resources = resources;
+    }
+    public String getName() {
+        return name;
+    }
+    
+    public void setName(String name) {
+        this.name = name;
+    }
+    
+    public void setResources(List<UserResource> resources) {
+        this.resources = resources;
+    }
+    
+    public List<UserResource> getResources() {
+        return resources;
+    }
+    
+    public Map<String, UserResource> getResourcesAsMap() {
+        Map<String, UserResource> map = new HashMap<String, UserResource>();
+        if (resources != null) {
+            for (UserResource r : resources) {
+                map.put(r.getName(), r);
+            }
+        }
+        return map;
+    }
+}