use of org.onosproject.openstacknode.codec.OpenstackNodeCodec in project onos by opennetworkinglab.
the class OpenstackNodeCodecRegister method activate.
@Activate
protected void activate() {
codecService.registerCodec(OpenstackNode.class, new OpenstackNodeCodec());
codecService.registerCodec(OpenstackAuth.class, new OpenstackAuthCodec());
codecService.registerCodec(OpenstackPhyInterface.class, new OpenstackPhyInterfaceCodec());
codecService.registerCodec(ControllerInfo.class, new OpenstackControllerCodec());
codecService.registerCodec(OpenstackSshAuth.class, new OpenstackSshAuthCodec());
codecService.registerCodec(DpdkInterface.class, new DpdkInterfaceCodec());
codecService.registerCodec(DpdkConfig.class, new DpdkConfigCodec());
codecService.registerCodec(KeystoneConfig.class, new KeystoneConfigCodec());
codecService.registerCodec(NeutronConfig.class, new NeutronConfigCodec());
log.info("Started");
}
Aggregations