1 17 package com.sun.org.apache.xml.internal.security.encryption; 18 19 20 import java.util.Iterator ; 21 import org.w3c.dom.Element ; 22 23 24 42 public interface Reference { 43 51 String getURI(); 52 53 61 void setURI(String uri); 62 63 73 Iterator getElementRetrievalInformation(); 74 75 80 void addElementRetrievalInformation(Element info); 81 82 87 void removeElementRetrievalInformation(Element info); 88 } 89 | Popular Tags |