summaryrefslogtreecommitdiff
path: root/ACE/apps/JAWS/clients/Caching/URL_Locator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/apps/JAWS/clients/Caching/URL_Locator.cpp')
-rw-r--r--ACE/apps/JAWS/clients/Caching/URL_Locator.cpp52
1 files changed, 52 insertions, 0 deletions
diff --git a/ACE/apps/JAWS/clients/Caching/URL_Locator.cpp b/ACE/apps/JAWS/clients/Caching/URL_Locator.cpp
new file mode 100644
index 00000000000..e7f6fb6c05b
--- /dev/null
+++ b/ACE/apps/JAWS/clients/Caching/URL_Locator.cpp
@@ -0,0 +1,52 @@
+// $Id$
+
+#if !defined (ACE_URL_LOCATOR_C)
+#define ACE_URL_LOCATOR_C
+
+#include "URL_Locator.h"
+
+ACE_RCSID(Caching, URL_Locator, "$Id$")
+
+const char * const
+ACE_URL_Locator::opname[] =
+// Human readable operation name
+{
+ "Query",
+ "Export",
+ "Withdraw",
+ "Describe",
+ "Modify",
+ "Invalid Operation"
+};
+
+const char * const
+ACE_URL_Locator::selection_name[] =
+{
+ "None",
+ "Some",
+ "All",
+ "Invalid Selection"
+};
+
+const char * const
+ACE_URL_Locator::err_name[] =
+{
+ "No error",
+ "Offer already exist",
+ "no such offer",
+ "invalid argument",
+ "function not implemented",
+ "unknown error"
+};
+
+ACE_URL_Locator::~ACE_URL_Locator (void)
+{
+}
+
+const char *
+ACE_URL_Locator::error_status (void)
+{
+ return "Not implemented yet.";
+}
+
+#endif /* ACE_URL_LOCATOR_C */