KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > j2ee > sun > ws7 > serverresources > dd > WS70MailResource


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19 /*
20  * WS70MailResource.java
21
22  */

23
24 package org.netbeans.modules.j2ee.sun.ws7.serverresources.dd;
25 /**
26  * Code reused from Appserver common API module
27  */

28 public interface WS70MailResource {
29
30         public static final String JavaDoc JNDINAME = "JndiName"; // NOI18N
31
public static final String JavaDoc STOREPROTOCOL = "StoreProtocol"; // NOI18N
32
public static final String JavaDoc STOREPROTOCOLCLASS = "StoreProtocolClass"; // NOI18N
33
public static final String JavaDoc TRANSPORTPROTOCOL = "TransportProtocol"; // NOI18N
34
public static final String JavaDoc TRANSPORTPROTOCOLCLASS = "TransportProtocolClass"; // NOI18N
35
public static final String JavaDoc HOST = "Host"; // NOI18N
36
public static final String JavaDoc USER = "User"; // NOI18N
37
public static final String JavaDoc FROM = "From"; // NOI18N
38
public static final String JavaDoc ENABLED = "Enabled"; // NOI18N
39
public static final String JavaDoc DESCRIPTION = "Description"; // NOI18N
40

41     /** Setter for jndi-name property
42         * @param value property value
43         */

44     public void setJndiName(java.lang.String JavaDoc value);
45         /** Getter for jndi-name property
46         * @return property value
47         */

48     public java.lang.String JavaDoc getJndiName();
49         /** Setter for store-protocol property
50         * @param value property value
51         */

52     public void setStoreProtocol(java.lang.String JavaDoc value);
53         /** Getter for store-protocol property
54         * @param value property value
55         */

56     public java.lang.String JavaDoc getStoreProtocol();
57         /** Setter for store-protocol-class property
58         * @param value property value
59         */

60     public void setStoreProtocolClass(java.lang.String JavaDoc value);
61         /** Getter for store-protocol-class property
62         * @param value property value
63         */

64     public java.lang.String JavaDoc getStoreProtocolClass();
65         /** Setter for transport-protocol property
66         * @param value property value
67         */

68     public void setTransportProtocol(java.lang.String JavaDoc value);
69         /** Getter for transport-protocol property
70         * @param value property value
71         */

72     public java.lang.String JavaDoc getTransportProtocol();
73         /** Setter for transport-protocol-class property
74         * @param value property value
75         */

76     public void setTransportProtocolClass(java.lang.String JavaDoc value);
77         /** Getter for transport-protocol-class property
78         * @param value property value
79         */

80     public java.lang.String JavaDoc getTransportProtocolClass();
81         /** Setter for host property
82         * @param value property value
83         */

84     public void setHost(java.lang.String JavaDoc value);
85         /** Getter for host property
86         * @param value property value
87         */

88     public java.lang.String JavaDoc getHost();
89         /** Setter for user property
90         * @param value property value
91         */

92     public void setUser(java.lang.String JavaDoc value);
93         /** Getter for user property
94         * @param value property value
95         */

96     public java.lang.String JavaDoc getUser();
97         /** Setter for from property
98         * @param value property value
99         */

100     public void setFrom(java.lang.String JavaDoc value);
101         /** Getter for from property
102         * @param value property value
103         */

104     public java.lang.String JavaDoc getFrom();
105  
106         /** Setter for enabled property
107         * @param value property value
108         */

109     public void setEnabled(java.lang.String JavaDoc value);
110         /** Getter for enabled property
111         * @param value property value
112         */

113     public java.lang.String JavaDoc getEnabled();
114         /** Setter for description attribute
115         * @param value attribute value
116         */

117     public void setDescription(String JavaDoc value);
118         /** Getter for description attribute
119         * @return attribute value
120         */

121     public String JavaDoc getDescription();
122
123
124 }
125
Popular Tags