GUI -- reference sample app for UI.
- NOTE: some still need proper descriptions.

Change-Id: Ief6799d73049dfa23c3240ae9155cd3668c7ad4e
diff --git a/ipfix/src/main/java/org/onosproject/ipfix/package-info.java b/ipfix/src/main/java/org/onosproject/ipfix/package-info.java
new file mode 100644
index 0000000..e2d8146
--- /dev/null
+++ b/ipfix/src/main/java/org/onosproject/ipfix/package-info.java
@@ -0,0 +1,20 @@
+/*
+ * Copyright 2015 Open Networking Laboratory
+ *
+ * Licensed 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.
+ */
+
+/**
+ * (description needed).
+ */
+package org.onosproject.ipfix;
\ No newline at end of file
diff --git a/ipfix/src/main/java/org/onosproject/ipfix/packet/package-info.java b/ipfix/src/main/java/org/onosproject/ipfix/packet/package-info.java
new file mode 100644
index 0000000..3a54979
--- /dev/null
+++ b/ipfix/src/main/java/org/onosproject/ipfix/packet/package-info.java
@@ -0,0 +1,20 @@
+/*
+ * Copyright 2015 Open Networking Laboratory
+ *
+ * Licensed 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.
+ */
+
+/**
+ * (description needed).
+ */
+package org.onosproject.ipfix.packet;
\ No newline at end of file
diff --git a/oneping/src/main/java/org/onos/oneping/package-info.java b/oneping/src/main/java/org/onos/oneping/package-info.java
new file mode 100644
index 0000000..357424f
--- /dev/null
+++ b/oneping/src/main/java/org/onos/oneping/package-info.java
@@ -0,0 +1,20 @@
+/*
+ * Copyright 2015 Open Networking Laboratory
+ *
+ * Licensed 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.
+ */
+
+/**
+ * (description needed).
+ */
+package org.onos.oneping;
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index 816958d..e388f98 100644
--- a/pom.xml
+++ b/pom.xml
@@ -48,13 +48,14 @@
     </pluginRepositories>
 
     <modules>
-        <module>oneping</module>
-        <module>ifwd</module>
         <module>calendar</module>
         <module>database-perf</module>
-        <module>tvue</module>
         <module>flowtest</module>
+        <module>ifwd</module>
         <module>ipfix</module>
+        <module>oneping</module>
+        <module>tvue</module>
+        <module>uiref</module>
     </modules>
 
     <properties>
diff --git a/uiref/pom.xml b/uiref/pom.xml
new file mode 100644
index 0000000..5d2ee7f
--- /dev/null
+++ b/uiref/pom.xml
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  ~ Copyright 2015 Open Networking Laboratory
+  ~
+  ~ Licensed 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.
+  -->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+
+    <parent>
+        <groupId>org.onosproject</groupId>
+        <artifactId>onos-app-samples</artifactId>
+        <version>1.4.0-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+
+    <artifactId>onos-app-uiref</artifactId>
+    <packaging>bundle</packaging>
+
+    <description>UI Injection Reference App</description>
+
+    <properties>
+        <onos.app.name>org.onosproject.uiref</onos.app.name>
+    </properties>
+
+</project>
diff --git a/uiref/src/main/java/org/onosproject/uiref/UiRefComponent.java b/uiref/src/main/java/org/onosproject/uiref/UiRefComponent.java
new file mode 100644
index 0000000..8f46dea
--- /dev/null
+++ b/uiref/src/main/java/org/onosproject/uiref/UiRefComponent.java
@@ -0,0 +1,28 @@
+package org.onosproject.uiref;
+
+import org.apache.felix.scr.annotations.Activate;
+import org.apache.felix.scr.annotations.Component;
+import org.apache.felix.scr.annotations.Deactivate;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/**
+ * UI Reference Component.
+ */
+@Component(immediate = true)
+public class UiRefComponent {
+    private final Logger log = LoggerFactory.getLogger(getClass());
+
+
+    @Activate
+    public void activate() {
+//        appId = coreService.registerApplication("org.onosproject.uiref");
+        log.info("Started");
+    }
+
+    @Deactivate
+    public void deactivate() {
+        log.info("Stopped");
+    }
+
+}
diff --git a/uiref/src/main/java/org/onosproject/uiref/package-info.java b/uiref/src/main/java/org/onosproject/uiref/package-info.java
new file mode 100644
index 0000000..44c12e3
--- /dev/null
+++ b/uiref/src/main/java/org/onosproject/uiref/package-info.java
@@ -0,0 +1,21 @@
+/*
+ * Copyright 2015 Open Networking Laboratory
+ *
+ * Licensed 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.
+ */
+
+/**
+ * Provides a reference for all the UI injection / integration features of
+ * the ONOS GUI.
+ */
+package org.onosproject.uiref;
\ No newline at end of file