001: /*
002: * ChainBuilder ESB
003: * Visual Enterprise Integration
004: *
005: * Copyright (C) 2006 Bostech Corporation
006: *
007: * This program is free software; you can redistribute it and/or modify
008: * it under the terms of the GNU General Public License as published by
009: * the Free Software Foundation; either version 2 of the License, or
010: * (at your option) any later version.
011: *
012: * This program is distributed in the hope that it will be useful,
013: * but WITHOUT ANY WARRANTY; without even the implied warranty of
014: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
015: * General Public License for more details.
016: *
017: * You should have received a copy of the GNU General Public License
018: * along with this program; if not, write to the Free Software
019: * Foundation, Inc.,59 Temple Place, Suite 330, Boston, MA 02111-1307
020: * USA
021: *
022: *
023: * $Id: FtpConfigurationMBean.java 3833 2006-12-14 21:10:56Z elu $
024: */
025: package com.bostechcorp.cbesb.runtime.component.ftp;
026:
027: /**
028: * @author j.zhang
029: * @version 1.0.0
030: */
031: public interface FtpConfigurationMBean {
032:
033: // /**
034: // * Get the jmxSampleConfigAttr.
035: // *
036: // * @return The jmxSampleConfigAttr
037: // */
038: // public String getJmxSampleConfigAttr();
039: //
040: // /**
041: // * Set the jmxSampleConfigAttr.
042: // *
043: // * @param jmxSampleConfigAttr The jmxSampleConfigAttr to set.
044: // */
045: // public void setJmxSampleConfigAttr(String jmxSampleConfigAttr);
046:
047: /**
048: * Get the inputUser.
049: *
050: * @return the inputUser
051: */
052: public String getInputUser();
053:
054: /**
055: * Set the inputUser.
056: *
057: * @param inputUser the inputUser to set
058: */
059: public void setInputUser(String inputUser);
060:
061: /**
062: * Get the inputPassword.
063: *
064: * @return the inputPassword
065: */
066: public String getInputPassword();
067:
068: /**
069: * Set the inputPassword.
070: *
071: * @param inputPassword the inputPassword to set
072: */
073: public void setInputPassword(String inputPassword);
074:
075: /**
076: * Get the replyUser.
077: *
078: * @return the replyUser
079: */
080: public String getReplyUser();
081:
082: /**
083: * Set the replyUser.
084: *
085: * @param replyUser the replyUser to set
086: */
087: public void setReplyUser(String replyUser);
088:
089: /**
090: * Get the replyPassword.
091: *
092: * @return the replyPassword
093: */
094: public String getReplyPassword();
095:
096: /**
097: * Set the replyPassword.
098: *
099: * @param replyPassword the replyPassword to set
100: */
101: public void setReplyPassword(String replyPassword);
102:
103: /**
104: * Get the ouputUser.
105: *
106: * @return the ouputUser
107: */
108: public String getOuputUser();
109:
110: /**
111: * Set the ouputUser.
112: *
113: * @param ouputUser the ouputUser to set
114: */
115: public void setOuputUser(String ouputUser);
116:
117: /**
118: * Get the outputPassword.
119: *
120: * @return the outputPassword
121: */
122: public String getOutputPassword();
123:
124: /**
125: * Set the outputPassword.
126: *
127: * @param outputPassword the outputPassword to set
128: */
129: public void setOutputPassword(String outputPassword);
130: }
|