You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ws.apache.org by "Frank Cornelis (JIRA)" <ji...@apache.org> on 2013/10/24 04:29:41 UTC

[jira] [Created] (WSS-483) wsse:Reference withhout ValueType

Frank Cornelis created WSS-483:
----------------------------------

             Summary: wsse:Reference withhout ValueType
                 Key: WSS-483
                 URL: https://issues.apache.org/jira/browse/WSS-483
             Project: WSS4J
          Issue Type: Improvement
            Reporter: Frank Cornelis
            Assignee: Colm O hEigeartaigh


In Reference we have:
public void setValueType(String valueType) {
        element.setAttributeNS(null, "ValueType", valueType);
}
this should be
public void setValueType(String valueType) {
     if (null != valueType)   
         element.setAttributeNS(null, "ValueType", valueType);
}
so you can have an wsse:Reference with just an URI and no empty ValueType.



--
This message was sent by Atlassian JIRA
(v6.1#6144)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@ws.apache.org
For additional commands, e-mail: dev-help@ws.apache.org