blob: ea2f085d1d91d94e6d01aa3366793c73e2cf185e [file] [log] [blame]
Parvathi Mef749632016-07-07 13:30:43 -07001/*
2 * Copyright 2016-present Open Networking Laboratory
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.patchpanel.impl;
17
18import com.google.common.collect.ImmutableList;
19import org.apache.felix.scr.annotations.Activate;
20import org.apache.felix.scr.annotations.Component;
21import org.apache.felix.scr.annotations.Deactivate;
22import org.apache.felix.scr.annotations.Reference;
23import org.apache.felix.scr.annotations.ReferenceCardinality;
24import 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 * ONOS UI Custom-View application component for the Patch Panel Application.
35 */
36@Component(immediate = true)
Jonathan Hart382119e2016-09-02 13:14:49 -070037public class PatchPanelUiComponent {
Parvathi Mef749632016-07-07 13:30:43 -070038
39 private static final String VIEW_ID = "sampleCustom";
40 private static final String VIEW_TEXT = "Patch Panel Application";
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(
49 new UiView(UiView.Category.OTHER, VIEW_ID, VIEW_TEXT)
50 );
51
52 // Factory for UI message handlers
53 private final UiMessageHandlerFactory messageHandlerFactory =
Jonathan Hart382119e2016-09-02 13:14:49 -070054 () -> ImmutableList.of(new PatchPanelUiMessageHandler());
Parvathi Mef749632016-07-07 13:30:43 -070055
56 // Application UI extension
57 protected UiExtension extension =
58 new UiExtension.Builder(getClass().getClassLoader(), uiViews)
59 .resourcePath(VIEW_ID)
60 .messageHandlerFactory(messageHandlerFactory)
61 .build();
62
63 @Activate
64 protected void activate() {
65 uiExtensionService.register(extension);
66 log.info("Started");
67 }
68
69 @Deactivate
70 protected void deactivate() {
71 uiExtensionService.unregister(extension);
72 log.info("Stopped");
73 }
74
75}