01: /**
02: * Licensed to the Apache Software Foundation (ASF) under one
03: * or more contributor license agreements. See the NOTICE file
04: * distributed with this work for additional information
05: * regarding copyright ownership. The ASF licenses this file
06: * to you under the Apache License, Version 2.0 (the
07: * "License"); you may not use this file except in compliance
08: * with the License. You may obtain a copy of the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing,
13: * software distributed under the License is distributed on an
14: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15: * KIND, either express or implied. See the License for the
16: * specific language governing permissions and limitations
17: * under the License.
18: */package org.apache.cxf.configuration.spring;
19:
20: import java.util.ArrayList;
21: import java.util.Collection;
22: import java.util.List;
23:
24: import javax.xml.namespace.QName;
25:
26: public class PersonQNameImpl implements Person {
27: private static int loadCount;
28: private static List<Person> loaded = new ArrayList<Person>();
29: private Collection<QName> ids;
30: private String id;
31:
32: public PersonQNameImpl() {
33: ids = new ArrayList<QName>();
34: ids.add(new QName("http://cxf.apache.org", "anonymous"));
35: loadCount++;
36: loaded.add(this );
37: id = "Person " + loadCount;
38: }
39:
40: public Collection<QName> getIds() {
41: return ids;
42: }
43:
44: public void setIds(Collection<QName> ids) {
45: this .ids = ids;
46: }
47:
48: public static int getLoadCount() {
49: return loadCount;
50: }
51:
52: public static List<Person> getLoaded() {
53: return loaded;
54: }
55:
56: public String toString() {
57: StringBuffer buf = new StringBuffer();
58: buf.append(id);
59: buf.append(" [");
60: for (QName qn : ids) {
61: buf.append(qn);
62: buf.append(",");
63: }
64: buf.setLength(buf.length() - 1);
65: buf.append("]");
66: return buf.toString();
67: }
68: }
|