1 |
|
|
2 |
|
|
3 |
|
|
4 |
|
|
5 |
|
|
6 |
|
|
7 |
|
|
8 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
package org.kuali.rice.ken.util; |
17 |
|
|
18 |
|
import java.util.HashMap; |
19 |
|
import java.util.HashSet; |
20 |
|
import java.util.Iterator; |
21 |
|
import java.util.Map; |
22 |
|
|
23 |
|
import javax.xml.namespace.NamespaceContext; |
24 |
|
|
25 |
|
import org.apache.log4j.Logger; |
26 |
|
|
27 |
|
|
28 |
|
|
29 |
|
@author |
30 |
|
|
|
|
| 0% |
Uncovered Elements: 40 (40) |
Complexity: 11 |
Complexity Density: 0.46 |
|
31 |
|
public class ConfiguredNamespaceContext implements NamespaceContext { |
32 |
|
private static final Logger LOG = Logger.getLogger(ConfiguredNamespaceContext.class); |
33 |
|
|
34 |
|
private Map<String, String> prefixToNamespace = new HashMap<String, String>(); |
35 |
|
private Map<String, HashSet<String>> namespaceToPrefix = new HashMap<String, HashSet<String>>(); |
36 |
|
|
37 |
|
|
38 |
|
|
39 |
|
@param |
40 |
|
|
|
|
| 0% |
Uncovered Elements: 11 (11) |
Complexity: 2 |
Complexity Density: 0.22 |
|
41 |
0
|
public ConfiguredNamespaceContext(Map<String, String> prefixToNamespace) {... |
42 |
0
|
this.prefixToNamespace = prefixToNamespace; |
43 |
|
|
44 |
0
|
for (Map.Entry<String, String> entry: prefixToNamespace.entrySet()) { |
45 |
0
|
String namespace = entry.getValue(); |
46 |
0
|
String prefix = entry.getKey(); |
47 |
0
|
HashSet<String> prefixes = namespaceToPrefix.get(namespace); |
48 |
0
|
if (prefixes == null) { |
49 |
0
|
prefixes = new HashSet<String>(4); |
50 |
0
|
namespaceToPrefix.put(namespace, prefixes); |
51 |
|
} |
52 |
0
|
prefixes.add(prefix); |
53 |
|
} |
54 |
|
} |
55 |
|
|
56 |
|
|
57 |
|
@see |
58 |
|
|
|
|
| 0% |
Uncovered Elements: 5 (5) |
Complexity: 2 |
Complexity Density: 0.67 |
|
59 |
0
|
public String getNamespaceURI(String prefix) {... |
60 |
|
|
61 |
0
|
if (prefix == null) { |
62 |
0
|
throw new IllegalArgumentException("The prefix cannot be null."); |
63 |
|
} |
64 |
|
|
65 |
0
|
return prefixToNamespace.get(prefix); |
66 |
|
} |
67 |
|
|
68 |
|
|
69 |
|
@see |
70 |
|
|
|
|
| 0% |
Uncovered Elements: 10 (10) |
Complexity: 3 |
Complexity Density: 0.5 |
|
71 |
0
|
public String getPrefix(String namespaceURI) {... |
72 |
|
|
73 |
0
|
if (namespaceURI == null) { |
74 |
0
|
throw new IllegalArgumentException("The namespace uri cannot be null."); |
75 |
|
} |
76 |
0
|
Iterator<String> prefixes = getPrefixes(namespaceURI); |
77 |
0
|
if (prefixes != null) { |
78 |
0
|
return prefixes.next(); |
79 |
|
} else { |
80 |
0
|
return null; |
81 |
|
} |
82 |
|
} |
83 |
|
|
84 |
|
|
85 |
|
@see |
86 |
|
|
|
|
| 0% |
Uncovered Elements: 10 (10) |
Complexity: 4 |
Complexity Density: 0.67 |
|
87 |
0
|
public Iterator<String> getPrefixes(String namespaceURI) {... |
88 |
|
|
89 |
0
|
if (namespaceURI == null) { |
90 |
0
|
throw new IllegalArgumentException("The namespace uri cannot be null."); |
91 |
|
} |
92 |
|
|
93 |
0
|
HashSet<String> prefixes = namespaceToPrefix.get(namespaceURI); |
94 |
0
|
if (prefixes != null && prefixes.size() > 0) { |
95 |
0
|
return prefixes.iterator(); |
96 |
|
} else { |
97 |
0
|
return null; |
98 |
|
} |
99 |
|
} |
100 |
|
} |