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.ServiceDescription;
28 import org.opensaml.xml.XMLObject;
29
30
31
32
33 public class ServiceDescriptionImpl extends AbstractSAMLObject implements ServiceDescription {
34
35
36 private LocalizedString description;
37
38
39
40
41
42
43
44
45 protected ServiceDescriptionImpl(String namespaceURI, String elementLocalName, String namespacePrefix) {
46 super(namespaceURI, elementLocalName, namespacePrefix);
47 }
48
49
50 public LocalizedString getDescription() {
51 return description;
52 }
53
54
55 public void setDescription(LocalizedString newDescription) {
56 description = prepareForAssignment(description, newDescription);
57 }
58
59
60 public List<XMLObject> getOrderedChildren() {
61 return null;
62 }
63 }