1 19 24 25 package org.netbeans.modules.j2ee.sun.dd.api.common; 26 27 31 public interface MessageSecurity extends org.netbeans.modules.j2ee.sun.dd.api.CommonDDBean { 32 33 public static final String MESSAGE = "Message"; public static final String REQUEST_PROTECTION = "RequestProtection"; public static final String REQUESTPROTECTIONAUTHSOURCE = "RequestProtectionAuthSource"; public static final String REQUESTPROTECTIONAUTHRECIPIENT = "RequestProtectionAuthRecipient"; public static final String RESPONSE_PROTECTION = "ResponseProtection"; public static final String RESPONSEPROTECTIONAUTHSOURCE = "ResponseProtectionAuthSource"; public static final String RESPONSEPROTECTIONAUTHRECIPIENT = "ResponseProtectionAuthRecipient"; 41 42 public Message [] getMessage(); 43 public Message getMessage(int index); 44 public void setMessage(Message [] value); 45 public void setMessage(int index, Message value); 46 public int addMessage(Message value); 47 public int removeMessage(Message value); 48 public int sizeMessage(); 49 public Message newMessage(); 50 51 54 public void setRequestProtection(boolean value); 55 58 public boolean isRequestProtection(); 59 62 public void setResponseProtection(boolean value); 63 66 public boolean isResponseProtection(); 67 68 public void setRequestProtectionAuthSource(java.lang.String value); 69 public java.lang.String getRequestProtectionAuthSource(); 70 71 public void setRequestProtectionAuthRecipient(java.lang.String value); 72 public java.lang.String getRequestProtectionAuthRecipient(); 73 74 public void setResponseProtectionAuthSource(java.lang.String value); 75 public java.lang.String getResponseProtectionAuthSource(); 76 77 public void setResponseProtectionAuthRecipient(java.lang.String value); 78 public java.lang.String getResponseProtectionAuthRecipient(); 79 80 81 } 82 | Popular Tags |