1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.opensaml.saml1.core.impl;
18
19 import org.opensaml.common.impl.AbstractSAMLObjectBuilder;
20 import org.opensaml.common.xml.SAMLConstants;
21 import org.opensaml.saml1.core.DoNotCacheCondition;
22
23
24
25
26 public class DoNotCacheConditionBuilder extends AbstractSAMLObjectBuilder<DoNotCacheCondition> {
27
28
29
30
31 public DoNotCacheConditionBuilder() {
32
33 }
34
35
36 public DoNotCacheCondition buildObject() {
37 return buildObject(SAMLConstants.SAML1_NS, DoNotCacheCondition.DEFAULT_ELEMENT_LOCAL_NAME,
38 SAMLConstants.SAML1_PREFIX);
39 }
40
41
42 public DoNotCacheCondition buildObject(String namespaceURI, String localName, String namespacePrefix) {
43 return new DoNotCacheConditionImpl(namespaceURI, localName, namespacePrefix);
44 }
45 }