1 /*
2 * Copyright 2013 The Apache Software Foundation.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.apache.juddi.api_v3.rest;
17
18 import java.util.ArrayList;
19 import java.util.List;
20 import javax.xml.bind.annotation.XmlElement;
21 import javax.xml.bind.annotation.XmlRootElement;
22
23 /**
24 * This class is used by the jUDDI Inquiry REST web service. It's just a simple wrapper
25 * to make serialization of XML and JSON objects simpler.
26 * @author Alex O'Ree
27 */
28 @XmlRootElement
29 public class UriContainer {
30
31 private List<String> yourlist;
32
33 @XmlElement
34 public List<String> getUriList() {
35 if (yourlist==null)yourlist = new ArrayList<String>();
36 return yourlist;
37 }
38
39 public void setUriList(List<String> yourlist) {
40 this.yourlist = yourlist;
41 }
42 }