summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/LifeCycle_Service/Life_Cycle_Service_Impl.h
blob: 3d30d38bd568e66f4c4f6437b0ca3e615730d37c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// $Id$

// ============================================================================
//
// = FILENAME
//    Life_Cycle_Service_Impl.h
//
// = DESCRIPTION
//    A Life Cycle Service for the Quoter example.
//
// = AUTHOR
//    Michael Kircher (mk1@cs.wustl.edu)
//
// ============================================================================

#include "orbsvcs/LifeCycleServiceS.h"
#include "Factory_Trader.h"
#include "Criteria_Evaluator.h"

#if !defined (LIFE_CYCLE_SERVICE_IMPL_H)
#define LIFE_CYCLE_SERVICE_IMPL_H

class Life_Cycle_Service_Impl : public POA_LifeCycleService::Life_Cycle_Service
{
  // = TILE
  //   A CosLifeCycle conforming Generic Factory.

public:
  Life_Cycle_Service_Impl (void);
  ~Life_Cycle_Service_Impl (void);

  CORBA::Boolean supports (const CosLifeCycle::Key &factory_key,
                           CORBA::Environment &_env_there);
  // Returns true if the Generic Factory is able to forward a request
  // for creating an object described by the <factory_key>.

  CORBA::Object_ptr create_object (const CosLifeCycle::Key &factory_key, 
                                   const CosLifeCycle::Criteria &the_criteria,
                                   CORBA::Environment &_env_there);
  // Returns an object reference to a newly created object, though the
  // Generic Factory itself cannot create objects, it will forward the
  // request to a more concrete Factory.

  void register_factory (const char * name,
			 const char * location,
			 const char * description,
			 CORBA::Object_ptr object,
			 CORBA::Environment &_env_there);
  // Registers a factory with specified properties

private:
  Factory_Trader *factory_trader_ptr_;  
};

#endif /* LIFE_CYCLE_SERVICE_IMPL_H */