SLIDER-320 rename registration action

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

Branch: refs/heads/feature/SLIDER-151_REST_API
Commit: 41e0c5bec76a922479147642f2132cb17d66615d
Parents: 95dcbc9
Author: Steve Loughran <ste...@apache.org>
Authored: Fri Aug 15 14:28:06 2014 +0100
Committer: Steve Loughran <ste...@apache.org>
Committed: Fri Aug 15 14:28:06 2014 +0100

----------------------------------------------------------------------
 .../actions/PublishEndpointDetails.java         | 45 --------------------
 .../actions/PublishRegistryDetails.java         | 45 ++++++++++++++++++++
 2 files changed, 45 insertions(+), 45 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/41e0c5be/slider-core/src/main/java/org/apache/slider/server/appmaster/actions/PublishEndpointDetails.java
----------------------------------------------------------------------
diff --git 
a/slider-core/src/main/java/org/apache/slider/server/appmaster/actions/PublishEndpointDetails.java
 
b/slider-core/src/main/java/org/apache/slider/server/appmaster/actions/PublishEndpointDetails.java
deleted file mode 100644
index 67198a2..0000000
--- 
a/slider-core/src/main/java/org/apache/slider/server/appmaster/actions/PublishEndpointDetails.java
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements.  See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership.  The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package org.apache.slider.server.appmaster.actions;
-
-import org.apache.hadoop.yarn.api.records.ContainerId;
-import org.apache.slider.server.appmaster.SliderAppMaster;
-import org.apache.slider.server.appmaster.state.AppState;
-
-import java.util.concurrent.TimeUnit;
-
-public class PublishEndpointDetails extends AsyncAction {
-  
-
-  public final ContainerId containerId;
-
-  public PublishEndpointDetails(ContainerId containerId, long delay,
-      TimeUnit timeUnit) {
-    super("PublishEndpointDetails :" + containerId.toString(),
-        delay, timeUnit);
-    this.containerId = containerId;
-  }
-
-  @Override
-  public void execute(SliderAppMaster appMaster,
-      QueueAccess queueService,
-      AppState appState) throws Exception {
-    
-  }
-}

http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/41e0c5be/slider-core/src/main/java/org/apache/slider/server/appmaster/actions/PublishRegistryDetails.java
----------------------------------------------------------------------
diff --git 
a/slider-core/src/main/java/org/apache/slider/server/appmaster/actions/PublishRegistryDetails.java
 
b/slider-core/src/main/java/org/apache/slider/server/appmaster/actions/PublishRegistryDetails.java
new file mode 100644
index 0000000..f96183f
--- /dev/null
+++ 
b/slider-core/src/main/java/org/apache/slider/server/appmaster/actions/PublishRegistryDetails.java
@@ -0,0 +1,45 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.slider.server.appmaster.actions;
+
+import org.apache.hadoop.yarn.api.records.ContainerId;
+import org.apache.slider.server.appmaster.SliderAppMaster;
+import org.apache.slider.server.appmaster.state.AppState;
+
+import java.util.concurrent.TimeUnit;
+
+public class PublishRegistryDetails extends AsyncAction {
+  
+
+  public final ContainerId containerId;
+
+  public PublishRegistryDetails(ContainerId containerId, long delay,
+      TimeUnit timeUnit) {
+    super("PublishEndpointDetails :" + containerId.toString(),
+        delay, timeUnit);
+    this.containerId = containerId;
+  }
+
+  @Override
+  public void execute(SliderAppMaster appMaster,
+      QueueAccess queueService,
+      AppState appState) throws Exception {
+    
+  }
+}

Reply via email to