01: /*
02: * The contents of this file are subject to the terms of the Common Development
03: * and Distribution License (the License). You may not use this file except in
04: * compliance with the License.
05: *
06: * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
07: * or http://www.netbeans.org/cddl.txt.
08: *
09: * 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-2007 Sun
17: * Microsystems, Inc. All Rights Reserved.
18: */
19:
20: package org.netbeans.modules.wsdlextensions.ftp;
21:
22: /**
23: * @author jim.fu@sun.com
24: */
25: public interface FTPMessage extends FTPComponentEncodable {
26: public static final String FTP_POLLINTERVAL_PROPERTY = "pollIntervalMillis";
27: public static final String FTP_SYMETRIC_MSG_REPO_PROPERTY = "messageRepository";
28: public static final String FTP_SYMETRIC_MSG_NAME_PROPERTY = "messageName";
29: public static final String FTP_SYMETRIC_MSG_NAME_PREFIX_IB_PROPERTY = "messageNamePrefixIB";
30: public static final String FTP_SYMETRIC_MSG_NAME_PREFIX_OB_PROPERTY = "messageNamePrefixOB";
31: public static final String FTP_PROTECT_ENABLED_PROPERTY = "protect";
32: public static final String FTP_ARCHIVE_ENABLED_PROPERTY = "archive";
33: public static final String FTP_STAGING_ENABLED_PROPERTY = "stage";
34: public static final String FTP_MSG_CORRELATE_PROPERTY = "messageCorrelate";
35:
36: public String getPollInterval();
37:
38: public void setPollInterval(String s);
39:
40: public String getMessageRepository();
41:
42: public void setMessageRepository(String s);
43:
44: public String getMessageName();
45:
46: public void setMessageName(String s);
47:
48: public String getMessageNamePrefixIB();
49:
50: public void setMessageNamePrefixIB(String s);
51:
52: public String getMessageNamePrefixOB();
53:
54: public void setMessageNamePrefixOB(String s);
55:
56: public boolean getArchiveEnabled();
57:
58: public void setArchiveEnabled(boolean b);
59:
60: public boolean getProtectEnabled();
61:
62: public void setProtectEnabled(boolean b);
63:
64: public boolean getStagingEnabled();
65:
66: public void setStagingEnabled(boolean b);
67:
68: public boolean getMessageCorrelateEnabled();
69:
70: public void setMessageCorrelateEnabled(boolean b);
71: }
|