Java Doc for ServiceUserPlugin.java in  » Science » Cougaar12_4 » org » cougaar » core » plugin » 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 » Science » Cougaar12_4 » org.cougaar.core.plugin 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.cougaar.core.plugin.ComponentPlugin
   org.cougaar.core.plugin.ServiceUserPlugin

All known Subclasses:   org.cougaar.planning.plugin.adaptivity.TaskRateSensorPlugin,  org.cougaar.core.adaptivity.ThreatconTestPlugin,  org.cougaar.core.persist.Exercise,  org.cougaar.core.plugin.freeze.FreezePlugin,  org.cougaar.core.adaptivity.MetricsTestPlugin,  org.cougaar.planning.plugin.completion.CompletionPlugin,  org.cougaar.core.adaptivity.CPUTestPlugin,  org.cougaar.core.adaptivity.LateOperatingModePlugin,  org.cougaar.core.persist.PersistenceControlPlugin,  org.cougaar.core.adaptivity.CPURemoteTestPlugin,  org.cougaar.core.adaptivity.PolicyTestPlugin,  org.cougaar.core.adaptivity.AdaptivityEngine,  org.cougaar.core.persist.PersistenceMetricsServlet,  org.cougaar.planning.plugin.adaptivity.TaskSensorPlugin,
ServiceUserPlugin
abstract public class ServiceUserPlugin extends ComponentPlugin (Code)
This component is a convenience base class for plugins that need to acquire services that may not be immediately available when first started.

Records the service classes needed and attempts acquire them on request. Also provides timer services.

Instead of using this class, consider using a org.cougaar.core.component.ServiceAvailableListener .



Field Summary
protected  LoggingServicelogger
    

Constructor Summary
protected  ServiceUserPlugin(Class[] serviceClasses)
    

Method Summary
protected  booleanacquireServices()
     Test if all services specified in the constructor are available. Sub-classes should call this method from their setupSubscriptions and execute methods until it returns true.
protected  voidcancelTimer()
     Cancel the timer.
protected  AlarmgetTimer()
    
protected  longgetTimerExpirationTime()
    
protected  booleanhasUnexpiredTimer()
     Returns true IFF there is an unexpired timer.
public  voidload()
    
protected  voidresetTimer(long delay)
    
protected  voidstartTimer(long delay)
    
protected  booleantimerExpired()
     Test if the timer has expired.
public  voidunload()
    

Field Detail
logger
protected LoggingService logger(Code)




Constructor Detail
ServiceUserPlugin
protected ServiceUserPlugin(Class[] serviceClasses)(Code)
Constructor
Parameters:
  serviceClasses - the service classes needed for this pluginto operate.




Method Detail
acquireServices
protected boolean acquireServices()(Code)
Test if all services specified in the constructor are available. Sub-classes should call this method from their setupSubscriptions and execute methods until it returns true. Once this method returns true, the services should be requested and normal operation started. Once all the services are available, this method simply returns true. See haveServices() in org.cougaar.core.adaptivity.ConditionServiceProvider.execute ConditionServiceProvider for a typical usage pattern.



cancelTimer
protected void cancelTimer()(Code)
Cancel the timer.



getTimer
protected Alarm getTimer()(Code)
access the timer itself (if any)



getTimerExpirationTime
protected long getTimerExpirationTime()(Code)
When will (has) the timer expire



hasUnexpiredTimer
protected boolean hasUnexpiredTimer()(Code)
Returns true IFF there is an unexpired timer.



load
public void load()(Code)
Override to get a logger on load



resetTimer
protected void resetTimer(long delay)(Code)
Schedule a update wakeup after some interval of time
Parameters:
  delay - how long to delay before the timer expires.



startTimer
protected void startTimer(long delay)(Code)
Schedule a update wakeup after some interval of time
Parameters:
  delay - how long to delay before the timer expires.



timerExpired
protected boolean timerExpired()(Code)
Test if the timer has expired. false if the timer is not running or has not yet expiredelse return true.



unload
public void unload()(Code)
Override to release a logger on load



Methods inherited from org.cougaar.core.plugin.ComponentPlugin
abstract protected void execute()(Code)(Java Doc)
protected ConfigFinder getConfigFinder()(Code)(Java Doc)
abstract protected void setupSubscriptions()(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.