You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@slider.apache.org by st...@apache.org on 2014/10/28 13:44:10 UTC

[2/2] git commit: upgrade "use a URI in the api" from a SHOULD to a MUST; fix examples and tests accordingly

 upgrade "use a URI in the api" from a SHOULD to a MUST; fix examples and tests accordingly


Project: http://git-wip-us.apache.org/repos/asf/incubator-slider/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-slider/commit/64836e83
Tree: http://git-wip-us.apache.org/repos/asf/incubator-slider/tree/64836e83
Diff: http://git-wip-us.apache.org/repos/asf/incubator-slider/diff/64836e83

Branch: refs/heads/feature/SLIDER-531-registry-enhancements
Commit: 64836e835adf35d19c75d4e4932ce0c1a158281d
Parents: a4d156b
Author: Steve Loughran <st...@apache.org>
Authored: Mon Oct 27 18:56:25 2014 +0000
Committer: Steve Loughran <st...@apache.org>
Committed: Mon Oct 27 18:56:25 2014 +0000

----------------------------------------------------------------------
 .../registry/info/CustomRegistryConstants.java  | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/64836e83/slider-core/src/main/java/org/apache/slider/core/registry/info/CustomRegistryConstants.java
----------------------------------------------------------------------
diff --git a/slider-core/src/main/java/org/apache/slider/core/registry/info/CustomRegistryConstants.java b/slider-core/src/main/java/org/apache/slider/core/registry/info/CustomRegistryConstants.java
index 67b9feb..0a3476c 100644
--- a/slider-core/src/main/java/org/apache/slider/core/registry/info/CustomRegistryConstants.java
+++ b/slider-core/src/main/java/org/apache/slider/core/registry/info/CustomRegistryConstants.java
@@ -24,31 +24,31 @@ package org.apache.slider.core.registry.info;
 public class CustomRegistryConstants {
 
   public static final String MANAGEMENT_REST_API =
-      "org.apache.slider.management";
+      "classpath:org.apache.slider.management";
   
   public static final String REGISTRY_REST_API =
-      "org.apache.slider.registry";
+      "classpath:org.apache.slider.registry";
   
   public static final String PUBLISHER_REST_API =
-      "org.apache.slider.publisher";
+      "classpath:org.apache.slider.publisher";
 
   public static final String PUBLISHER_CONFIGURATIONS_API =
-      "org.apache.slider.publisher.configurations";
+      "classpath:org.apache.slider.publisher.configurations";
 
   public static final String PUBLISHER_EXPORTS_API =
-      "org.apache.slider.publisher.exports";
+      "classpath:org.apache.slider.publisher.exports";
 
   public static final String PUBLISHER_DOCUMENTS_API =
-      "org.apache.slider.publisher.documents";
+      "classpath:org.apache.slider.publisher.documents";
 
   public static final String AGENT_SECURE_REST_API =
-      "org.apache.slider.agents.secure";
+      "classpath:org.apache.slider.agents.secure";
 
   public static final String AGENT_ONEWAY_REST_API =
-      "org.apache.slider.agents.oneway";
+      "classpath:org.apache.slider.agents.oneway";
 
   public static final String AM_IPC_PROTOCOL =
-      "org.apache.slider.appmaster";
+      "classpath:org.apache.slider.appmaster";
 
-  public static final String WEB_UI = "org.apache.http.UI";
+  public static final String WEB_UI = "http://";
 }