Author: anil.saldhana(a)jboss.com
Date: 2011-07-06 10:43:18 -0400 (Wed, 06 Jul 2011)
New Revision: 1065
Modified:
federation/trunk/picketlink-fed-model/src/main/java/org/picketlink/identity/federation/saml/v1/protocol/SAML11StatusCodeType.java
Log:
use the required attr
Modified:
federation/trunk/picketlink-fed-model/src/main/java/org/picketlink/identity/federation/saml/v1/protocol/SAML11StatusCodeType.java
===================================================================
---
federation/trunk/picketlink-fed-model/src/main/java/org/picketlink/identity/federation/saml/v1/protocol/SAML11StatusCodeType.java 2011-07-06
04:42:18 UTC (rev 1064)
+++
federation/trunk/picketlink-fed-model/src/main/java/org/picketlink/identity/federation/saml/v1/protocol/SAML11StatusCodeType.java 2011-07-06
14:43:18 UTC (rev 1065)
@@ -40,10 +40,17 @@
{
private static final long serialVersionUID = 1L;
+ public static final SAML11StatusCodeType SUCCESS = new SAML11StatusCodeType(new
QName("samlp:Success"));
+
protected SAML11StatusCodeType statusCode;
protected QName value;
+ public SAML11StatusCodeType(QName theValue)
+ {
+ value = theValue;
+ }
+
/**
* Gets the value of the statusCode property.
*
@@ -82,17 +89,4 @@
{
return value;
}
-
- /**
- * Sets the value of the value property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setValue(QName value)
- {
- this.value = value;
- }
}
\ No newline at end of file