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