1 17 package com.sun.org.apache.xml.internal.security.encryption; 18 19 20 import java.util.Iterator ; 21 22 23 43 public interface ReferenceList { 44 45 public static final int DATA_REFERENCE = 0x00000001; 46 47 public static final int KEY_REFERENCE = 0x00000002; 48 49 56 public void add(Reference reference); 57 58 63 public void remove(Reference reference); 64 65 70 public int size(); 71 72 78 public boolean isEmpty(); 79 80 86 public Iterator getReferences(); 87 88 94 public Reference newDataReference(String uri); 95 96 102 public Reference newKeyReference(String uri); 103 } 104 | Popular Tags |