Java Doc for CloudContext.java in  » Database-ORM » MMBase » org » mmbase » bridge » 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 » Database ORM » MMBase » org.mmbase.bridge 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.mmbase.bridge.CloudContext

All known Subclasses:   org.mmbase.bridge.implementation.BasicCloudContext,
CloudContext
public interface CloudContext (Code)
The collection of clouds and modules within a Java Virtual Machine.
author:
   Rob Vermeulen
author:
   Pierre van Rooden
author:
   Jaco de Groot
version:
   $Id: CloudContext.java,v 1.33 2008/02/16 22:13:53 nklasens Exp $




Method Summary
public  voidassertUp()
     Assert whether MMbase is up and running.
public  FieldListcreateFieldList()
    
public  ModuleListcreateModuleList()
    
public  NodeListcreateNodeList()
     Returns a new, empty node list.
public  NodeManagerListcreateNodeManagerList()
     Returns a new, empty node manager list Note that it is generally better to use Cloud.createNodeManagerList .
public  RelationListcreateRelationList()
     Returns a new, empty relation list Note that it is generally better to use Cloud.createRelationList or NodeManager.createRelationList .
public  RelationManagerListcreateRelationManagerList()
     Returns a new, empty relation manager list Note that it is generally better to use Cloud.createRelationManagerList .
public  StringListcreateStringList()
    
public  ActionRepositorygetActionRepository()
    
public  AuthenticationDatagetAuthentication()
     Acquired information about the currently configuration Authentication implementation.
public  CloudgetCloud(String name)
     Returns the cloud with the specified name.
Parameters:
  name - The name of the cloud to be returned, this is always "mmbase".
public  CloudgetCloud(String name, String authenticationType, Map loginInfo)
     Returns the cloud with the specified name, with authentication
Parameters:
  name - The name of the cloud to be returned, always "mmbase".
Parameters:
  authenticationType - The type of authentication, which should beused by the authentication implementation.
Parameters:
  loginInfo - the user related login information.
public  CloudgetCloud(String name, org.mmbase.security.UserContext user)
     Returns the cloud with the specified name, based on an existing User object (e.g.
public  StringListgetCloudNames()
    
public  StringgetDefaultCharacterEncoding()
     Returns the default character encoding, which can be used as a default.
public  java.util.LocalegetDefaultLocale()
     Returns the default locale setting.
public  java.util.TimeZonegetDefaultTimeZone()
     Returns the default time zone.
public  ModulegetModule(String name)
     Returns the module with the specified name.
public  ModuleListgetModules()
     Returns all modules available in this context.
public  booleanhasModule(String name)
     Returns whether the module with the specified name is available.
public  booleanisUp()
    



Method Detail
assertUp
public void assertUp()(Code)
Assert whether MMbase is up and running. This will wait until it is.
since:
   MMBase-1.8



createFieldList
public FieldList createFieldList()(Code)
Returns a new, empty field list The empty list
since:
   MMBase-1.6



createModuleList
public ModuleList createModuleList()(Code)
Returns a new, empty module list The empty list
since:
   MMBase-1.6



createNodeList
public NodeList createNodeList()(Code)
Returns a new, empty node list. Note that it is generally better to use Cloud.createNodeList or NodeManager.createNodeList . The empty list
since:
   MMBase-1.6



createNodeManagerList
public NodeManagerList createNodeManagerList()(Code)
Returns a new, empty node manager list Note that it is generally better to use Cloud.createNodeManagerList . The empty list
since:
   MMBase-1.6



createRelationList
public RelationList createRelationList()(Code)
Returns a new, empty relation list Note that it is generally better to use Cloud.createRelationList or NodeManager.createRelationList . The empty list
since:
   MMBase-1.6



createRelationManagerList
public RelationManagerList createRelationManagerList()(Code)
Returns a new, empty relation manager list Note that it is generally better to use Cloud.createRelationManagerList . The empty list
since:
   MMBase-1.6



createStringList
public StringList createStringList()(Code)
Returns a new, empty string list The empty list
since:
   MMBase-1.6



getActionRepository
public ActionRepository getActionRepository()(Code)
Returns the Repository with actions Repository with actions
since:
   MMBase-1.9



getAuthentication
public AuthenticationData getAuthentication()(Code)
Acquired information about the currently configuration Authentication implementation. current Authentication information
since:
   MMBase-1.8



getCloud
public Cloud getCloud(String name)(Code)
Returns the cloud with the specified name.
Parameters:
  name - The name of the cloud to be returned, this is always "mmbase". The requested cloud
throws:
  NotFoundException - if the specified cloud could not be found
throws:
  SecurityException - if no anonymous user can be created



getCloud
public Cloud getCloud(String name, String authenticationType, Map loginInfo) throws NotFoundException(Code)
Returns the cloud with the specified name, with authentication
Parameters:
  name - The name of the cloud to be returned, always "mmbase".
Parameters:
  authenticationType - The type of authentication, which should beused by the authentication implementation.
Parameters:
  loginInfo - the user related login information. the requested cloud
throws:
  NotFoundException - if the specified cloud could not be found



getCloud
public Cloud getCloud(String name, org.mmbase.security.UserContext user) throws NotFoundException(Code)
Returns the cloud with the specified name, based on an existing User object (e.g. of another Cloud.getUser
Parameters:
  name - The name of the cloud to be returned, always "mmbase".
Parameters:
  user - The user object for which this cloud object must be created. the requested cloud
throws:
  NotFoundException - thrown when cloud not found
since:
   MMBase-1.8



getCloudNames
public StringList getCloudNames()(Code)
Returns the names of all the clouds known to the system A StringList of all clouds names known to our Context



getDefaultCharacterEncoding
public String getDefaultCharacterEncoding()(Code)
Returns the default character encoding, which can be used as a default. A string with the character encoding
since:
   MMBase-1.6



getDefaultLocale
public java.util.Locale getDefaultLocale()(Code)
Returns the default locale setting. A Locale object
since:
   MMBase-1.6



getDefaultTimeZone
public java.util.TimeZone getDefaultTimeZone()(Code)
Returns the default time zone. the default time zone
since:
   MMBase-1.8



getModule
public Module getModule(String name) throws NotFoundException(Code)
Returns the module with the specified name.
Parameters:
  name - the name of the module to be returned the requested module
throws:
  NotFoundException - if the specified module could not be found



getModules
public ModuleList getModules()(Code)
Returns all modules available in this context. all available modules



hasModule
public boolean hasModule(String name)(Code)
Returns whether the module with the specified name is available.
Parameters:
  name - the name of the module true if the module is available



isUp
public boolean isUp()(Code)
Returns whether MMbase is up and running true when mmbase is running
since:
   MMBase-1.8



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