1 17 package com.sun.org.apache.xml.internal.security.encryption; 18 19 20 import java.util.Iterator ; 21 22 23 44 public interface EncryptionProperties { 45 50 String getId(); 51 52 57 void setId(String id); 58 59 66 Iterator getEncryptionProperties(); 67 68 73 void addEncryptionProperty(EncryptionProperty property); 74 75 80 void removeEncryptionProperty(EncryptionProperty property); 81 } 82 83 | Popular Tags |