summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp')
-rw-r--r--cpp/slice/Ice/Process.ice48
-rw-r--r--cpp/slice/Ice/ProcessF.ice25
2 files changed, 0 insertions, 73 deletions
diff --git a/cpp/slice/Ice/Process.ice b/cpp/slice/Ice/Process.ice
deleted file mode 100644
index dd9369809bc..00000000000
--- a/cpp/slice/Ice/Process.ice
+++ /dev/null
@@ -1,48 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2004
-// 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_PROCESS_ICE
-#define ICE_PROCESS_ICE
-
-module Ice
-{
-
-/**
- *
- * An administrative interface for process management. Managed servers must
- * implement this interface and invoke [ObjectAdapter::setProcess] to register
- * the process proxy.
- *
- * <note><para> A servant implementing this interface is a potential target
- * for denial-of-service attacks, therefore proper security precautions
- * should be taken. For example, the servant can use a UUID to make its
- * identity harder to guess, and be registered in an object adapter with
- * a secured endpoint.</para></note>
- *
- **/
-interface Process
-{
- /**
- *
- * Initiate a graceful shutdown.
- *
- * @see Communicator::shutdown
- *
- **/
- idempotent void shutdown();
-};
-
-};
-
-#endif
diff --git a/cpp/slice/Ice/ProcessF.ice b/cpp/slice/Ice/ProcessF.ice
deleted file mode 100644
index f78db5c617e..00000000000
--- a/cpp/slice/Ice/ProcessF.ice
+++ /dev/null
@@ -1,25 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2004
-// 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_PROCESS_F_ICE
-#define ICE_PROCESS_F_ICE
-
-module Ice
-{
-
-interface Process;
-
-};
-
-#endif