blob: daa1968f4c8f02f189dbaa62b826cf54a6efa34d [file] [log] [blame]
Jonghwan Hyun13a430d2018-07-22 17:02:51 +09001/*
2 * Copyright 2015-present Open Networking Foundation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.inbandtelemetry.app.ui;
17
18import com.google.common.collect.ImmutableList;
Ray Milkeyd84f89b2018-08-17 14:54:17 -070019import org.osgi.service.component.annotations.Activate;
20import org.osgi.service.component.annotations.Component;
21import org.osgi.service.component.annotations.Deactivate;
22import org.osgi.service.component.annotations.Reference;
23import org.osgi.service.component.annotations.ReferenceCardinality;
Jonghwan Hyun13a430d2018-07-22 17:02:51 +090024import org.onosproject.ui.UiExtension;
25import org.onosproject.ui.UiExtensionService;
26import org.onosproject.ui.UiMessageHandlerFactory;
27import org.onosproject.ui.UiView;
28import org.slf4j.Logger;
29import org.slf4j.LoggerFactory;
30
31import java.util.List;
32
33/**
34 * Skeletal ONOS UI Custom-View application component.
35 */
36@Component(immediate = true)
37public class IntAppUiComponent {
38
39 private static final String VIEW_ID = "intApp";
40 private static final String VIEW_TEXT = "In-band Telemetry Control";
41
42 private final Logger log = LoggerFactory.getLogger(getClass());
43
Ray Milkeyd84f89b2018-08-17 14:54:17 -070044 @Reference(cardinality = ReferenceCardinality.MANDATORY)
Jonghwan Hyun13a430d2018-07-22 17:02:51 +090045 protected UiExtensionService uiExtensionService;
46
47 // List of application views
48 private final List<UiView> uiViews = ImmutableList.of(
49 new UiView(UiView.Category.OTHER, VIEW_ID, VIEW_TEXT)
50 );
51
52 // Factory for UI message handlers
53 private final UiMessageHandlerFactory messageHandlerFactory =
54 () -> ImmutableList.of(
55 new IntAppUiMessageHandler(),
56 new IntAppTableMessageHandler()
57 );
58
59 // Application UI extension
60 protected UiExtension extension =
61 new UiExtension.Builder(getClass().getClassLoader(), uiViews)
62 .resourcePath(VIEW_ID)
63 .messageHandlerFactory(messageHandlerFactory)
Davide Scanob5ade982020-06-03 21:47:13 +020064 .ui2()
Jonghwan Hyun13a430d2018-07-22 17:02:51 +090065 .build();
66
67 @Activate
68 protected void activate() {
69 uiExtensionService.register(extension);
70 log.info("Started");
71 }
72
73 @Deactivate
74 protected void deactivate() {
75 uiExtensionService.unregister(extension);
76 log.info("Stopped");
77 }
78}