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/11/02 15:26:02 UTC

[50/50] 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/b51f5811
Tree: http://git-wip-us.apache.org/repos/asf/incubator-slider/tree/b51f5811
Diff: http://git-wip-us.apache.org/repos/asf/incubator-slider/diff/b51f5811

Branch: refs/heads/feature/SLIDER-531-registry-enhancements
Commit: b51f581124644482eeb71e202459b1259cd58f8c
Parents: 0161b59
Author: Steve Loughran <st...@apache.org>
Authored: Mon Oct 27 18:56:25 2014 +0000
Committer: Steve Loughran <st...@apache.org>
Committed: Sun Nov 2 14:14:08 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/b51f5811/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://";
 }