Java Doc for BasicServerConfig.java in  » Net » QuickServer » org » quickserver » util » xmlreader » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Net » QuickServer » org.quickserver.util.xmlreader 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.quickserver.util.xmlreader.BasicServerConfig

All known Subclasses:   org.quickserver.util.xmlreader.QuickServerConfig,  org.quickserver.util.xmlreader.QSAdminServerConfig,
BasicServerConfig
public class BasicServerConfig implements java.io.Serializable(Code)
This class encapsulate the basic configuration of QuickServer.
author:
   Akshathkumar Shetty
since:
   1.2
See Also:   org.quickserver.util.xmlreader.QuickServerConfig
See Also:   org.quickserver.util.xmlreader.QSAdminServerConfig




Method Summary
public  AccessConstraintConfiggetAccessConstraintConfig()
     Returns Access constraints if present else null.
public  AdvancedSettingsgetAdvancedSettings()
     Returns the AdvancedSettings for the QuickServer.
public  StringgetAuthenticator()
     Returns the Authenticator class that handles the authentication of the client.
public  StringgetBindAddr()
     Returns the Ip address binding to.
public  StringgetClientAuthenticationHandler()
     Returns the ClientAuthenticationHandler class that handles the authentication of the client.
public  StringgetClientBinaryHandler()
     Returns the ClientBinaryHandler class that interacts with client sockets.
public  StringgetClientCommandHandler()
     Returns the ClientCommandHandler class that interacts with client sockets.
public  StringgetClientData()
    
public  StringgetClientEventHandler()
     Returns the ClientEventHandler class that gets notified of client events.
public  StringgetClientExtendedEventHandler()
     Returns the ClientExtendedEventHandler class that gets notified of client's extended events.
public  StringgetClientObjectHandler()
     Returns the ClientObjectHandler class that interacts with client sockets.
public  StringgetClientWriteHandler()
     Returns the ClientWriteHandler class that interacts with client sockets.
public  booleangetCommunicationLogging()
     Returns the communication logging flag.
public  StringgetConsoleLoggingFormatter()
     Returns the console log handler level.
public  StringgetConsoleLoggingLevel()
     Returns the console log handler level.
public  DefaultDataModegetDefaultDataMode()
     Returns the DefaultDataMode for the QuickServer.
public  intgetMaxAuthTry()
     Returns maximum allowed login attempts.
public  StringgetMaxAuthTryMsg()
     Returns message to be displayed when maximum allowed login attempts has reached.
public  longgetMaxConnection()
     Returns the maximum number of client connection allowed.
public  StringgetMaxConnectionMsg()
     Returns the message to be sent to any new client connected after maximum client connection has reached.
public  StringgetName()
    
public  ObjectPoolConfiggetObjectPoolConfig()
     Returns the ObjectPool Config object.
public  intgetPort()
    
public  SecuregetSecure()
    
public  StringgetServerBanner()
    
public  ServerHooksgetServerHooks()
     Returns ServerHooks if present else null.
public  ServerModegetServerMode()
     Returns the ServerMode for the QuickServer.
public  intgetTimeout()
     Returns the Client Socket timeout in milliseconds.
public  StringgetTimeoutMsg()
     Returns timeout message.
public  voidsetAccessConstraintConfig(AccessConstraintConfig accessConstraintConfig)
    
public  voidsetAdvancedSettings(AdvancedSettings advancedSettings)
     Sets the AdvancedSettings for the QuickServer.
public  voidsetAuthenticator(String authenticator)
     Sets the Authenticator class that handles the authentication of the client.
public  voidsetAuthenticator(Authenticator authenticator)
     Sets the Authenticator class that handles the authentication of the client.
public  voidsetBindAddr(String bindAddr)
     Sets the Ip address to bind to.
public  voidsetClientAuthenticationHandler(String clientAuthenticationHandler)
     Sets the ClientAuthenticationHandler class that handles the authentication of the client.
public  voidsetClientAuthenticationHandler(ClientAuthenticationHandler clientAuthenticationHandler)
     Sets the ClientAuthenticationHandler class that handles the authentication of the client.
public  voidsetClientBinaryHandler(String handler)
     Sets the ClientBinaryHandler class that interacts with client sockets.
public  voidsetClientBinaryHandler(ClientBinaryHandler handler)
     Sets the ClientBinaryHandler class that interacts with client sockets.
public  voidsetClientCommandHandler(String handler)
     Sets the ClientCommandHandler class that interacts with client sockets.
public  voidsetClientCommandHandler(ClientCommandHandler handler)
     Sets the ClientCommandHandler class that interacts with client sockets.
public  voidsetClientData(String data)
     Sets the ClientData class that carries client data.
public  voidsetClientData(ClientData data)
     Sets the ClientData class that carries client data.
public  voidsetClientEventHandler(String handler)
     Sets the ClientEventHandler class that gets notified of client events.
public  voidsetClientEventHandler(ClientEventHandler handler)
     Sets the ClientEventHandler class that gets notified of client events.
public  voidsetClientExtendedEventHandler(String handler)
     Sets the ClientExtendedEventHandler class that gets notified of client's extended events.
public  voidsetClientExtendedEventHandler(ClientExtendedEventHandler handler)
     Sets the ClientExtendedEventHandler class that gets notified of client's extended events.
public  voidsetClientObjectHandler(String handler)
     Sets the ClientObjectHandler class that interacts with client sockets.
public  voidsetClientObjectHandler(ClientObjectHandler handler)
     Sets the ClientObjectHandler class that interacts with client sockets.
public  voidsetClientWriteHandler(String handler)
     Sets the ClientWriteHandler class that interacts with client sockets.
public  voidsetClientWriteHandler(ClientWriteHandler handler)
     Sets the ClientWriteHandler class that interacts with client sockets.
public  voidsetCommunicationLogging(boolean enable)
     Sets the communication logging flag.
public  voidsetConsoleLoggingFormatter(String formatter)
     Sets the console log handler formatter.
public  voidsetConsoleLoggingLevel(String level)
     Sets the console log handler level.
public  voidsetDefaultDataMode(DefaultDataMode defaultDataMode)
     Sets the DefaultDataMode for the QuickServer.
public  voidsetMaxAuthTry(int authTry)
     Sets maximum allowed login attempts.
public  voidsetMaxAuthTryMsg(String msg)
     Sets message to be displayed when maximum allowed login attempts has reached.
public  voidsetMaxConnection(long maxConnection)
     Sets the maximum number of client connection allowed..
public  voidsetMaxConnectionMsg(String maxConnectionMsg)
     Sets the message to be sent to any new client connected after maximum client connection has reached.
public  voidsetName(String name)
     Sets the name for the QuickServer.
public  voidsetObjectPoolConfig(ObjectPoolConfig objectPoolConfig)
     Sets the ObjectPool Config object.
public  voidsetPort(int port)
     Sets the port for the QuickServer to listen on.
public  voidsetSecure(Secure secure)
    
public  voidsetServerBanner(String banner)
     Sets the serverBanner for the QuickServer that will be displayed on the standard output [console] when server starts.
public  voidsetServerHooks(ServerHooks serverHooks)
    
public  voidsetServerMode(ServerMode serverMode)
     Sets the ServerMode for the QuickServer.
public  voidsetTimeout(int time)
     Sets the Client Socket timeout in milliseconds.
public  voidsetTimeoutMsg(String msg)
     Sets timeout message.



Method Detail
getAccessConstraintConfig
public AccessConstraintConfig getAccessConstraintConfig()(Code)
Returns Access constraints if present else null.
since:
   1.3.3



getAdvancedSettings
public AdvancedSettings getAdvancedSettings()(Code)
Returns the AdvancedSettings for the QuickServer.
See Also:   BasicServerConfig.setAdvancedSettings
since:
   1.4.5



getAuthenticator
public String getAuthenticator()(Code)
Returns the Authenticator class that handles the authentication of the client.
See Also:   BasicServerConfig.setAuthenticator
since:
   1.3



getBindAddr
public String getBindAddr()(Code)
Returns the Ip address binding to.
See Also:   BasicServerConfig.setBindAddr



getClientAuthenticationHandler
public String getClientAuthenticationHandler()(Code)
Returns the ClientAuthenticationHandler class that handles the authentication of the client.
See Also:   BasicServerConfig.setClientAuthenticationHandler
since:
   1.4.6



getClientBinaryHandler
public String getClientBinaryHandler()(Code)
Returns the ClientBinaryHandler class that interacts with client sockets.
See Also:   BasicServerConfig.setClientBinaryHandler



getClientCommandHandler
public String getClientCommandHandler()(Code)
Returns the ClientCommandHandler class that interacts with client sockets.
See Also:   BasicServerConfig.setClientCommandHandler



getClientData
public String getClientData()(Code)
Returns the ClientData class string that carries client data the fully qualified name of the class that implements org.quickserver.net.server.ClientData.
See Also:   BasicServerConfig.setClientData



getClientEventHandler
public String getClientEventHandler()(Code)
Returns the ClientEventHandler class that gets notified of client events.
See Also:   BasicServerConfig.setClientEventHandler
since:
   1.4.6



getClientExtendedEventHandler
public String getClientExtendedEventHandler()(Code)
Returns the ClientExtendedEventHandler class that gets notified of client's extended events.
See Also:   BasicServerConfig.setClientExtendedEventHandler
since:
   1.4.6



getClientObjectHandler
public String getClientObjectHandler()(Code)
Returns the ClientObjectHandler class that interacts with client sockets.
See Also:   BasicServerConfig.setClientObjectHandler



getClientWriteHandler
public String getClientWriteHandler()(Code)
Returns the ClientWriteHandler class that interacts with client sockets.
See Also:   BasicServerConfig.setClientWriteHandler



getCommunicationLogging
public boolean getCommunicationLogging()(Code)
Returns the communication logging flag.
See Also:   BasicServerConfig.setCommunicationLogging
since:
   1.3.2



getConsoleLoggingFormatter
public String getConsoleLoggingFormatter()(Code)
Returns the console log handler level.



getConsoleLoggingLevel
public String getConsoleLoggingLevel()(Code)
Returns the console log handler level.



getDefaultDataMode
public DefaultDataMode getDefaultDataMode()(Code)
Returns the DefaultDataMode for the QuickServer.
See Also:   BasicServerConfig.setDefaultDataMode
since:
   1.4.6



getMaxAuthTry
public int getMaxAuthTry()(Code)
Returns maximum allowed login attempts. Default is : 5



getMaxAuthTryMsg
public String getMaxAuthTryMsg()(Code)
Returns message to be displayed when maximum allowed login attempts has reached.
See Also:   BasicServerConfig.getMaxAuthTryMsg



getMaxConnection
public long getMaxConnection()(Code)
Returns the maximum number of client connection allowed.
See Also:   BasicServerConfig.setMaxConnection



getMaxConnectionMsg
public String getMaxConnectionMsg()(Code)
Returns the message to be sent to any new client connected after maximum client connection has reached.
See Also:   BasicServerConfig.setMaxConnectionMsg



getName
public String getName()(Code)
Returns the name of the QuickServer
See Also:   BasicServerConfig.setName



getObjectPoolConfig
public ObjectPoolConfig getObjectPoolConfig()(Code)
Returns the ObjectPool Config object.



getPort
public int getPort()(Code)
Returns the port for the QuickServer
See Also:   BasicServerConfig.setPort



getSecure
public Secure getSecure()(Code)
Returns Secure setting for QuickServer
since:
   1.4.0



getServerBanner
public String getServerBanner()(Code)
Returns the Server Banner of the QuickServer
See Also:   BasicServerConfig.setServerBanner



getServerHooks
public ServerHooks getServerHooks()(Code)
Returns ServerHooks if present else null.
since:
   1.3.3



getServerMode
public ServerMode getServerMode()(Code)
Returns the ServerMode for the QuickServer.
See Also:   BasicServerConfig.setServerMode
since:
   1.4.5



getTimeout
public int getTimeout()(Code)
Returns the Client Socket timeout in milliseconds.
See Also:   BasicServerConfig.setTimeout



getTimeoutMsg
public String getTimeoutMsg()(Code)
Returns timeout message.
See Also:   BasicServerConfig.setTimeoutMsg



setAccessConstraintConfig
public void setAccessConstraintConfig(AccessConstraintConfig accessConstraintConfig)(Code)
Sets the Access constraints
since:
   1.3.3



setAdvancedSettings
public void setAdvancedSettings(AdvancedSettings advancedSettings)(Code)
Sets the AdvancedSettings for the QuickServer.
Parameters:
  advancedSettings - AdvancedSettings object.
See Also:   BasicServerConfig.getAdvancedSettings
since:
   1.4.5



setAuthenticator
public void setAuthenticator(String authenticator)(Code)
Sets the Authenticator class that handles the authentication of the client. XML Tag: <authenticator></authenticator>
Parameters:
  authenticator - the fully qualified name of the class that implements org.quickserver.net.server.Authenticator.
See Also:   BasicServerConfig.getAuthenticator
since:
   1.3



setAuthenticator
public void setAuthenticator(Authenticator authenticator)(Code)
Sets the Authenticator class that handles the authentication of the client.
since:
   1.4.6



setBindAddr
public void setBindAddr(String bindAddr)(Code)
Sets the Ip address to bind to.
Parameters:
  bindAddr - argument can be used on a multi-homed host for a QuickServer that will only accept connect requests to one of its addresses. If not set, it will default accepting connections on any/all local addresses.XML Tag: <bind-address></bind-address>
See Also:   BasicServerConfig.getBindAddr



setClientAuthenticationHandler
public void setClientAuthenticationHandler(String clientAuthenticationHandler)(Code)
Sets the ClientAuthenticationHandler class that handles the authentication of the client. XML Tag: <client-authentication-handler></client-authentication-handler>
Parameters:
  clientAuthenticationHandler - the fully qualified name of the class that implements org.quickserver.net.server.ClientAuthenticationHandler.
See Also:   BasicServerConfig.getClientAuthenticationHandler
since:
   1.4.6



setClientAuthenticationHandler
public void setClientAuthenticationHandler(ClientAuthenticationHandler clientAuthenticationHandler)(Code)
Sets the ClientAuthenticationHandler class that handles the authentication of the client.
since:
   1.4.6



setClientBinaryHandler
public void setClientBinaryHandler(String handler)(Code)
Sets the ClientBinaryHandler class that interacts with client sockets. XML Tag: <client-binary-handler></client-binary-handler>
Parameters:
  handler - the fully qualified name of the class that implements org.quickserver.net.server.ClientBinaryHandler
See Also:   BasicServerConfig.getClientBinaryHandler



setClientBinaryHandler
public void setClientBinaryHandler(ClientBinaryHandler handler)(Code)
Sets the ClientBinaryHandler class that interacts with client sockets.
since:
   1.4.6



setClientCommandHandler
public void setClientCommandHandler(String handler)(Code)
Sets the ClientCommandHandler class that interacts with client sockets. XML Tag: <client-command-handler></client-command-handler>
Parameters:
  handler - the fully qualified name of the class that implements org.quickserver.net.server.ClientCommandHandler
See Also:   BasicServerConfig.getClientCommandHandler



setClientCommandHandler
public void setClientCommandHandler(ClientCommandHandler handler)(Code)
Sets the ClientCommandHandler class that interacts with client sockets.
since:
   1.4.6



setClientData
public void setClientData(String data)(Code)
Sets the ClientData class that carries client data. XML Tag: <client-data></client-data>
Parameters:
  data - the fully qualified name of the class that extends org.quickserver.net.server.ClientData.
See Also:   BasicServerConfig.getClientData



setClientData
public void setClientData(ClientData data)(Code)
Sets the ClientData class that carries client data.
since:
   1.4.6



setClientEventHandler
public void setClientEventHandler(String handler)(Code)
Sets the ClientEventHandler class that gets notified of client events. XML Tag: <client-event-handler></client-event-handler>
Parameters:
  handler - the fully qualified name of the class that implements org.quickserver.net.server.ClientEventHandler
See Also:   BasicServerConfig.getClientEventHandler
since:
   1.4.6



setClientEventHandler
public void setClientEventHandler(ClientEventHandler handler)(Code)
Sets the ClientEventHandler class that gets notified of client events.
since:
   1.4.6



setClientExtendedEventHandler
public void setClientExtendedEventHandler(String handler)(Code)
Sets the ClientExtendedEventHandler class that gets notified of client's extended events. XML Tag: <client-extended-event-handler></client-extended-event-handler>
Parameters:
  handler - the fully qualified name of the class that implements org.quickserver.net.server.ClientExtendedEventHandler
See Also:   BasicServerConfig.getClientExtendedEventHandler
since:
   1.4.6



setClientExtendedEventHandler
public void setClientExtendedEventHandler(ClientExtendedEventHandler handler)(Code)
Sets the ClientExtendedEventHandler class that gets notified of client's extended events.
since:
   1.4.6



setClientObjectHandler
public void setClientObjectHandler(String handler)(Code)
Sets the ClientObjectHandler class that interacts with client sockets. XML Tag: <client-object-handler></client-object-handler>
Parameters:
  handler - object the fully qualified name of the class that implements org.quickserver.net.server.ClientObjectHandler
See Also:   BasicServerConfig.getClientObjectHandler



setClientObjectHandler
public void setClientObjectHandler(ClientObjectHandler handler)(Code)
Sets the ClientObjectHandler class that interacts with client sockets.
since:
   1.4.6



setClientWriteHandler
public void setClientWriteHandler(String handler)(Code)
Sets the ClientWriteHandler class that interacts with client sockets. XML Tag: <client-write-handler></client-write-handler>
Parameters:
  handler - the fully qualified name of the class that implements org.quickserver.net.server.ClientWriteHandler
See Also:   BasicServerConfig.getClientWriteHandler
since:
   1.4.5



setClientWriteHandler
public void setClientWriteHandler(ClientWriteHandler handler)(Code)
Sets the ClientWriteHandler class that interacts with client sockets.
since:
   1.4.6



setCommunicationLogging
public void setCommunicationLogging(boolean enable)(Code)
Sets the communication logging flag.
See Also:   BasicServerConfig.getCommunicationLogging
See Also:   XML Tag: <communication-logging><enable>true</enable></communication-logging>
See Also:   Allowed values = true | false
since:
   1.3.2



setConsoleLoggingFormatter
public void setConsoleLoggingFormatter(String formatter)(Code)
Sets the console log handler formatter. XML Tag: <console-logging-formatter></console-logging-formatter>
Parameters:
  formatter - fully qualified name of the class that implements java.util.logging.Formatter



setConsoleLoggingLevel
public void setConsoleLoggingLevel(String level)(Code)
Sets the console log handler level. XML Tag: <console-logging-level></console-logging-level>
Parameters:
  level - like INFO, FINE, CONFIG



setDefaultDataMode
public void setDefaultDataMode(DefaultDataMode defaultDataMode)(Code)
Sets the DefaultDataMode for the QuickServer.
Parameters:
  defaultDataMode - DefaultDataMode object.
See Also:   BasicServerConfig.getDefaultDataMode
since:
   1.4.6



setMaxAuthTry
public void setMaxAuthTry(int authTry)(Code)
Sets maximum allowed login attempts. XML Tag: <max-auth-try></max-auth-try>



setMaxAuthTryMsg
public void setMaxAuthTryMsg(String msg)(Code)
Sets message to be displayed when maximum allowed login attempts has reached. Default is : -ERR Max Auth Try Reached
XML Tag: <max-auth-try-msg></max-auth-try-msg>
See Also:   BasicServerConfig.getMaxAuthTryMsg



setMaxConnection
public void setMaxConnection(long maxConnection)(Code)
Sets the maximum number of client connection allowed.. XML Tag: <max-connection></max-connection>
See Also:   BasicServerConfig.getMaxConnection



setMaxConnectionMsg
public void setMaxConnectionMsg(String maxConnectionMsg)(Code)
Sets the message to be sent to any new client connected after maximum client connection has reached. Default is : -ERR Server Busy. Max Connection Reached
XML Tag: <max-connection-msg></max-connection-msg>
See Also:   BasicServerConfig.getMaxConnectionMsg



setName
public void setName(String name)(Code)
Sets the name for the QuickServer. XML Tag: <name></name>
Parameters:
  name - for the QuickServer
See Also:   BasicServerConfig.getName



setObjectPoolConfig
public void setObjectPoolConfig(ObjectPoolConfig objectPoolConfig)(Code)
Sets the ObjectPool Config object. XML Tag: <object-pool></object-pool>



setPort
public void setPort(int port)(Code)
Sets the port for the QuickServer to listen on. If not set, it will run on Port 9876
XML Tag: <port></port>
Parameters:
  port - to listen on.
See Also:   BasicServerConfig.getPort



setSecure
public void setSecure(Secure secure)(Code)
Sets the Secure setting for QuickServer
since:
   1.4.0



setServerBanner
public void setServerBanner(String banner)(Code)
Sets the serverBanner for the QuickServer that will be displayed on the standard output [console] when server starts. <br> <br> To set welcome message to your client org.quickserver.net.server.ClientEventHandler.gotConnected XML Tag: <server-banner></server-banner>
Parameters:
  banner - for the QuickServer
See Also:   BasicServerConfig.getServerBanner



setServerHooks
public void setServerHooks(ServerHooks serverHooks)(Code)
Sets the ServerHooks
since:
   1.3.3



setServerMode
public void setServerMode(ServerMode serverMode)(Code)
Sets the ServerMode for the QuickServer.
Parameters:
  serverMode - ServerMode object.
See Also:   BasicServerConfig.getServerMode
since:
   1.4.5



setTimeout
public void setTimeout(int time)(Code)
Sets the Client Socket timeout in milliseconds. XML Tag: <timeout></timeout>
Parameters:
  time - client socket timeout in milliseconds.
See Also:   BasicServerConfig.getTimeout



setTimeoutMsg
public void setTimeoutMsg(String msg)(Code)
Sets timeout message. Default is : -ERR Timeout
XML Tag: <timeout-msg></timeout-msg>
See Also:   BasicServerConfig.getTimeoutMsg



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.