Java Doc for QSAdminServer.java in  » Net » QuickServer » org » quickserver » net » qsadmin » 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.net.qsadmin 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.quickserver.net.qsadmin.QSAdminServer

QSAdminServer
public class QSAdminServer (Code)
QSAdminServer Main class.

This is can be used to setup a admin server to a org.quickserver.net.server.QuickServer , it is implemented as a QuickServer. org.quickserver.net.server.QuickServer comes with a very use full method org.quickserver.net.server.QuickServer.startQSAdminServer that creates QSAdminServer associated with itself and starts it at the specified port or the default port 9877.


See Also:   QSAdminServer.startServer()
since:
   1.1



Constructor Summary
public  QSAdminServer(QuickServer controlServer)
     Creates QSAdminServer with default settings.

Method Summary
public  StringgetCommandPlugin()
     Returns the CommandPlugin class which plugs into CommandHandler of QsAdminServer,it will be null if not set.
public  QuickServergetControlServer()
     Returns the QuickServer object that is being controled by this QSAdminServer.
public  StringgetPromptName()
    
public  QuickServergetServer()
     Returns the QuickServer object that created it.
public static  StringgetVersion()
    
public  booleanisShellEnable()
     Returns flag indicated if command shell is enabled.
public  voidsetAuthenticator(String authenticator)
     Sets the Authenticator class that handles the authentication of a client, if null uses default Authenticator .
public  voidsetClientAuthenticationHandler(String authenticator)
     Sets the ClientAuthenticationHandler class that handles the authentication of a client, if null uses default Authenticator .
public  voidsetCommandPlugin(String pluginClass)
     Sets the CommandPlugin class which plugs into CommandHandler of QsAdminServer.
public  voidsetPromptName(String promptName)
    
public  voidsetShellEnable(boolean flag)
     Sets the flag indicated if command shell is enabled.
public  voidstartServer(int port)
     Starts the QSAdminServer.
public  voidstartServer()
     Starts the QSAdminServer. This method also sets the 'Store Objects' of QSAdminServer's QuickServer to the following
 POS 0 = QuickServer that is controled.
 POS 1 = Command Plugin if present for QSAdminServer's CommandHandler
 POS 3 = QSAdminServer own reference object.


Constructor Detail
QSAdminServer
public QSAdminServer(QuickServer controlServer)(Code)
Creates QSAdminServer with default settings. By default it has been set to allow only 1 client connection to it and binds to 127.0.0.1.
Parameters:
  controlServer - QuickServer to control.




Method Detail
getCommandPlugin
public String getCommandPlugin()(Code)
Returns the CommandPlugin class which plugs into CommandHandler of QsAdminServer,it will be null if not set.
since:
   1.2



getControlServer
public QuickServer getControlServer()(Code)
Returns the QuickServer object that is being controled by this QSAdminServer.



getPromptName
public String getPromptName()(Code)
Gets the prompt name for QSAdminShell
since:
   1.3.2



getServer
public QuickServer getServer()(Code)
Returns the QuickServer object that created it.



getVersion
public static String getVersion()(Code)



isShellEnable
public boolean isShellEnable()(Code)
Returns flag indicated if command shell is enabled.
since:
   1.3.2



setAuthenticator
public void setAuthenticator(String authenticator)(Code)
Sets the Authenticator class that handles the authentication of a client, if null uses default Authenticator .
Parameters:
  authenticator - full class name of the class that implements org.quickserver.net.server.Authenticator.
since:
   1.3



setClientAuthenticationHandler
public void setClientAuthenticationHandler(String authenticator)(Code)
Sets the ClientAuthenticationHandler class that handles the authentication of a client, if null uses default Authenticator .
Parameters:
  authenticator - full class name of the class that implements org.quickserver.net.server.ClientAuthenticationHandler.
since:
   1.4.6



setCommandPlugin
public void setCommandPlugin(String pluginClass) throws Exception(Code)
Sets the CommandPlugin class which plugs into CommandHandler of QsAdminServer. It should be set before QSAdminServer is started. Or QSAdminServer must be restarted.
Parameters:
  pluginClass - the fully qualified name of the desired class that implements CommandPlugin if could not load the class
since:
   1.2



setPromptName
public void setPromptName(String promptName)(Code)
Set the prompt name for QSAdminShell Default values = QSAdmin
since:
   1.3.2



setShellEnable
public void setShellEnable(boolean flag)(Code)
Sets the flag indicated if command shell is enabled.
since:
   1.3.2



startServer
public void startServer(int port) throws AppException(Code)
Starts the QSAdminServer.
Parameters:
  port - to run QSAdminServer on



startServer
public void startServer() throws AppException(Code)
Starts the QSAdminServer. This method also sets the 'Store Objects' of QSAdminServer's QuickServer to the following
 POS 0 = QuickServer that is controled.
 POS 1 = Command Plugin if present for QSAdminServer's CommandHandler
 POS 3 = QSAdminServer own reference object. 

since:
   1.2



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.