diff options
author | Bernard Normier <bernard@zeroc.com> | 2006-12-05 21:41:56 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2006-12-05 21:41:56 +0000 |
commit | 32ce352f077d3be34105d4645bfd8ddc4572c45c (patch) | |
tree | 5854cc9d4bcdaf4c479eb85aa21d9e4656458e65 /cpp | |
parent | Fixed compile errors (diff) | |
download | ice-32ce352f077d3be34105d4645bfd8ddc4572c45c.tar.bz2 ice-32ce352f077d3be34105d4645bfd8ddc4572c45c.tar.xz ice-32ce352f077d3be34105d4645bfd8ddc4572c45c.zip |
Fix for bug #1574
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/slice/IceGrid/Admin.ice | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/cpp/slice/IceGrid/Admin.ice b/cpp/slice/IceGrid/Admin.ice index 3c46754154b..52a96dc53b1 100644 --- a/cpp/slice/IceGrid/Admin.ice +++ b/cpp/slice/IceGrid/Admin.ice @@ -381,7 +381,7 @@ interface Admin * failed. * **/ - void addApplication(ApplicationDescriptor descriptor) + ["ami"] void addApplication(ApplicationDescriptor descriptor) throws AccessDeniedException, DeploymentException; /** @@ -403,7 +403,7 @@ interface Admin * doesn't exist. * **/ - void syncApplication(ApplicationDescriptor descriptor) + ["ami"] void syncApplication(ApplicationDescriptor descriptor) throws AccessDeniedException, DeploymentException, ApplicationNotExistException; /** @@ -424,7 +424,7 @@ interface Admin * doesn't exist. * **/ - void updateApplication(ApplicationUpdateDescriptor descriptor) + ["ami"] void updateApplication(ApplicationUpdateDescriptor descriptor) throws AccessDeniedException, DeploymentException, ApplicationNotExistException; /** @@ -441,7 +441,7 @@ interface Admin * doesn't exist. * **/ - void removeApplication(string name) + ["ami"] void removeApplication(string name) throws AccessDeniedException, DeploymentException, ApplicationNotExistException; /** @@ -712,7 +712,7 @@ interface Admin * by the target server. * **/ - void sendSignal(string id, string signal) + ["ami"] void sendSignal(string id, string signal) throws ServerNotExistException, NodeUnreachableException, DeploymentException, BadSignalException; /** @@ -735,7 +735,7 @@ interface Admin * deployed on the node. * **/ - void writeMessage(string id, string message, int fd) + ["ami"] void writeMessage(string id, string message, int fd) throws ServerNotExistException, NodeUnreachableException, DeploymentException; /** @@ -803,7 +803,7 @@ interface Admin * get the object type failed. * **/ - void addObject(Object* obj) + ["ami"] void addObject(Object* obj) throws ObjectExistsException, DeploymentException; /** @@ -839,7 +839,7 @@ interface Admin * registered. * **/ - void addObjectWithType(Object* obj, string type) + ["ami"] void addObjectWithType(Object* obj, string type) throws ObjectExistsException, DeploymentException; /** |