Added complete lifecycle methods for the Application EntryPoint interfaces

git-svn-id: https://hyracks.googlecode.com/svn/branches/fullstack_hyracks_ioc@2992 123451ca-8445-de46-9d55-352943316053
diff --git a/pregelix-runtime/src/main/java/edu/uci/ics/pregelix/runtime/bootstrap/NCApplicationEntryPoint.java b/pregelix-runtime/src/main/java/edu/uci/ics/pregelix/runtime/bootstrap/NCApplicationEntryPoint.java
index 31162f1..fbebc66 100644
--- a/pregelix-runtime/src/main/java/edu/uci/ics/pregelix/runtime/bootstrap/NCApplicationEntryPoint.java
+++ b/pregelix-runtime/src/main/java/edu/uci/ics/pregelix/runtime/bootstrap/NCApplicationEntryPoint.java
@@ -6,8 +6,18 @@
 
 public class NCApplicationEntryPoint implements INCApplicationEntryPoint {
     @Override
-    public void appMain(INCApplicationContext ncAppCtx, String[] args) throws Exception {
+    public void start(INCApplicationContext ncAppCtx, String[] args) throws Exception {
         RuntimeContext rCtx = new RuntimeContext(ncAppCtx);
         ncAppCtx.setApplicationObject(rCtx);
     }
+
+    @Override
+    public void notifyStartupComplete() throws Exception {
+
+    }
+
+    @Override
+    public void stop() throws Exception {
+
+    }
 }
\ No newline at end of file