From 3426556541256f93d2cba65df3b9c8d1d1772861 Mon Sep 17 00:00:00 2001 From: platania Date: Thu, 16 Feb 2017 11:20:22 -0500 Subject: Initial OpenECOMP Demo commit Change-Id: Ibf8696196a7ac2c84ac8aa7cde1982c9c89fb64d Signed-off-by: platania --- .../sample-distribution/src/.DS_Store | Bin 0 -> 6148 bytes .../sample-distribution/src/main/.DS_Store | Bin 0 -> 6148 bytes .../sample-distribution/src/main/java/.DS_Store | Bin 0 -> 6148 bytes .../sample-distribution/src/main/java/io/.DS_Store | Bin 0 -> 6148 bytes .../src/main/java/io/fd/.DS_Store | Bin 0 -> 6148 bytes .../src/main/java/io/fd/honeycomb/.DS_Store | Bin 0 -> 6148 bytes .../main/java/io/fd/honeycomb/tutorial/Main.java | 41 +++++++++++++++++++++ 7 files changed, 41 insertions(+) create mode 100644 vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/.DS_Store create mode 100644 vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/.DS_Store create mode 100644 vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/.DS_Store create mode 100644 vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/.DS_Store create mode 100644 vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/.DS_Store create mode 100644 vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/honeycomb/.DS_Store create mode 100755 vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/honeycomb/tutorial/Main.java (limited to 'vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src') diff --git a/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/.DS_Store b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/.DS_Store new file mode 100644 index 00000000..6816049e Binary files /dev/null and b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/.DS_Store differ diff --git a/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/.DS_Store b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/.DS_Store new file mode 100644 index 00000000..7db2c2e3 Binary files /dev/null and b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/.DS_Store differ diff --git a/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/.DS_Store b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/.DS_Store new file mode 100644 index 00000000..06450486 Binary files /dev/null and b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/.DS_Store differ diff --git a/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/.DS_Store b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/.DS_Store new file mode 100644 index 00000000..47336c35 Binary files /dev/null and b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/.DS_Store differ diff --git a/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/.DS_Store b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/.DS_Store new file mode 100644 index 00000000..0bb0440d Binary files /dev/null and b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/.DS_Store differ diff --git a/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/honeycomb/.DS_Store b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/honeycomb/.DS_Store new file mode 100644 index 00000000..70a47622 Binary files /dev/null and b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/honeycomb/.DS_Store differ diff --git a/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/honeycomb/tutorial/Main.java b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/honeycomb/tutorial/Main.java new file mode 100755 index 00000000..d16c4221 --- /dev/null +++ b/vnfs/honeycomb_plugin/sample_plugin/sample-distribution/src/main/java/io/fd/honeycomb/tutorial/Main.java @@ -0,0 +1,41 @@ +/* + * Copyright (c) 2016 Cisco and/or its affiliates. + * + * 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. + */ + +package io.fd.honeycomb.vpp.integration.distro; + +import com.google.common.collect.Lists; +import com.google.inject.Module; +import io.fd.honeycomb.lisp.LispModule; +import io.fd.honeycomb.translate.v3po.V3poModule; +import io.fd.honeycomb.vpp.distro.VppCommonModule; +import io.fd.honeycomb.vppnsh.impl.VppNshModule; +import java.util.List; + +public class Main { + + public static void main(String[] args) { + final List sampleModules = Lists.newArrayList(io.fd.honeycomb.infra.distro.Main.BASE_MODULES); + + // All the plugins should be listed here + sampleModules.add(new VppCommonModule()); + sampleModules.add(new V3poModule()); + sampleModules.add(new LispModule()); + sampleModules.add(new VppNshModule()); + sampleModules.add(new io.fd.honeycomb.tutorial.Module()); + + io.fd.honeycomb.infra.distro.Main.init(sampleModules); + } +} -- cgit 1.2.3-korg