Uses of Class
gnu.inet.ftp.ServerResponseException

Packages that use ServerResponseException
gnu.hylafax   
gnu.hylafax.job   
gnu.hylafax.pool   
gnu.inet.ftp   
 

Uses of ServerResponseException in gnu.hylafax
 

Methods in gnu.hylafax that throw ServerResponseException
 Job Client.createJob()
          create a new job in the server
 void Client.delete(Job job)
          delete the given done or suspended job
 void Client.get(java.lang.String path, java.io.OutputStream out)
          GET the named file, FTP style.
 Job Client.getJob(long id)
          get a Job instance for the given job id
 java.util.Vector Client.getList()
          get a long-style listing of files in the current directory.
 java.util.Vector Client.getList(java.lang.String path)
          get a long-style listing of files in the given directory.
 java.util.Vector Client.getNameList()
          get name list of files in the current directory.
 java.util.Vector Client.getNameList(java.lang.String path)
          get name list of files in the given directory.
 void Client.interrupt(Job job)
          interrupt the given job
 void Client.kill(Job job)
          kill the given job
 void Client.mode(char mode)
          set the transfer mode.
 java.lang.String Client.put(java.io.InputStream in)
          put a file with a unique name.
 void Client.put(java.io.InputStream in, java.lang.String pathname)
          store a file.
 java.lang.String Client.putTemporary(java.io.InputStream data)
          put a temp file, the data is stored in a uniquely named file on the server.
 void Client.submit(Job job)
          submit the given job to the scheduler
 void Client.suspend(Job job)
          suspend the given job from the scheduler
 void Client.wait(Job job)
          wait for the given job to complete
 void HylaFAXClientProtocol.admin(java.lang.String password)
          establish administrator privileges given password
 long HylaFAXClientProtocol.idle()
          get the current idle timeout in seconds
 void HylaFAXClientProtocol.idle(long timeout)
          set the idle timeout value to the given number of seconds
 long HylaFAXClientProtocol.job()
          get the current job id 0 indicates the current job id is "default" value
 void HylaFAXClientProtocol.job(long value)
          set the current job id
 java.lang.String HylaFAXClientProtocol.jobfmt()
          get the job format string.
 void HylaFAXClientProtocol.jobfmt(java.lang.String value)
          set the job format string.
 void HylaFAXClientProtocol.mdmfmt(java.lang.String value)
          set the modem format string.
 java.lang.String HylaFAXClientProtocol.mdmfmt()
          get the modem format string value.
 void HylaFAXClientProtocol.rcvfmt(java.lang.String value)
          set the receive file output format string.
 java.lang.String HylaFAXClientProtocol.rcvfmt()
          get the received file output format string.
 void HylaFAXClientProtocol.filefmt(java.lang.String value)
          set the FILEFMT string value.
 java.lang.String HylaFAXClientProtocol.filefmt()
          get the FILEFMT string value.
 void HylaFAXClientProtocol.jdele(long jobid)
          delete the given job this can be called on a suspended or done job.
 void HylaFAXClientProtocol.jintr(long jobid)
          interrupt the given job id
 void HylaFAXClientProtocol.jkill(long jobid)
          kill the job with the given job id
 void HylaFAXClientProtocol.jnew()
          create a new job.
 void HylaFAXClientProtocol.jrest()
          reset the state of the current job.
 int HylaFAXClientProtocol.jsubm(long jobid)
          submit the given job to the scheduler
 long HylaFAXClientProtocol.jsubm()
          submit the current job to the scheduler
 void HylaFAXClientProtocol.jsusp(long jobid)
          Suspend the job with the given job id.
 void HylaFAXClientProtocol.jwait(long jobid)
          Wait for the job with the given job id to complete.
 void HylaFAXClientProtocol.tzone(java.lang.String value)
          set the timezone display format valid tzone values are TZONE_GMT and TZONE_LOCAL
 void HylaFAXClientProtocol.jparm(java.lang.String parm, java.lang.String value)
          set job parameters on the current job
 void HylaFAXClientProtocol.jparm(java.lang.String parm, java.lang.Object value)
          set job parameters on the current job
 void HylaFAXClientProtocol.jparm(java.lang.String parm, int value)
          set job parameters on the current job
 void HylaFAXClientProtocol.jparm(java.lang.String parm, long value)
          set job parameters on the current job
 java.lang.String HylaFAXClientProtocol.jparm(java.lang.String parm)
          get job parameters of the current job
 java.lang.String HylaFAXClientProtocol.stot(java.io.InputStream data)
          store temp file, the file is stored in a uniquely named file on the server.
 java.net.InetAddress HylaFAXClientProtocol.vrfy(java.lang.String dialstring)
          verify dialstring handling and/or least-cost routing.
 void HylaFAXClientProtocol.open(java.lang.String host)
          open a connection to a given server at default port this is an alias for connect()
 void HylaFAXClientProtocol.open()
          open a connection to the localhost on the default port
 long HylaFAXClientProtocol.size(java.lang.String pathname)
          Returns the size (in bytes) of the given regular file.
 void HylaFAXClient.mode(char mode)
          set the transfer mode.
 java.lang.String HylaFAXClient.putTemporary(java.io.InputStream data)
          put a temp file, the data is stored in a uniquely named file on the server.
 java.lang.String HylaFAXClient.put(java.io.InputStream in)
          put a file with a unique name.
 void HylaFAXClient.put(java.io.InputStream in, java.lang.String pathname)
          store a file.
 java.util.Vector HylaFAXClient.getList(java.lang.String path)
          get a long-style listing of files in the given directory.
 java.util.Vector HylaFAXClient.getList()
          get a long-style listing of files in the current directory.
 java.util.Vector HylaFAXClient.getNameList(java.lang.String path)
          get name list of files in the given directory.
 java.util.Vector HylaFAXClient.getNameList()
          get name list of files in the current directory.
 void HylaFAXClient.get(java.lang.String path, java.io.OutputStream out)
          GET the named file, FTP style.
 Job HylaFAXClient.createJob()
          create a new job in the server
 Job HylaFAXClient.getJob(long id)
          get a Job instance for the given job id
 void HylaFAXClient.submit(Job job)
          submit the given job to the scheduler
 void HylaFAXClient.delete(Job job)
          delete the given done or suspended job
 void HylaFAXClient.suspend(Job job)
          suspend the given job from the scheduler
 void HylaFAXClient.wait(Job job)
          wait for the given job to complete
 void HylaFAXClient.kill(Job job)
          kill the given job
 void HylaFAXClient.interrupt(Job job)
          interrupt the given job
 void ClientProtocol.admin(java.lang.String password)
          establish administrator privileges given password
 java.lang.String ClientProtocol.filefmt()
          get the FILEFMT string value.
 void ClientProtocol.filefmt(java.lang.String value)
          set the FILEFMT string value.
 long ClientProtocol.idle()
          get the current idle timeout in seconds
 void ClientProtocol.idle(long timeout)
          set the idle timeout value to the given number of seconds
 void ClientProtocol.jdele(long jobid)
          delete the given job this can be called on a suspended or done job.
 void ClientProtocol.jintr(long jobid)
          interrupt the given job id
 void ClientProtocol.jkill(long jobid)
          kill the job with the given job id
 void ClientProtocol.jnew()
          create a new job.
 long ClientProtocol.job()
          get the current job id 0 indicates the current job id is "default" value
 void ClientProtocol.job(long value)
          set the current job id
 java.lang.String ClientProtocol.jobfmt()
          get the job format string.
 void ClientProtocol.jobfmt(java.lang.String value)
          set the job format string.
 java.lang.String ClientProtocol.jparm(java.lang.String parm)
          get job parameters of the current job
 void ClientProtocol.jparm(java.lang.String parm, int value)
          set job parameters on the current job
 void ClientProtocol.jparm(java.lang.String parm, long value)
          set job parameters on the current job
 void ClientProtocol.jparm(java.lang.String parm, java.lang.Object value)
          set job parameters on the current job
 void ClientProtocol.jparm(java.lang.String parm, java.lang.String value)
          set job parameters on the current job
 void ClientProtocol.jrest()
          reset the state of the current job.
 long ClientProtocol.jsubm()
          submit the current job to the scheduler
 int ClientProtocol.jsubm(long jobid)
          submit the given job to the scheduler
 void ClientProtocol.jsusp(long jobid)
          Suspend the job with the given job id.
 void ClientProtocol.jwait(long jobid)
          Wait for the job with the given job id to complete.
 java.lang.String ClientProtocol.mdmfmt()
          get the modem format string value.
 void ClientProtocol.mdmfmt(java.lang.String value)
          set the modem format string.
 void ClientProtocol.noop()
          perform server No Operation could be used as a keep-alive
 void ClientProtocol.open()
          open a connection to the localhost on the default port
 void ClientProtocol.open(java.lang.String host)
          open a connection to a given server at default port this is an alias for connect()
 void ClientProtocol.pass(java.lang.String password)
          send the password for this username and session
 void ClientProtocol.quit()
          end session
 java.lang.String ClientProtocol.rcvfmt()
          get the received file output format string.
 void ClientProtocol.rcvfmt(java.lang.String value)
          set the receive file output format string.
 long ClientProtocol.size(java.lang.String pathname)
          Returns the size (in bytes) of the given regular file.
 java.lang.String ClientProtocol.stot(java.io.InputStream data)
          store temp file, the file is stored in a uniquely named file on the server.
 void ClientProtocol.tzone(java.lang.String value)
          set the timezone display format valid tzone values are TZONE_GMT and TZONE_LOCAL
 boolean ClientProtocol.user(java.lang.String username)
          send the user name for this session
 java.net.InetAddress ClientProtocol.vrfy(java.lang.String dialstring)
          verify dialstring handling and/or least-cost routing.
 java.lang.String Job.getFromUser()
           
 java.lang.String Job.getKilltime()
           
 int Job.getMaximumDials()
           
 int Job.getMaximumTries()
           
 int Job.getPriority()
           
 java.lang.String Job.getDialstring()
           
 java.lang.String Job.getNotifyAddress()
           
 int Job.getVerticalResolution()
           
 java.awt.Dimension Job.getPageDimension()
           
 int Job.getPageWidth()
           
 int Job.getPageLength()
           
 java.lang.String Job.getNotifyType()
           
 java.lang.String Job.getPageChop()
           
 int Job.getChopThreshold()
           
 java.lang.String Job.getDocumentName()
           
 java.lang.String Job.getRetrytime()
           
 java.lang.String Job.getJobInfo()
          Get JobInfo attribute.
 java.lang.String Job.getTagline()
          Get TagLine format attribute.
 boolean Job.getUseTagline()
          Get the UseTagLine attribute.
 java.lang.String Job.getProperty(java.lang.String key)
          Get the value for an arbitrary property for this job.
 void Job.setFromUser(java.lang.String value)
           
 void Job.setKilltime(java.lang.String value)
           
 void Job.setMaximumDials(int value)
           
 void Job.setMaximumTries(int value)
           
 void Job.setPriority(int value)
           
 void Job.setDialstring(java.lang.String value)
           
 void Job.setNotifyAddress(java.lang.String value)
           
 void Job.setVerticalResolution(int value)
           
 void Job.setPageDimension(java.awt.Dimension value)
          Set the job's pagesize.
 void Job.setPageWidth(int width)
           
 void Job.setPageLength(int length)
           
 void Job.setNotifyType(java.lang.String value)
          set the notification type.
 void Job.setPageChop(java.lang.String value)
           
 void Job.setChopThreshold(int value)
           
 void Job.addDocument(java.lang.String value)
           
 void Job.setRetrytime(java.lang.String value)
           
 void Job.setJobInfo(java.lang.String value)
          Set the JobInfo attribute.
 void Job.setTagline(java.lang.String value)
          Set the TagLine format attribute.
 void Job.setUseTagline(boolean f)
          Set the UseTagLine format attribute.
 void Job.setProperty(java.lang.String parameter, java.lang.String value)
          Set any arbitrary property on this job.
 void Job.setProperty(java.lang.String property, int value)
          Set any arbitrary property on this job to an integer value.
 void Job.setSendTime(java.util.Date sendTime)
          Set the SENDTIME attribute.
 void Job.setSendTime(java.lang.String sendTime)
          Set the SENDTIME attribute.
 

Uses of ServerResponseException in gnu.hylafax.job
 

Methods in gnu.hylafax.job that throw ServerResponseException
 java.lang.String Job.getFromUser()
           
 java.lang.String Job.getKilltime()
           
 int Job.getMaximumDials()
           
 int Job.getMaximumTries()
           
 int Job.getPriority()
           
 java.lang.String Job.getDialstring()
           
 java.lang.String Job.getNotifyAddress()
           
 int Job.getVerticalResolution()
           
 java.awt.Dimension Job.getPageDimension()
           
 int Job.getPageWidth()
           
 int Job.getPageLength()
           
 java.lang.String Job.getNotifyType()
           
 java.lang.String Job.getPageChop()
           
 int Job.getChopThreshold()
           
 java.lang.String Job.getDocumentName()
           
 java.lang.String Job.getRetrytime()
           
 java.lang.String Job.getProperty(java.lang.String key)
          Get the value for an arbitrary property for this job.
 void Job.setFromUser(java.lang.String value)
           
 void Job.setKilltime(java.lang.String value)
           
 void Job.setMaximumDials(int value)
           
 void Job.setMaximumTries(int value)
           
 void Job.setPriority(int value)
           
 void Job.setDialstring(java.lang.String value)
           
 void Job.setNotifyAddress(java.lang.String value)
           
 void Job.setVerticalResolution(int value)
           
 void Job.setPageDimension(java.awt.Dimension value)
           
 void Job.setPageWidth(int width)
           
 void Job.setPageLength(int length)
           
 java.lang.String Job.getJobInfo()
          Get JobInfo attribute.
 java.lang.String Job.getTagline()
          Get TagLine format attribute.
 boolean Job.getUseTagline()
          Get the UseTagLine attribute.
 void Job.setNotifyType(java.lang.String value)
          set the notification type.
 void Job.setPageChop(java.lang.String value)
           
 void Job.setChopThreshold(int value)
           
 void Job.addDocument(java.lang.String value)
           
 void Job.setUseTagline(boolean value)
           
 void Job.setRetrytime(java.lang.String value)
           
 void Job.setJobInfo(java.lang.String value)
          Set the JobInfo attribute.
 void Job.setTagline(java.lang.String value)
          Set the TagLine format attribute.
 void Job.setProperty(java.lang.String parameter, java.lang.String value)
          Set any arbitrary property on this job.
 void Job.setProperty(java.lang.String property, int value)
          Set any arbitrary property on this job to an integer value.
 void Job.setSendTime(java.util.Date sendTime)
           
 void Job.setSendTime(java.lang.String sendTime)
           
 java.lang.String ThreadSafeJob.getProperty(java.lang.String key)
          Get the value for an arbitrary property for this job.
 void ThreadSafeJob.setProperty(java.lang.String parameter, java.lang.String value)
          Set any arbitrary property on this job.
 

Constructors in gnu.hylafax.job that throw ServerResponseException
Job(Client c)
           
Job(Client c, long id)
           
ThreadSafeJob(Client c)
           
ThreadSafeJob(Client c, long id)
           
 

Uses of ServerResponseException in gnu.hylafax.pool
 

Methods in gnu.hylafax.pool that throw ServerResponseException
 void HylaFAXPooledClient.admin(java.lang.String password)
           
 Job HylaFAXPooledClient.createJob()
           
 void HylaFAXPooledClient.delete(Job job)
           
 java.lang.String HylaFAXPooledClient.filefmt()
           
 void HylaFAXPooledClient.filefmt(java.lang.String value)
           
 void HylaFAXPooledClient.get(java.lang.String path, java.io.OutputStream out)
           
 Job HylaFAXPooledClient.getJob(long id)
           
 java.util.Vector HylaFAXPooledClient.getList()
           
 java.util.Vector HylaFAXPooledClient.getList(java.lang.String path)
           
 java.util.Vector HylaFAXPooledClient.getNameList()
           
 java.util.Vector HylaFAXPooledClient.getNameList(java.lang.String path)
           
 long HylaFAXPooledClient.idle()
           
 void HylaFAXPooledClient.idle(long timeout)
           
 void HylaFAXPooledClient.interrupt(Job job)
           
 void HylaFAXPooledClient.jdele(long jobid)
           
 void HylaFAXPooledClient.jintr(long jobid)
           
 void HylaFAXPooledClient.jkill(long jobid)
           
 void HylaFAXPooledClient.jnew()
           
 long HylaFAXPooledClient.job()
           
 void HylaFAXPooledClient.job(long value)
           
 java.lang.String HylaFAXPooledClient.jobfmt()
           
 void HylaFAXPooledClient.jobfmt(java.lang.String value)
           
 java.lang.String HylaFAXPooledClient.jparm(java.lang.String parm)
           
 void HylaFAXPooledClient.jparm(java.lang.String parm, int value)
           
 void HylaFAXPooledClient.jparm(java.lang.String parm, long value)
           
 void HylaFAXPooledClient.jparm(java.lang.String parm, java.lang.Object value)
           
 void HylaFAXPooledClient.jparm(java.lang.String parm, java.lang.String value)
           
 void HylaFAXPooledClient.jrest()
           
 long HylaFAXPooledClient.jsubm()
           
 int HylaFAXPooledClient.jsubm(long jobid)
           
 void HylaFAXPooledClient.jsusp(long jobid)
           
 void HylaFAXPooledClient.jwait(long jobid)
           
 void HylaFAXPooledClient.kill(Job job)
           
 java.lang.String HylaFAXPooledClient.mdmfmt()
           
 void HylaFAXPooledClient.mdmfmt(java.lang.String value)
           
 void HylaFAXPooledClient.mode(char mode)
           
 void HylaFAXPooledClient.noop()
           
 void HylaFAXPooledClient.open()
           
 void HylaFAXPooledClient.open(java.lang.String host)
           
 void HylaFAXPooledClient.open(java.lang.String host, int port)
           
 void HylaFAXPooledClient.pass(java.lang.String password)
           
 java.lang.String HylaFAXPooledClient.put(java.io.InputStream in)
           
 void HylaFAXPooledClient.put(java.io.InputStream in, java.lang.String pathname)
           
 java.lang.String HylaFAXPooledClient.putTemporary(java.io.InputStream data)
           
 void HylaFAXPooledClient.quit()
           
 java.lang.String HylaFAXPooledClient.rcvfmt()
           
 void HylaFAXPooledClient.rcvfmt(java.lang.String value)
           
 long HylaFAXPooledClient.size(java.lang.String pathname)
           
 java.lang.String HylaFAXPooledClient.stot(java.io.InputStream data)
           
 void HylaFAXPooledClient.submit(Job job)
           
 void HylaFAXPooledClient.suspend(Job job)
           
 void HylaFAXPooledClient.tzone(java.lang.String value)
           
 boolean HylaFAXPooledClient.user(java.lang.String username)
           
 java.net.InetAddress HylaFAXPooledClient.vrfy(java.lang.String dialstring)
           
 void HylaFAXPooledClient.wait(Job job)
           
 

Uses of ServerResponseException in gnu.inet.ftp
 

Methods in gnu.inet.ftp that throw ServerResponseException
 void FtpClientProtocol.open(java.lang.String host, int portnumber)
          open a connection to a given server and port this is an alias for connect()
 void FtpClientProtocol.open(java.lang.String host)
          open a connection to a given server at default port this is an alias for connect()
 void FtpClientProtocol.open()
          open a connection to the localhost on the default port
 boolean FtpClientProtocol.user(java.lang.String username)
          send the user name for this session
 void FtpClientProtocol.pass(java.lang.String password)
          send the password for this username and session
 void FtpClientProtocol.noop()
          perform server No Operation could be used as a keep-alive
 java.lang.String FtpClientProtocol.pwd()
          return current directory
 void FtpClientProtocol.cwd(java.lang.String value)
          change current working directory
 void FtpClientProtocol.cdup()
          change to parent of current working directory
 long FtpClientProtocol.idle()
          get the current idle timeout in seconds
 void FtpClientProtocol.idle(long timeout)
          set the idle timeout value to the given number of seconds
 void FtpClientProtocol.dele(java.lang.String pathname)
          delete the given file.
 void FtpClientProtocol.type(char value)
          Set the file type for transfer.
 void FtpClientProtocol.mode(char value)
          set the data transfer mode.
 void FtpClientProtocol.abor()
          abort the last command
 void FtpClientProtocol.abor(java.lang.String modem)
          abort the last command on the given modem.
 void FtpClientProtocol.port(java.net.InetAddress address, int port)
          tell the server which address/port we will listen on
 java.lang.String FtpClientProtocol.stot(java.io.InputStream data)
          store temp file, the file is stored in a uniquely named file on the server.
 java.lang.String FtpClientProtocol.stou(java.io.InputStream in)
          store a file with a unique name.
 void FtpClientProtocol.stor(java.io.InputStream in, java.lang.String pathname)
          store a file.
 java.lang.String FtpClientProtocol.syst()
          get system type returns the string that the server sends (not sure how to handle it yet) on a Debian GNU/Linux 2.1 (slink) system, the result string is: "UNIX Type: L8 Version: SVR4"
 void FtpClientProtocol.stru(char value)
          set the file structure.
 void FtpClientProtocol.list(java.lang.String path)
          get a list of files in a directory.
 void FtpClientProtocol.list()
          get list of files in current directory.
 void FtpClientProtocol.nlst(java.lang.String path)
          get name list of files in directory.
 void FtpClientProtocol.nlst()
          get name list of files in directory.
 void FtpClientProtocol.retr(java.lang.String path)
          retrieve the given file
 long FtpClientProtocol.size(java.lang.String pathname)
          Returns the size (in bytes) of the given regular file.
 java.util.Date FtpClientProtocol.mdtm(java.lang.String pathname)
          Returns the last modified time of the given file.
 void FtpClientProtocol.rnfr(java.lang.String pathname)
          Specifies a file to be renamed.
 void FtpClientProtocol.rnto(java.lang.String pathname)
          Renames a previously specified file to the given name.
 java.util.Vector FtpClientProtocol.stat(java.lang.String path)
          Returns the status of the named file or directory.
 java.util.Vector FtpClientProtocol.stat()
          Returns the server status message.
 PassiveParameters FtpClientProtocol.pasv()
          prepare for server-to-server transfer (passive mode)
 void FtpClientProtocol.quit()
          end session
protected  void FtpClientProtocol.connect(java.lang.String host, int portnumber)
          connect to the given host at the given port number.
 void FtpClient.mode(char mode)
          set the transfer mode.
 java.lang.String FtpClient.putTemporary(java.io.InputStream data)
          put a temp file, the data is stored in a uniquely named file on the server.
 java.lang.String FtpClient.put(java.io.InputStream in)
          put a file with a unique name.
 void FtpClient.put(java.io.InputStream in, java.lang.String pathname)
          store a file.
 java.util.Vector FtpClient.getList(java.lang.String path)
          get a long-style listing of files in the given directory.
 java.util.Vector FtpClient.getList()
          get a long-style listing of files in the current directory.
 java.util.Vector FtpClient.getNameList(java.lang.String path)
          get name list of files in the given directory.
 java.util.Vector FtpClient.getNameList()
          get name list of files in the current directory.
 void FtpClient.get(java.lang.String path, java.io.OutputStream out)
          GET the named file, FTP style.
 void FtpClient.rename(java.lang.String source, java.lang.String target)
          Renames remote file from source to target.