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