blob: 2e82cb64502c90849be8c9dd88bc588a4fedc9bf [file] [log] [blame]
Simon Hunt84f4c2a2015-09-23 17:52:45 -07001#set( $symbol_pound = '#' )
2#set( $symbol_dollar = '$' )
3#set( $symbol_escape = '\' )
4/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07005 * Copyright ${year}-present Open Networking Foundation
Simon Hunt84f4c2a2015-09-23 17:52:45 -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
21import com.google.common.collect.ImmutableList;
22import org.apache.felix.scr.annotations.Activate;
23import org.apache.felix.scr.annotations.Component;
24import org.apache.felix.scr.annotations.Deactivate;
25import org.apache.felix.scr.annotations.Reference;
26import org.apache.felix.scr.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 Table-View application component.
38 */
39@Component(immediate = true)
Thomas Vachuska2b0fc462015-09-28 12:04:06 -070040public class AppUiTableComponent {
Simon Hunt84f4c2a2015-09-23 17:52:45 -070041
Simon Huntafce2ae2015-10-01 10:38:10 -070042 private static final String VIEW_ID = "sampleTable";
43 private static final String VIEW_TEXT = "Sample Table";
44
Simon Hunt84f4c2a2015-09-23 17:52:45 -070045 private final Logger log = LoggerFactory.getLogger(getClass());
46
47 @Reference(cardinality = ReferenceCardinality.MANDATORY_UNARY)
48 protected UiExtensionService uiExtensionService;
49
50 // List of application views
51 private final List<UiView> uiViews = ImmutableList.of(
Simon Huntafce2ae2015-10-01 10:38:10 -070052 new UiView(UiView.Category.OTHER, VIEW_ID, VIEW_TEXT)
Simon Hunt84f4c2a2015-09-23 17:52:45 -070053 );
54
55 // Factory for UI message handlers
56 private final UiMessageHandlerFactory messageHandlerFactory =
57 () -> ImmutableList.of(
Thomas Vachuska2b0fc462015-09-28 12:04:06 -070058 new AppUiTableMessageHandler()
Simon Hunt84f4c2a2015-09-23 17:52:45 -070059 );
60
61 // Application UI extension
62 protected UiExtension extension =
63 new UiExtension.Builder(getClass().getClassLoader(), uiViews)
Simon Huntafce2ae2015-10-01 10:38:10 -070064 .resourcePath(VIEW_ID)
Simon Hunt84f4c2a2015-09-23 17:52:45 -070065 .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}