Repository: oozie
Updated Branches:
  refs/heads/master d03d46346 -> aec39dd26


http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/action/ShellActionWidget.java
----------------------------------------------------------------------
diff --git 
a/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/action/ShellActionWidget.java
 
b/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/action/ShellActionWidget.java
deleted file mode 100644
index d77cb43..0000000
--- 
a/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/action/ShellActionWidget.java
+++ /dev/null
@@ -1,48 +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.oozie.tools.workflowgenerator.client.widget.action;
-
-import org.apache.oozie.tools.workflowgenerator.client.OozieWorkflowGenerator;
-import org.apache.oozie.tools.workflowgenerator.client.widget.NodeWidget;
-
-/**
- * Class for node widget of shell action
- */
-public class ShellActionWidget extends NodeWidget {
-
-    /**
-     * Constructor which records oozie workflow generator and initializes
-     * property table
-     *
-     * @param gen oozieWorkflowGenerator
-     */
-    public ShellActionWidget(OozieWorkflowGenerator gen) {
-        super(gen, "oozie-ShellActionWidget");
-    }
-
-    /**
-     * Update current lists of created node widgets when clicked in workflow
-     * design panel
-     */
-    @Override
-    public void updateOnSelection() {
-        table.updateWidgetDropDown();
-        table.updateErrorDropDown();
-    }
-}

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/action/StreamingActionWidget.java
----------------------------------------------------------------------
diff --git 
a/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/action/StreamingActionWidget.java
 
b/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/action/StreamingActionWidget.java
deleted file mode 100644
index 3235822..0000000
--- 
a/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/action/StreamingActionWidget.java
+++ /dev/null
@@ -1,48 +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.oozie.tools.workflowgenerator.client.widget.action;
-
-import org.apache.oozie.tools.workflowgenerator.client.OozieWorkflowGenerator;
-import org.apache.oozie.tools.workflowgenerator.client.widget.NodeWidget;
-
-/**
- * Class for node widget of MR streaming action
- */
-public class StreamingActionWidget extends NodeWidget {
-
-    /**
-     * Constructor which records oozie workflow generator and initializes
-     * property table
-     *
-     * @param gen oozieWorkflowGenerator
-     */
-    public StreamingActionWidget(OozieWorkflowGenerator gen) {
-        super(gen, "oozie-StreamingActionWidget");
-    }
-
-    /**
-     * Update current lists of created node widgets when clicked in workflow
-     * design panel
-     */
-    @Override
-    public void updateOnSelection() {
-        table.updateWidgetDropDown();
-        table.updateErrorDropDown();
-    }
-}

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/action/SubWFActionWidget.java
----------------------------------------------------------------------
diff --git 
a/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/action/SubWFActionWidget.java
 
b/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/action/SubWFActionWidget.java
deleted file mode 100644
index 04428be..0000000
--- 
a/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/action/SubWFActionWidget.java
+++ /dev/null
@@ -1,48 +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.oozie.tools.workflowgenerator.client.widget.action;
-
-import org.apache.oozie.tools.workflowgenerator.client.OozieWorkflowGenerator;
-import org.apache.oozie.tools.workflowgenerator.client.widget.NodeWidget;
-
-/**
- * Class for node widget of subworkflow action
- */
-public class SubWFActionWidget extends NodeWidget {
-
-    /**
-     * Constructor which records oozie workflow generator and initializes
-     * property table
-     *
-     * @param gen oozieWorkflowGenerator
-     */
-    public SubWFActionWidget(OozieWorkflowGenerator gen) {
-        super(gen, "oozie-SubWFActionWidget");
-    }
-
-    /**
-     * Update current lists of created node widgets when clicked in workflow
-     * design panel
-     */
-    @Override
-    public void updateOnSelection() {
-        table.updateWidgetDropDown();
-        table.updateErrorDropDown();
-    }
-}

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/DecisionNodeWidget.java
----------------------------------------------------------------------
diff --git 
a/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/DecisionNodeWidget.java
 
b/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/DecisionNodeWidget.java
deleted file mode 100644
index 8fb87cc..0000000
--- 
a/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/DecisionNodeWidget.java
+++ /dev/null
@@ -1,49 +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.oozie.tools.workflowgenerator.client.widget.control;
-
-import org.apache.oozie.tools.workflowgenerator.client.OozieWorkflowGenerator;
-import 
org.apache.oozie.tools.workflowgenerator.client.property.control.DecisionPropertyTable;
-import org.apache.oozie.tools.workflowgenerator.client.widget.NodeWidget;
-
-/**
- * Class for node widget of decision node
- */
-public class DecisionNodeWidget extends NodeWidget {
-
-    /**
-     * Constructor which records oozie workflow generator and initializes
-     * property table
-     *
-     * @param gen oozieWorkflowGenerator
-     */
-    public DecisionNodeWidget(OozieWorkflowGenerator gen) {
-        super(gen, "oozie-DecisionNodeWidget");
-    }
-
-    /**
-     * Update a list of node widgets that this node widget has connection to
-     */
-    @Override
-    protected void updateOnSelection() {
-        table.updateWidgetDropDown();
-        ((DecisionPropertyTable) table).updateNeighborList();
-        ((DecisionPropertyTable) table).updateNeighborTable();
-    }
-}

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/EndNodeWidget.java
----------------------------------------------------------------------
diff --git 
a/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/EndNodeWidget.java
 
b/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/EndNodeWidget.java
deleted file mode 100644
index bb3f309..0000000
--- 
a/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/EndNodeWidget.java
+++ /dev/null
@@ -1,56 +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.oozie.tools.workflowgenerator.client.widget.control;
-
-import org.apache.oozie.tools.workflowgenerator.client.OozieWorkflowGenerator;
-import org.apache.oozie.tools.workflowgenerator.client.widget.NodeWidget;
-
-import com.google.gwt.xml.client.Document;
-import com.google.gwt.xml.client.Element;
-
-/**
- * Class for node widget of end node
- */
-public class EndNodeWidget extends NodeWidget {
-
-    /**
-     * Constructor which records oozie workflow generator and initializes
-     * property table
-     *
-     * @param gen oozieWorkflowGenerator
-     */
-    public EndNodeWidget(OozieWorkflowGenerator gen) {
-        super(gen, "oozie-EndNodeWidget");
-    }
-
-    /**
-     * Generate xml elements of end node and attach them to xml doc
-     */
-    @Override
-    public void generateXML(Document doc, Element root, NodeWidget next) {
-        Element endele = doc.createElement("end");
-        endele.setAttribute("name", getName());
-        root.appendChild(endele);
-    }
-
-    @Override
-    protected void updateOnSelection() {
-    }
-
-}

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/ForkNodeWidget.java
----------------------------------------------------------------------
diff --git 
a/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/ForkNodeWidget.java
 
b/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/ForkNodeWidget.java
deleted file mode 100644
index 262856f..0000000
--- 
a/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/ForkNodeWidget.java
+++ /dev/null
@@ -1,50 +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.oozie.tools.workflowgenerator.client.widget.control;
-
-import org.apache.oozie.tools.workflowgenerator.client.OozieWorkflowGenerator;
-import 
org.apache.oozie.tools.workflowgenerator.client.property.control.ForkPropertyTable;
-import org.apache.oozie.tools.workflowgenerator.client.widget.NodeWidget;
-
-/**
- * Class for node widget of fork node
- */
-public class ForkNodeWidget extends NodeWidget {
-
-    /**
-     * Constructor which records oozie workflow generator and initializes
-     * property table
-     *
-     * @param gen oozieWorkflowGenerator
-     */
-    public ForkNodeWidget(OozieWorkflowGenerator gen) {
-        super(gen, "oozie-ForkNodeWidget");
-    }
-
-    /**
-     * Update current lists of node widgets when clicked in workflow design
-     * panel
-     */
-    @Override
-    public void updateOnSelection() {
-        table.updateWidgetDropDown();
-        ((ForkPropertyTable) table).updateNeighborList();
-        ((ForkPropertyTable) table).updateNeighborTable();
-    }
-}

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/JoinNodeWidget.java
----------------------------------------------------------------------
diff --git 
a/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/JoinNodeWidget.java
 
b/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/JoinNodeWidget.java
deleted file mode 100644
index 3070223..0000000
--- 
a/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/JoinNodeWidget.java
+++ /dev/null
@@ -1,47 +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.oozie.tools.workflowgenerator.client.widget.control;
-
-import org.apache.oozie.tools.workflowgenerator.client.OozieWorkflowGenerator;
-import org.apache.oozie.tools.workflowgenerator.client.widget.NodeWidget;
-
-/**
- * Class for node widget of join node
- */
-public class JoinNodeWidget extends NodeWidget {
-
-    /**
-     * Constructor which records oozie workflow generator and initializes
-     * property table
-     *
-     * @param gen oozieWorkflowGenerator
-     */
-    public JoinNodeWidget(OozieWorkflowGenerator gen) {
-        super(gen, "oozie-JoinNodeWidget");
-    }
-
-    /**
-     * Update current lists of created node widgets when clicked in workflow
-     * design panel
-     */
-    @Override
-    public void updateOnSelection() {
-        table.updateWidgetDropDown();
-    }
-}

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/KillNodeWidget.java
----------------------------------------------------------------------
diff --git 
a/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/KillNodeWidget.java
 
b/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/KillNodeWidget.java
deleted file mode 100644
index 2c1b300..0000000
--- 
a/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/KillNodeWidget.java
+++ /dev/null
@@ -1,42 +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.oozie.tools.workflowgenerator.client.widget.control;
-
-import org.apache.oozie.tools.workflowgenerator.client.OozieWorkflowGenerator;
-import org.apache.oozie.tools.workflowgenerator.client.widget.NodeWidget;
-
-/**
- * Class for node widget of kill node
- */
-public class KillNodeWidget extends NodeWidget {
-
-    /**
-     * Constructor which records oozie workflow generator and initializes
-     * property table
-     *
-     * @param gen oozieWorkflowGenerator
-     */
-    public KillNodeWidget(OozieWorkflowGenerator gen) {
-        super(gen, "oozie-KillNodeWidget");
-    }
-
-    @Override
-    protected void updateOnSelection() {
-    }
-}

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/StartNodeWidget.java
----------------------------------------------------------------------
diff --git 
a/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/StartNodeWidget.java
 
b/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/StartNodeWidget.java
deleted file mode 100644
index 4349ba5..0000000
--- 
a/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/client/widget/control/StartNodeWidget.java
+++ /dev/null
@@ -1,69 +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.oozie.tools.workflowgenerator.client.widget.control;
-
-import org.apache.oozie.tools.workflowgenerator.client.OozieWorkflowGenerator;
-import org.apache.oozie.tools.workflowgenerator.client.widget.NodeWidget;
-
-import com.google.gwt.xml.client.Document;
-import com.google.gwt.xml.client.Element;
-
-/**
- * Class for node widget of start node
- */
-public class StartNodeWidget extends NodeWidget {
-
-    /**
-     * Constructor which records oozie workflow generator and initializes
-     * property table
-     *
-     * @param gen oozieWorkflowGenerator
-     */
-    public StartNodeWidget(OozieWorkflowGenerator gen) {
-        super(gen, "oozie-StartNodeWidget");
-    }
-
-    /**
-     * Set a name of node widget (note that start node doesn't have name, 
making
-     * it empty to avoid exception)
-     */
-    @Override
-    public void setName(String s) {
-    }
-
-    /**
-     * Update current lists of created node widgets when clicked in workflow
-     * design panel
-     */
-    @Override
-    public void updateOnSelection() {
-        table.updateWidgetDropDown();
-    }
-
-    /**
-     * Generate xml elements of start node and attach them to xml doc
-     */
-    @Override
-    public void generateXML(Document doc, Element root, NodeWidget next) {
-        Element startele = doc.createElement("start");
-        startele.setAttribute("to", next.getName());
-        root.appendChild(startele);
-    }
-
-}

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/workflowgenerator.gwt.xml
----------------------------------------------------------------------
diff --git 
a/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/workflowgenerator.gwt.xml
 
b/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/workflowgenerator.gwt.xml
deleted file mode 100644
index 1bcd2d6..0000000
--- 
a/workflowgenerator/src/main/java/org/apache/oozie/tools/workflowgenerator/workflowgenerator.gwt.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  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.
--->
-<module rename-to='workflowgenerator'>
-  <!-- Inherit the core Web Toolkit stuff-->
-  <inherits name='com.google.gwt.user.User'/>
-  <inherits name='com.allen_sauer.gwt.dnd.gwt-dnd'/>
-  <inherits name='com.orange.links.Links' />
-  <inherits name="com.google.gwt.xml.XML" />
-  <inherits name='com.google.gwt.widgetideas.WidgetIdeas' />
-  <inherits name='com.google.gwt.libideas.LibIdeas' />
-
-  <!-- Inherit the default GWT style sheet.  You can change       -->
-  <!-- the theme of your GWT application by uncommenting          -->
-  <!-- any one of the following lines.                            -->
-  <inherits name='com.google.gwt.user.theme.clean.Clean'/>
-  <!-- <inherits name='com.google.gwt.user.theme.standard.Standard'/> -->
-  <!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> -->
-  <!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/>     -->
-
-  <!-- Other module inherits                                      -->
-
-  <!-- Specify the app entry point class.                         -->
-  <entry-point 
class='org.apache.oozie.tools.workflowgenerator.client.OozieWorkflowGenerator'/>
-
-  <!-- Specify the paths for translatable code                    -->
-  <source path='client'/>
-</module>

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/action.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/action.png 
b/workflowgenerator/src/main/resources/img/action.png
deleted file mode 100644
index aaeb924..0000000
Binary files a/workflowgenerator/src/main/resources/img/action.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/add-btn.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/add-btn.png 
b/workflowgenerator/src/main/resources/img/add-btn.png
deleted file mode 100644
index 9c18d4a..0000000
Binary files a/workflowgenerator/src/main/resources/img/add-btn.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/decision.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/decision.png 
b/workflowgenerator/src/main/resources/img/decision.png
deleted file mode 100644
index 68d1ecb..0000000
Binary files a/workflowgenerator/src/main/resources/img/decision.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/del-btn.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/del-btn.png 
b/workflowgenerator/src/main/resources/img/del-btn.png
deleted file mode 100644
index 7531614..0000000
Binary files a/workflowgenerator/src/main/resources/img/del-btn.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/distcp-action.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/distcp-action.png 
b/workflowgenerator/src/main/resources/img/distcp-action.png
deleted file mode 100644
index 8656254..0000000
Binary files a/workflowgenerator/src/main/resources/img/distcp-action.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/email-action.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/email-action.png 
b/workflowgenerator/src/main/resources/img/email-action.png
deleted file mode 100644
index 024655b..0000000
Binary files a/workflowgenerator/src/main/resources/img/email-action.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/end.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/end.png 
b/workflowgenerator/src/main/resources/img/end.png
deleted file mode 100644
index b37f92f..0000000
Binary files a/workflowgenerator/src/main/resources/img/end.png and /dev/null 
differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/fork-shape.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/fork-shape.png 
b/workflowgenerator/src/main/resources/img/fork-shape.png
deleted file mode 100644
index 6bcbef7..0000000
Binary files a/workflowgenerator/src/main/resources/img/fork-shape.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/fork.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/fork.png 
b/workflowgenerator/src/main/resources/img/fork.png
deleted file mode 100644
index 3c240f0..0000000
Binary files a/workflowgenerator/src/main/resources/img/fork.png and /dev/null 
differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/fs-action.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/fs-action.png 
b/workflowgenerator/src/main/resources/img/fs-action.png
deleted file mode 100644
index 96ceb54..0000000
Binary files a/workflowgenerator/src/main/resources/img/fs-action.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/hive-action.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/hive-action.png 
b/workflowgenerator/src/main/resources/img/hive-action.png
deleted file mode 100644
index 547c858..0000000
Binary files a/workflowgenerator/src/main/resources/img/hive-action.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/java-action.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/java-action.png 
b/workflowgenerator/src/main/resources/img/java-action.png
deleted file mode 100644
index 5b17296..0000000
Binary files a/workflowgenerator/src/main/resources/img/java-action.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/join-shape.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/join-shape.png 
b/workflowgenerator/src/main/resources/img/join-shape.png
deleted file mode 100644
index e79ba16..0000000
Binary files a/workflowgenerator/src/main/resources/img/join-shape.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/join.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/join.png 
b/workflowgenerator/src/main/resources/img/join.png
deleted file mode 100644
index 5c28024..0000000
Binary files a/workflowgenerator/src/main/resources/img/join.png and /dev/null 
differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/kill.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/kill.png 
b/workflowgenerator/src/main/resources/img/kill.png
deleted file mode 100644
index b324aad..0000000
Binary files a/workflowgenerator/src/main/resources/img/kill.png and /dev/null 
differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/mr-action.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/mr-action.png 
b/workflowgenerator/src/main/resources/img/mr-action.png
deleted file mode 100644
index 2c799c8..0000000
Binary files a/workflowgenerator/src/main/resources/img/mr-action.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/pig-action.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/pig-action.png 
b/workflowgenerator/src/main/resources/img/pig-action.png
deleted file mode 100644
index b4f9713..0000000
Binary files a/workflowgenerator/src/main/resources/img/pig-action.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/pipes-action.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/pipes-action.png 
b/workflowgenerator/src/main/resources/img/pipes-action.png
deleted file mode 100644
index 6bdc803..0000000
Binary files a/workflowgenerator/src/main/resources/img/pipes-action.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/shell-action.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/shell-action.png 
b/workflowgenerator/src/main/resources/img/shell-action.png
deleted file mode 100644
index d756793..0000000
Binary files a/workflowgenerator/src/main/resources/img/shell-action.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/ssh-action.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/ssh-action.png 
b/workflowgenerator/src/main/resources/img/ssh-action.png
deleted file mode 100644
index 5f8c417..0000000
Binary files a/workflowgenerator/src/main/resources/img/ssh-action.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/start-shape.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/start-shape.png 
b/workflowgenerator/src/main/resources/img/start-shape.png
deleted file mode 100644
index 60faa54..0000000
Binary files a/workflowgenerator/src/main/resources/img/start-shape.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/start.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/start.png 
b/workflowgenerator/src/main/resources/img/start.png
deleted file mode 100644
index e114e3c..0000000
Binary files a/workflowgenerator/src/main/resources/img/start.png and /dev/null 
differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/streaming-action.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/streaming-action.png 
b/workflowgenerator/src/main/resources/img/streaming-action.png
deleted file mode 100644
index 2094d96..0000000
Binary files a/workflowgenerator/src/main/resources/img/streaming-action.png 
and /dev/null differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/img/subwf-action.png
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/resources/img/subwf-action.png 
b/workflowgenerator/src/main/resources/img/subwf-action.png
deleted file mode 100644
index acb4c4f..0000000
Binary files a/workflowgenerator/src/main/resources/img/subwf-action.png and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/resources/org/apache/oozie/tools/workflowgenerator/workflowgenerator.gwt.xml
----------------------------------------------------------------------
diff --git 
a/workflowgenerator/src/main/resources/org/apache/oozie/tools/workflowgenerator/workflowgenerator.gwt.xml
 
b/workflowgenerator/src/main/resources/org/apache/oozie/tools/workflowgenerator/workflowgenerator.gwt.xml
deleted file mode 100644
index d3c0809..0000000
--- 
a/workflowgenerator/src/main/resources/org/apache/oozie/tools/workflowgenerator/workflowgenerator.gwt.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  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.
--->
-<module rename-to='workflowgenerator'>
-  <!-- Inherit the core Web Toolkit stuff -->
-  <inherits name='com.google.gwt.user.User'/>
-  <inherits name='com.allen_sauer.gwt.dnd.gwt-dnd'/>
-  <inherits name='com.orange.links.Links' />
-  <inherits name="com.google.gwt.xml.XML" />
-  <inherits name='com.google.gwt.widgetideas.WidgetIdeas' />
-  <inherits name='com.google.gwt.libideas.LibIdeas' />
-
-  <!-- Inherit the default GWT style sheet.  You can change       -->
-  <!-- the theme of your GWT application by uncommenting          -->
-  <!-- any one of the following lines.                            -->
-  <inherits name='com.google.gwt.user.theme.clean.Clean'/>
-  <!-- <inherits name='com.google.gwt.user.theme.standard.Standard'/> -->
-  <!-- <inherits name='com.google.gwt.user.theme.chrome.Chrome'/> -->
-  <!-- <inherits name='com.google.gwt.user.theme.dark.Dark'/>     -->
-
-  <!-- Other module inherits                                      -->
-
-  <!-- Specify the app entry point class.                         -->
-  <entry-point 
class='org.apache.oozie.tools.workflowgenerator.client.OozieWorkflowGenerator'/>
-
-  <!-- Specify the paths for translatable code                    -->
-  <source path='client'/>
-</module>

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/webapp/WEB-INF/web.xml
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/webapp/WEB-INF/web.xml 
b/workflowgenerator/src/main/webapp/WEB-INF/web.xml
deleted file mode 100644
index 0aa0f34..0000000
--- a/workflowgenerator/src/main/webapp/WEB-INF/web.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  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.
--->
-<!DOCTYPE web-app
-    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
-    "http://java.sun.com/dtd/web-app_2_3.dtd";>
-
-<web-app>
-
-  <!-- Servlets -->
-  <!-- Default page to serve -->
-  <welcome-file-list>
-    <welcome-file>workflowgenerator.html</welcome-file>
-  </welcome-file-list>
-
-</web-app>

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/webapp/workflowgenerator.css
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/webapp/workflowgenerator.css 
b/workflowgenerator/src/main/webapp/workflowgenerator.css
deleted file mode 100644
index e44e7a8..0000000
--- a/workflowgenerator/src/main/webapp/workflowgenerator.css
+++ /dev/null
@@ -1,200 +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.
- */
-
-/** Add css rules here for your application. */
-
-
-/** Example rules used by the template application (remove for your app) */
-h1 {
-  font-size: 2em;
-  font-weight: bold;
-  color: #777777;
-  margin: 40px 0px 70px;
-  text-align: center;
-}
-
-.sendButton {
-  display: block;
-  font-size: 16pt;
-}
-
-/** Most GWT widgets already have a style name defined */
-.gwt-DialogBox {
-  width: 400px;
-}
-
-.dialogVPanel {
-  margin: 5px;
-}
-
-.serverResponseLabelError {
-  color: red;
-}
-
-/** Set ids using widget.getElement().setId("idOfElement") */
-#closeButton {
-  margin: 15px 6px 6px;
-}
-
-.oozie-MapReduceActionWidget {
-border: 0;
-background-image: url("img/mr-action.png");
-background-repeat: no-repeat;
-width: 50px;
-height: 43px;
-padding: 0px 0px 0px 0px;
-}
-
-.oozie-StreamingActionWidget {
-border: 0;
-background-image: url("img/streaming-action.png");
-background-repeat: no-repeat;
-width: 50px;
-height: 43px;
-padding: 0px 0px 0px 0px;
-}
-
-.oozie-PipesActionWidget {
-border: 0;
-background-image: url("img/pipes-action.png");
-background-repeat: no-repeat;
-width: 50px;
-height: 43px;
-padding: 0px 0px 0px 0px;
-}
-
-.oozie-PigActionWidget {
-border: 0;
-background-image: url("img/pig-action.png");
-background-repeat: no-repeat;
-width: 50px;
-height: 43px;
-padding: 0px 0px 0px 0px;
-}
-
-.oozie-JavaActionWidget {
-border: 0;
-background-image: url("img/java-action.png");
-background-repeat: no-repeat;
-width: 50px;
-height: 43px;
-padding: 0px 0px 0px 0px;
-}
-
-.oozie-FSActionWidget {
-border: 0;
-background-image: url("img/fs-action.png");
-background-repeat: no-repeat;
-width: 50px;
-height: 43px;
-padding: 0px 0px 0px 0px;
-}
-
-.oozie-SSHActionWidget {
-border: 0;
-background-image: url("img/ssh-action.png");
-background-repeat: no-repeat;
-width: 50px;
-height: 43px;
-padding: 0px 0px 0px 0px;
-}
-
-.oozie-SubWFActionWidget {
-border: 0;
-background-image: url("img/subwf-action.png");
-background-repeat: no-repeat;
-width: 50px;
-height: 43px;
-padding: 0px 0px 0px 0px;
-}
-
-.oozie-EmailActionWidget {
-border: 0;
-background-image: url("img/email-action.png");
-background-repeat: no-repeat;
-width: 50px;
-height: 43px;
-padding: 0px 0px 0px 0px;
-}
-
-.oozie-ShellActionWidget {
-border: 0;
-background-image: url("img/shell-action.png");
-background-repeat: no-repeat;
-width: 50px;
-height: 43px;
-padding: 0px 0px 0px 0px;
-}
-
-.oozie-StartNodeWidget {
-border: 0;
-background-image: url("img/start.png");
-background-repeat: no-repeat;
-width: 50px;
-height: 50px;
-padding: 0px 0px 0px 0px;
-}
-
-.oozie-EndNodeWidget {
-border: 0;
-background-image: url("img/end.png");
-background-repeat: no-repeat;
-width: 50px;
-height: 50px;
-padding: 0px 0px 0px 0px;
-}
-
-.oozie-KillNodeWidget {
-border: 0;
-background-image: url("img/kill.png");
-background-repeat: no-repeat;
-width: 50px;
-height: 50px;
-padding: 0px 0px 0px 0px;
-
-}
-
-.oozie-DecisionNodeWidget {
-border: 0;
-background-image: url("img/decision.png");
-background-repeat: no-repeat;
-width: 50px;
-height: 50px;
-padding: 0px 0px 0px 0px;
-
-}
-
-.oozie-ForkNodeWidget {
-border: 0;
-background-image: url("img/fork.png");
-background-repeat: no-repeat;
-width: 50px;
-height: 50px;
-padding: 0px 0px 0px 0px;
-}
-
-.oozie-JoinNodeWidget {
-border: 0;
-background-image: url("img/join.png");
-background-repeat: no-repeat;
-width: 50px;
-height: 50px;
-padding: 0px 0px 0px 0px;
-}
-
-}

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/main/webapp/workflowgenerator.html
----------------------------------------------------------------------
diff --git a/workflowgenerator/src/main/webapp/workflowgenerator.html 
b/workflowgenerator/src/main/webapp/workflowgenerator.html
deleted file mode 100644
index c5f250d..0000000
--- a/workflowgenerator/src/main/webapp/workflowgenerator.html
+++ /dev/null
@@ -1,66 +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.
--->
-<!doctype html>
-<!-- The DOCTYPE declaration above will set the    -->
-<!-- browser's rendering engine into               -->
-<!-- "Standards Mode". Replacing this declaration  -->
-<!-- with a "Quirks Mode" doctype may lead to some -->
-<!-- differences in layout.                        -->
-
-<html>
-  <head>
-    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
-
-    <!--                                                               -->
-    <!-- Consider inlining CSS to reduce the number of requested files -->
-    <!--                                                               -->
-    <link type="text/css" rel="stylesheet" href="workflowgenerator.css">
-
-    <!--                                           -->
-    <!-- Any title is fine                         -->
-    <!--                                           -->
-    <title>Workflow Generator Tool</title>
-
-    <!--                                           -->
-    <!-- This script loads your compiled module.   -->
-    <!-- If you add any GWT meta tags, they must   -->
-    <!-- be added before this line.                -->
-    <!--                                           -->
-    <script type="text/javascript" language="javascript" 
src="workflowgenerator/workflowgenerator.nocache.js"></script>
-  </head>
-
-  <!--                                           -->
-  <!-- The body can have arbitrary html, or      -->
-  <!-- you can leave the body empty if you want  -->
-  <!-- to create a completely dynamic UI.        -->
-  <!--                                           -->
-  <body>
-
-    <!-- OPTIONAL: include this if you want history support -->
-    <iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1' 
style="position:absolute;width:0;height:0;border:0"></iframe>
-
-    <!-- RECOMMENDED if your web app will not function without JavaScript 
enabled -->
-    <noscript>
-      <div style="width: 22em; position: absolute; left: 50%; margin-left: 
-11em; color: red; background-color: white; border: 1px solid red; padding: 
4px; font-family: sans-serif">
-        Your web browser must have JavaScript enabled
-        in order for this application to display correctly.
-      </div>
-    </noscript>
-
-  </body>
-</html>

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/src/test/java/org/apache/oozie/tools/workflowgenerator/client/OozieWorkflowGeneratorTest.java
----------------------------------------------------------------------
diff --git 
a/workflowgenerator/src/test/java/org/apache/oozie/tools/workflowgenerator/client/OozieWorkflowGeneratorTest.java
 
b/workflowgenerator/src/test/java/org/apache/oozie/tools/workflowgenerator/client/OozieWorkflowGeneratorTest.java
deleted file mode 100644
index 711fe53..0000000
--- 
a/workflowgenerator/src/test/java/org/apache/oozie/tools/workflowgenerator/client/OozieWorkflowGeneratorTest.java
+++ /dev/null
@@ -1,35 +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.oozie.tools.workflowgenerator.client;
-
-import junit.framework.TestCase;
-
-import org.junit.Test;
-
-public class OozieWorkflowGeneratorTest extends TestCase{
-
-    //TODO very first test of wfgen and does not do much.
-    @Test
-    public void test1() {
-        OozieWorkflowGenerator entry = new OozieWorkflowGenerator();
-        assertTrue(entry instanceof OozieWorkflowGenerator);
-    }
-
-}

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/workflowgeneratorTest-dev.launch
----------------------------------------------------------------------
diff --git a/workflowgenerator/workflowgeneratorTest-dev.launch 
b/workflowgenerator/workflowgeneratorTest-dev.launch
deleted file mode 100644
index 7dd8b4e..0000000
--- a/workflowgenerator/workflowgeneratorTest-dev.launch
+++ /dev/null
@@ -1,39 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!--
-  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.
--->
-<launchConfiguration type="com.google.gwt.eclipse.core.launch.gwtJUnit">
-<stringAttribute key="com.google.gwt.eclipse.core.LOG_LEVEL" value="INFO"/>
-<booleanAttribute key="com.google.gwt.eclipse.core.NOT_HEADLESS" 
value="false"/>
-<stringAttribute key="com.google.gwt.eclipse.core.OUT_DIR" value="www-test"/>
-<booleanAttribute key="com.google.gwt.eclipse.core.STANDARDS_MODE" 
value="false"/>
-<stringAttribute key="com.google.gwt.eclipse.core.STYLE" value="OBFUSCATED"/>
-<stringAttribute key="com.google.gwt.eclipse.core.WEB_MODE" value="false"/>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
-<listEntry 
value="/workflowgenerator/src/test/java/org/apache/oozie/tools/workflowgenerator/client/GwtTestworkflowgenerator.java"/>
-</listAttribute>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
-<listEntry value="1"/>
-</listAttribute>
-<stringAttribute key="org.eclipse.jdt.junit.CONTAINER" value=""/>
-<booleanAttribute key="org.eclipse.jdt.junit.KEEPRUNNING_ATTR" value="false"/>
-<stringAttribute key="org.eclipse.jdt.junit.TESTNAME" value=""/>
-<stringAttribute key="org.eclipse.jdt.junit.TEST_KIND" 
value="org.eclipse.jdt.junit.loader.junit4"/>
-<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" 
value="com.google.gdt.eclipse.maven.mavenClasspathProvider"/>
-<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.apache.oozie.tools.workflowgenerator.client.GwtTestworkflowgenerator"/>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="workflowgenerator"/>
-</launchConfiguration>

http://git-wip-us.apache.org/repos/asf/oozie/blob/aec39dd2/workflowgenerator/workflowgeneratorTest-prod.launch
----------------------------------------------------------------------
diff --git a/workflowgenerator/workflowgeneratorTest-prod.launch 
b/workflowgenerator/workflowgeneratorTest-prod.launch
deleted file mode 100644
index cee6364..0000000
--- a/workflowgenerator/workflowgeneratorTest-prod.launch
+++ /dev/null
@@ -1,39 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!--
-  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.
--->
-<launchConfiguration type="com.google.gwt.eclipse.core.launch.gwtJUnit">
-<stringAttribute key="com.google.gwt.eclipse.core.LOG_LEVEL" value="INFO"/>
-<booleanAttribute key="com.google.gwt.eclipse.core.NOT_HEADLESS" 
value="false"/>
-<stringAttribute key="com.google.gwt.eclipse.core.OUT_DIR" value="www-test"/>
-<booleanAttribute key="com.google.gwt.eclipse.core.STANDARDS_MODE" 
value="false"/>
-<stringAttribute key="com.google.gwt.eclipse.core.STYLE" value="OBFUSCATED"/>
-<stringAttribute key="com.google.gwt.eclipse.core.WEB_MODE" value="true"/>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
-<listEntry 
value="/workflowgenerator/src/test/java/org/apache/oozie/tools/workflowgenerator/client/GwtTestworkflowgenerator.java"/>
-</listAttribute>
-<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
-<listEntry value="1"/>
-</listAttribute>
-<stringAttribute key="org.eclipse.jdt.junit.CONTAINER" value=""/>
-<booleanAttribute key="org.eclipse.jdt.junit.KEEPRUNNING_ATTR" value="false"/>
-<stringAttribute key="org.eclipse.jdt.junit.TESTNAME" value=""/>
-<stringAttribute key="org.eclipse.jdt.junit.TEST_KIND" 
value="org.eclipse.jdt.junit.loader.junit4"/>
-<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" 
value="com.google.gdt.eclipse.maven.mavenClasspathProvider"/>
-<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" 
value="org.apache.oozie.tools.workflowgenerator.client.GwtTestworkflowgenerator"/>
-<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" 
value="workflowgenerator"/>
-</launchConfiguration>

Reply via email to