src/share/classes/org/jcp/xml/dsig/internal/dom/DOMManifest.java

Print this page

        

*** 125,135 **** public String getId() { return id; } ! public List getReferences() { return references; } public void marshal(Node parent, String dsPrefix, DOMCryptoContext context) throws MarshalException --- 125,140 ---- public String getId() { return id; } ! @SuppressWarnings("unchecked") ! static List<Reference> getManifestReferences(Manifest mf) { ! return mf.getReferences(); ! } ! ! public List<Reference> getReferences() { return references; } public void marshal(Node parent, String dsPrefix, DOMCryptoContext context) throws MarshalException