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 48 public interface EncryptionProperty { 49 55 String getTarget(); 56 57 62 void setTarget(String target); 63 64 69 String getId(); 70 71 76 void setId(String id); 77 78 84 String getAttribute(String attribute); 85 86 92 void setAttribute(String attribute, String value); 93 94 100 Iterator getEncryptionInformation(); 101 102 107 void addEncryptionInformation(Element information); 108 109 114 void removeEncryptionInformation(Element information); 115 } 116 | Popular Tags |