You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by ni...@apache.org on 2014/10/08 18:53:09 UTC

[15/27] git commit: Convert a Pod object to a MemberContext

Convert a Pod object to a MemberContext


Project: http://git-wip-us.apache.org/repos/asf/stratos/repo
Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/1dddf290
Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/1dddf290
Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/1dddf290

Branch: refs/heads/container-autoscaling
Commit: 1dddf2902b6432c4c56a27f0a22f2c84223344c0
Parents: c78390b
Author: Nirmal Fernando <ni...@gmail.com>
Authored: Tue Oct 7 18:13:16 2014 +0530
Committer: Nirmal Fernando <ni...@gmail.com>
Committed: Wed Oct 8 22:21:29 2014 +0530

----------------------------------------------------------------------
 .../functions/PodToMemberContext.java           | 45 ++++++++++++++++++++
 1 file changed, 45 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/stratos/blob/1dddf290/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/functions/PodToMemberContext.java
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/functions/PodToMemberContext.java b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/functions/PodToMemberContext.java
new file mode 100644
index 0000000..a1eb1a4
--- /dev/null
+++ b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/functions/PodToMemberContext.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.stratos.cloud.controller.functions;
+
+import org.apache.stratos.cloud.controller.pojo.MemberContext;
+import org.apache.stratos.kubernetes.client.model.Pod;
+import com.google.common.base.Function;
+
+/**
+ * Is responsible for converting a {@link Pod} object to a
+ * {@link MemberContext} Object.
+ */
+public class PodToMemberContext implements Function<Pod, MemberContext> {
+
+    @Override
+    public MemberContext apply(Pod pod) {
+
+        if (pod == null) {
+            return null;
+        }
+        MemberContext memberContext = new MemberContext();
+        memberContext.setMemberId(pod.getId());
+        memberContext.setPrivateIpAddress(pod.getCurrentState().getHostIP());
+        memberContext.setPublicIpAddress(pod.getCurrentState().getHostIP());
+        
+        return memberContext;
+    }
+
+}