use of org.onosproject.openstacktelemetry.codec.rest.StatsInfoJsonCodec in project onos by opennetworkinglab.
the class OpenstackRestCodecRegister method activate.
@Activate
protected void activate() {
codecService.registerCodec(StatsInfo.class, new StatsInfoJsonCodec());
codecService.registerCodec(FlowInfo.class, new FlowInfoJsonCodec());
codecService.registerCodec(StatsFlowRule.class, new StatsFlowRuleJsonCodec());
codecService.registerCodec(TelemetryConfig.class, new TelemetryConfigJsonCodec());
log.info("Started");
}
Aggregations