1 19 24 25 package org.netbeans.modules.j2ee.sun.dd.api.serverresources; 26 29 public interface MailResource { 30 31 public static final String JNDINAME = "JndiName"; public static final String STOREPROTOCOL = "StoreProtocol"; public static final String STOREPROTOCOLCLASS = "StoreProtocolClass"; public static final String TRANSPORTPROTOCOL = "TransportProtocol"; public static final String TRANSPORTPROTOCOLCLASS = "TransportProtocolClass"; public static final String HOST = "Host"; public static final String USER = "User"; public static final String FROM = "From"; public static final String DEBUG = "Debug"; public static final String ENABLED = "Enabled"; public static final String DESCRIPTION = "Description"; public static final String PROPERTY = "PropertyElement"; public static final String OBJECTTYPE = "ObjectType"; 45 48 public void setJndiName(java.lang.String value); 49 52 public java.lang.String getJndiName(); 53 56 public void setStoreProtocol(java.lang.String value); 57 60 public java.lang.String getStoreProtocol(); 61 64 public void setStoreProtocolClass(java.lang.String value); 65 68 public java.lang.String getStoreProtocolClass(); 69 72 public void setTransportProtocol(java.lang.String value); 73 76 public java.lang.String getTransportProtocol(); 77 80 public void setTransportProtocolClass(java.lang.String value); 81 84 public java.lang.String getTransportProtocolClass(); 85 88 public void setHost(java.lang.String value); 89 92 public java.lang.String getHost(); 93 96 public void setUser(java.lang.String value); 97 100 public java.lang.String getUser(); 101 104 public void setFrom(java.lang.String value); 105 108 public java.lang.String getFrom(); 109 112 public void setDebug(java.lang.String value); 113 116 public java.lang.String getDebug(); 117 120 public void setEnabled(java.lang.String value); 121 124 public java.lang.String getEnabled(); 125 128 public void setDescription(String value); 129 132 public String getDescription(); 133 134 public void setPropertyElement(int index, PropertyElement value); 135 public PropertyElement getPropertyElement(int index); 136 public int sizePropertyElement(); 137 public void setPropertyElement(PropertyElement[] value); 138 public PropertyElement[] getPropertyElement(); 139 public int addPropertyElement(PropertyElement value); 140 public int removePropertyElement(PropertyElement value); 141 public PropertyElement newPropertyElement(); 142 143 147 public void setObjectType(java.lang.String value); 148 151 public java.lang.String getObjectType(); 152 153 } 154 | Popular Tags |