blob: 4bb9d549763796557b867b7fabcd5fe284c6c7aa (
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
|
// **********************************************************************
//
// Copyright (c) 2003-2004 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#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
|