1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.opensaml.saml2.metadata.impl;
18
19 import java.util.List;
20
21 import org.opensaml.common.impl.AbstractSAMLObject;
22 import org.opensaml.saml2.metadata.AdditionalMetadataLocation;
23 import org.opensaml.xml.XMLObject;
24
25
26
27
28 public class AdditionalMetadataLocationImpl extends AbstractSAMLObject implements AdditionalMetadataLocation {
29
30
31 private String location;
32
33
34 private String namespace;
35
36
37
38
39
40
41
42
43 protected AdditionalMetadataLocationImpl(String namespaceURI, String elementLocalName, String namespacePrefix) {
44 super(namespaceURI, elementLocalName, namespacePrefix);
45 }
46
47
48 public String getLocationURI() {
49 return location;
50 }
51
52
53 public void setLocationURI(String locationURI) {
54 location = prepareForAssignment(location, locationURI);
55 }
56
57
58 public String getNamespaceURI() {
59 return namespace;
60 }
61
62
63 public void setNamespaceURI(String namespaceURI) {
64 namespace = prepareForAssignment(namespace, namespaceURI);
65 }
66
67
68 public List<XMLObject> getOrderedChildren() {
69
70 return null;
71 }
72 }