blob: 93003a148f62346d5ab1031a229ca155ebbe86a5 [file] [log] [blame]
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -07001#set( $symbol_pound = '#' )
2#set( $symbol_dollar = '$' )
3#set( $symbol_escape = '\' )
4/*
Simon Hunte11ce5a2015-07-21 12:11:04 -07005 * Copyright 2014,2015 Open Networking Laboratory
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -07006 *
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
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -070021import com.google.common.collect.ImmutableList;
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -070022import org.apache.felix.scr.annotations.Activate;
23import org.apache.felix.scr.annotations.Component;
24import org.apache.felix.scr.annotations.Deactivate;
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -070025import org.apache.felix.scr.annotations.Reference;
26import org.apache.felix.scr.annotations.ReferenceCardinality;
27import org.onosproject.ui.UiExtension;
28import org.onosproject.ui.UiExtensionService;
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -070029import org.onosproject.ui.UiMessageHandlerFactory;
30import org.onosproject.ui.UiView;
31import org.slf4j.Logger;
32import org.slf4j.LoggerFactory;
33
34import java.util.List;
35
36/**
Simon Hunt84f4c2a2015-09-23 17:52:45 -070037 * Skeletal ONOS UI Custom-View application component.
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -070038 */
39@Component(immediate = true)
40public class AppUiComponent {
41
42 private final Logger log = LoggerFactory.getLogger(getClass());
43
44 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
45 protected UiExtensionService uiExtensionService;
46
47 // List of application views
48 private final List<UiView> uiViews = ImmutableList.of(
Simon Hunt84f4c2a2015-09-23 17:52:45 -070049 new UiView(UiView.Category.OTHER, "sampleCustom", "Sample Custom")
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -070050 );
51
52 // Factory for UI message handlers
53 private final UiMessageHandlerFactory messageHandlerFactory =
54 () -> ImmutableList.of(
55 new AppUiMessageHandler()
56 );
57
Thomas Vachuska92900532015-05-20 17:21:44 -070058 // Application UI extension
Simon Hunte11ce5a2015-07-21 12:11:04 -070059 protected UiExtension extension =
Simon Hunte05cae42015-07-23 17:35:24 -070060 new UiExtension.Builder(getClass().getClassLoader(), uiViews)
61 .messageHandlerFactory(messageHandlerFactory)
62 .build();
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -070063
64 @Activate
65 protected void activate() {
66 uiExtensionService.register(extension);
67 log.info("Started");
68 }
69
70 @Deactivate
71 protected void deactivate() {
72 uiExtensionService.unregister(extension);
73 log.info("Stopped");
74 }
75
Thomas Vachuskaa2ae4222015-04-29 18:42:09 -070076}