1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package org.opensaml.ws.wstrust.impl;
19
20 import java.util.List;
21
22 import org.opensaml.ws.wstrust.BinarySecret;
23 import org.opensaml.xml.XMLObject;
24 import org.opensaml.xml.schema.impl.XSBase64BinaryImpl;
25 import org.opensaml.xml.util.AttributeMap;
26
27
28
29
30
31 public class BinarySecretImpl extends XSBase64BinaryImpl implements BinarySecret {
32
33
34 private String type;
35
36
37 private AttributeMap unknownChildren;
38
39
40
41
42
43
44
45
46 public BinarySecretImpl(String namespaceURI, String elementLocalName, String namespacePrefix) {
47 super(namespaceURI, elementLocalName, namespacePrefix);
48 unknownChildren = new AttributeMap(this);
49 }
50
51
52 public String getType() {
53 return type;
54 }
55
56
57 public void setType(String newType) {
58 type = prepareForAssignment(type, newType);
59 }
60
61
62 public AttributeMap getUnknownAttributes() {
63 return unknownChildren;
64 }
65
66
67 public List<XMLObject> getOrderedChildren() {
68 return null;
69 }
70
71 }