public boolean isNamespaceSupported(String namespaceName) { if (Sandesha2Constants.SPEC_2005_02.NS_URI.equals(namespaceName)) return true; if (Sandesha2Constants.SPEC_2007_02.NS_URI.equals(namespaceName)) return true; return false; }
public SequenceAcknowledgement(String namespaceValue, boolean _piggybacked) { this.namespaceValue = namespaceValue; if (Sandesha2Constants.SPEC_2005_02.NS_URI.equals(namespaceValue)) { omNamespace = Sandesha2Constants.SPEC_2005_02.OM_NS_URI; } else { omNamespace = Sandesha2Constants.SPEC_2007_02.OM_NS_URI; } acknowledgementRangeList = new ArrayList<Range>(); nackList = new ArrayList<Long>(); piggybacked = _piggybacked; }