blob: 0a2120a586bd3a54b4756a75f4dd1e439bdb7299 [file] [log] [blame]
kmcpeakee4621822015-12-08 14:24:36 +00001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
kmcpeakee4621822015-12-08 14:24:36 +00003 *
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.faultmanagement.web;
17
Ray Milkeyd84f89b2018-08-17 14:54:17 -070018import org.osgi.service.component.annotations.Activate;
19import org.osgi.service.component.annotations.Component;
20import org.osgi.service.component.annotations.Deactivate;
21import org.osgi.service.component.annotations.Reference;
22import org.osgi.service.component.annotations.ReferenceCardinality;
kmcpeakee4621822015-12-08 14:24:36 +000023import org.onosproject.codec.CodecService;
24import org.onosproject.incubator.net.faultmanagement.alarm.Alarm;
25
26import org.slf4j.Logger;
27import org.slf4j.LoggerFactory;
28
29/**
30 * Implementation of the JSON codec brokering service for FM app.
31 */
32@Component(immediate = true)
33public class AlarmCodecRegistrator {
34
35 private static final Logger log = LoggerFactory.getLogger(AlarmCodecRegistrator.class);
36
Ray Milkeyd84f89b2018-08-17 14:54:17 -070037 @Reference(cardinality = ReferenceCardinality.MANDATORY)
kmcpeakee4621822015-12-08 14:24:36 +000038 protected CodecService codecService;
39
40 @Activate
41 public void activate() {
42 codecService.registerCodec(Alarm.class, new AlarmCodec());
43 log.info("Started");
44 }
45
46 @Deactivate
47 public void deactivate() {
48 log.info("Stopped");
49 }
50}