summaryrefslogtreecommitdiff
path: root/TAO/tao/PortableServer/ImR_Locator.pidl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/PortableServer/ImR_Locator.pidl')
-rw-r--r--TAO/tao/PortableServer/ImR_Locator.pidl86
1 files changed, 0 insertions, 86 deletions
diff --git a/TAO/tao/PortableServer/ImR_Locator.pidl b/TAO/tao/PortableServer/ImR_Locator.pidl
deleted file mode 100644
index 3dbd54e6eda..00000000000
--- a/TAO/tao/PortableServer/ImR_Locator.pidl
+++ /dev/null
@@ -1,86 +0,0 @@
-// -*- IDL -*-
-
-//=============================================================================
-/**
- * @file ImR_Locator.pidl
- *
- * $Id$
- *
- * This file was used to generate the code in ImplRepo{C,S}.{h,i,cpp}
- *
- * The command used to generate code from this file is:
- *
- * tao_idl.exe -Gp -Gd -Ge 1 -Sc -GT -Wb,export_macro=TAO_PortableServer_Export -Wb,export_include=portableserver_export.h -Wb,pre_include="ace/pre.h" -Wb,post_include="ace/post.h" ImR_Locator.pidl
- *
- * After generation is complete you must remove unneeded explicit instantiations
- * from ImR_LocatorC.cpp to avoid duplicate symbols on some platforms.
- *
- */
-//=============================================================================
-
-#include "ImplRepo.pidl"
-
-module ImplementationRepository
-{
- interface Locator : Administration
- {
- typedef sequence <string> ServerNameList;
-
- void activate_server_in_activator (in string server,
- in string activator)
- raises (NotFound,
- CannotActivate);
- // Activate server that is named <server> in the ImR_Activator <activator>
- //
- // The <NotFound> exception is raised when <server> is not found
- // in the Implementation Repository. The <CannotActivate> exception
- // is raised when <server> is found in the Repository but could not be
- // activated.
-
- void remove_server_in_activator (in string server,
- in string activator)
- raises (NotFound);
- // Remove <server> from the Implementation Repository.
- //
- // The <NotFound> exception is raised when <server> is not found
- // in the Implementation Repository.
-
- void shutdown_server_in_activator (in string server,
- in string activator)
- raises (NotFound);
- // Tries to shutdown the server, first gracefully, then ungracefully.
- //
- // The <NotFound> exception is raised when <server> is not found
- // in the Implementation Repository.
-
- void server_is_shutting_down_in_activator (in string server,
- in string activator)
- raises (NotFound);
- // Used to tell the Implementation Repository that <server> is shutting
- // down.
- //
- // The <NotFound> exception is raised when <server> is not found
- // in the Implementation Repository.
-
- long register_activator (in string activator,
- in Administration admin,
- in ServerNameList servers);
- // returns a token that can be used (along with activator name) to unregister the activator.
-
- void unregister_activator (in string activator, in long token);
- // You must pass in the token returned from register_activator.
-
- void server_is_running_in_activator (in string server,
- in string activator,
- in Address addr,
- in ServerObject server_object)
- raises (NotFound);
-
- void find_in_activator (in string server,
- in string activator,
- out ServerInformation info)
- raises (NotFound);
- };
-
-};
-