486d475f448e7b53167c4e088857cc88c9486142
[appc.git] / appc-dg-util / appc-dg-util-bundle / src / main / java / org / openecomp / appc / dg / util / AppcDgUtilActivator.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 /*
26  * Licensed to the Apache Software Foundation (ASF) under one
27  * or more contributor license agreements.  See the NOTICE file
28  * distributed with this work for additional information
29  * regarding copyright ownership.  The ASF licenses this file
30  * to you under the Apache License, Version 2.0 (the
31  * "License"); you may not use this file except in compliance
32  * with the License.  You may obtain a copy of the License at
33  *
34  *  http://www.apache.org/licenses/LICENSE-2.0
35  *
36  * Unless required by applicable law or agreed to in writing,
37  * software distributed under the License is distributed on an
38  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
39  * KIND, either express or implied.  See the License for the
40  * specific language governing permissions and limitations
41  * under the License.
42  */
43 package org.onap.appc.dg.util;
44
45 import org.osgi.framework.BundleActivator;
46 import org.osgi.framework.BundleContext;
47
48 public class AppcDgUtilActivator implements BundleActivator {
49
50     public void start(BundleContext context) {
51         System.out.println("Starting the bundle");
52     }
53
54     public void stop(BundleContext context) {
55         System.out.println("Stopping the bundle");
56     }
57
58 }