aboutsummaryrefslogtreecommitdiffstats
path: root/asdc-controller/src
diff options
context:
space:
mode:
authorseshukm <seshu.kumar.m@huawei.com>2019-07-19 16:41:56 +0530
committerseshukm <seshu.kumar.m@huawei.com>2019-07-19 16:42:37 +0530
commit2ca8616530187c34e0778d04c5bace9a4178428f (patch)
tree2f3c264797541ac22355c1eb6169db559eb23af6 /asdc-controller/src
parentf765cc2ab30384f05af70c4011102389c9462e70 (diff)
Fix the License issue inside the sample csar
Issue-ID: SO-2138 Change-Id: I0dd532abf983a248b60f91aea4a6fbd05e33daab Signed-off-by: seshukm <seshu.kumar.m@huawei.com>
Diffstat (limited to 'asdc-controller/src')
-rw-r--r--asdc-controller/src/test/resources/resource-examples/vcpe-infra/service-Demovcpeinfra-csar.csarbin115651 -> 115053 bytes
1 files changed, 0 insertions, 0 deletions
diff --git a/asdc-controller/src/test/resources/resource-examples/vcpe-infra/service-Demovcpeinfra-csar.csar b/asdc-controller/src/test/resources/resource-examples/vcpe-infra/service-Demovcpeinfra-csar.csar
index 841c681088..40b8b7b45a 100644
--- a/asdc-controller/src/test/resources/resource-examples/vcpe-infra/service-Demovcpeinfra-csar.csar
+++ b/asdc-controller/src/test/resources/resource-examples/vcpe-infra/service-Demovcpeinfra-csar.csar
Binary files differ
span class="cm"> * ONAP CLAMP * ================================================================================ * Copyright (C) 2019 AT&T Intellectual Property. All rights * reserved. * ================================================================================ * 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. * ============LICENSE_END============================================ * =================================================================== * */ import React from 'react'; import ReactDOM from 'react-dom'; import OnapClamp from './OnapClamp'; import { Route, MemoryRouter } from 'react-router-dom' const routing = ( <MemoryRouter forceRefresh={false}> <Route path="/" component={OnapClamp}/> </MemoryRouter> ); export var mainClamp = ReactDOM.render( routing, document.getElementById('root') )