org.cougaar.core.service

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 » Science » Cougaar12_4 » org.cougaar.core.service 
org.cougaar.core.service
This package contains the Cougaar primary core service APIs.

The general rule is to place service APIs in "org.cougaar.core.service" if they are used by many clients (e.g. the {@link org.cougaar.core.service.BlackboardService}) or if the implementation is defined in an external module (e.g. the {@link org.cougaar.core.service.MessageTransportService}).

However, for legacy reasons, there are several exceptions to this rule that could be refactored, such as the commonly-used {@link org.cougaar.core.node.NodeControlService} and restricted {@link org.cougaar.core.service.DomainForBlackboardService}.

For more detail, see the Cougaar Developers' Guide.

Java Source File NameTypeComment
AgentContainmentService.javaInterface This service allows a component to add/remove components from its agent.
AgentIdentificationService.javaInterface This service provides the local agent's MessageAddress .
AgentQuiescenceStateService.javaInterface This service allows a component to query the agents registered with the node's QuiescenceReportService and mark agents as dead (ignorable) when they have been restarted on another node.
AlarmService.javaInterface This service provides access to the time-based alarm services (real-time and execution-time).
AppletService.javaInterface This service provides access to Applet methods, and is only available if the node was launched from within a browser java.applet.Applet .

There are dozens of Applet methods, including all methods defined in AWT "Component".

BlackboardMetricsService.javaInterface This service provides primitive blackboard metrics.
BlackboardQueryService.javaInterface This service offers a lightweight query-only version of BlackboardService .
BlackboardService.javaInterface This service provides transactional publish/subscribe access to the local agent's blackboard.
BlackboardTimestampService.javaInterface This service tracks timestamps for the ADD ( BlackboardService.publishAdd ) and the more recent modification ( BlackboardService.publishChange ) of org.cougaar.core.util.UniqueObject s.
ConditionService.javaInterface This service is used by the org.cougaar.core.adaptivity.AdaptivityEngine to look up sensor data on the blackboard.
ConfigurationService.javaInterface This service provides access to the file system by searching the configuration path.

The standard implementation is backed by the org.cougaar.util.ConfigFinder .

DataProtectionKey.javaInterface An interface used by the DataProtectionService .
DataProtectionKeyEnvelope.javaInterface Implementations of this interface contain a secret key used to encrypt/decrypt persisted data.
DataProtectionService.javaInterface This service is used by persistence to sign/encrypt an OutputStream and verify/decrypt an InputStream .
DataProtectionServiceClient.javaInterface Required service requestor API for DataProtectionService clients.
DemoControlService.javaInterface This service controls the execution time in AlarmService.currentTimeMillis and AlarmService.addAlarm .
DomainForBlackboardService.javaInterface This service is an extended DomainService for the Blackboard 's use.
DomainService.javaInterface This service provides access to org.cougaar.core.domain.Domain object org.cougaar.core.domain.Factory s.
EventService.javaInterface This service is used to log assessment events.

Events are intended for external profiling and monitoring applications and often follow a strict application-defined syntax.

IncarnationService.javaInterface This service tracks agent incarnation numbers, which are updated every time the agent restarts (excluding agent mobility).
JvmStackDumpService.javaInterface This service requests a JVM-wide stack dump.

Access to this service will likely be restricted to a limited subset of node-agent components.

LoggingService.javaInterface This Service provides a generic logging API.
MessageProtectionService.javaInterface This service is used to cryptographically protect incoming and outgoing messages.
MessageStatisticsService.javaInterface This service provides message transport statistics, such as the total number of messages sent by the local node.
MessageTransportService.javaInterface This service is the node-level message transport that agents use to send and receive messages.
MessageWatcherService.javaInterface This service allows components to watch message send/receive activity.
NodeMetricsService.javaInterface This service provides simple node-level metrics.
OperatingModeService.javaInterface This service is used by the org.cougaar.core.adaptivity.AdaptivityEngine to find OperatingMode s on the blackboard.
PersistenceControlService.javaInterface This service can be used to view and modify persistence settings.
PersistenceMetricsService.javaInterface This service provides metrics for recent persistence activity, such as the most recent snapshot size in bytes.
PlaybookConstrainService.javaInterface This service allows components to modify org.cougaar.core.adaptivity.AdaptivityEngine plays and playbooks.
PlaybookReadService.javaInterface This service is used by the org.cougaar.core.adaptivity.AdaptivityEngine to get the list of current plays.
QuiescenceReportForDistributorService.javaInterface This service is used by the org.cougaar.core.blackboard.Distributor to tell the node when a local agent is quiescent or not.
QuiescenceReportService.javaInterface This service is used by components to tell the node the initial quiescence numbering and to toggle between quiescence and non-quiescence.

"Quiescence" is partially a node-local concept, where all local agents have completed processing, and a society-wide concept, where all inter-agent messages have been delivered.

SchedulerService.javaInterface This service is used to schedule plugins for thread execution.
ServletService.javaInterface This service can be used to register a Servlet for all HTTP requests that match a specified String path.

This is analogous to a java.util.Map:

 - register with "put(name, value)"
 - unregister with "remove(name)"
 - unregister-all with "clear()"
 

"unregisterAll" is called automatically when this service is released back to the ServiceBroker.

SocketFactoryService.javaInterface This service is used to get a socket factory, such as an java.rmi.server.RMISocketFactory .
SuicideService.javaInterface This service is used to tell the agent (or node) to exit, for example due to an java.lang.OutOfMemoryError .
ThreadControlService.javaInterface This service controls the ThreadService .
ThreadListenerService.javaInterface This service allows components to watch ThreadService activity.
ThreadService.javaInterface This service provides a Schedulable s to execute a Runnable.run method within a pooled thread.

The "consumer" is typically the service requestor.

The "lane" is an option parameter that differentiates service based on expected thread use, e.g.

UIDServer.javaInterface This service is the backwards-compatible API for the UIDService .
UIDService.javaInterface This service provides org.cougaar.core.util.UID s, which are globally unique object identifiers.
WebServicesService.javaInterface This service allows a component to register a WSDD (Web Services Deployment Descriptor) to receive remote Web Services XML-based calls.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.