blob: c183aa52d1b82b94af78170eea32a5b4cd23d3ca (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
// **********************************************************************
//
// Copyright (c) 2003
// ZeroC, Inc.
// Billerica, MA, USA
//
// All Rights Reserved.
//
// Ice is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License version 2 as published by
// the Free Software Foundation.
//
// **********************************************************************
#ifndef ICE_PACK_QUERY_ICE
#define ICE_PACK_QUERY_ICE
#include <Ice/Identity.ice>
#include <Ice/BuiltinSequences.ice>
#include <IcePack/Exception.ice>
/**
*
* &IcePack; is a server activation and deployment tool. &IcePack;,
* simplifies the complex task of deploying applications in a
* heterogenous computer network.
*
**/
module IcePack
{
/**
*
* The &IcePack; query interface. This interface is accessible to
* &Ice; clients who wish to lookup objects.
*
**/
interface Query
{
/**
*
* Find an object by identity.
*
* @param id The identity.
*
* @return The proxy.
*
* @throws ObjectNotExistException Raised if no objects can be
* found.
*
**/
nonmutating Object* findObjectById(Ice::Identity id)
throws ObjectNotExistException;
/**
*
* Find an object by type.
*
* @param type The object type.
*
* @return The proxy.
*
* @throws ObjectNotExistException Raised if no objects can be
* found.
*
**/
nonmutating Object* findObjectByType(string type)
throws ObjectNotExistException;
/**
*
* Find all the objects with the given type.
*
* @param type The object type.
*
* @return The proxies.
*
* @throws ObjectNotExistException Raised if no objects can be
* found.
*
**/
nonmutating Ice::ObjectProxySeq findAllObjectsWithType(string type)
throws ObjectNotExistException;
};
};
#endif
|