use of org.onosproject.k8snetworking.codec.K8sPortCodec in project onos by opennetworkinglab.
the class K8sPortWebResourceTest method setUpTest.
/**
* Sets up the global values for all the tests.
*/
@Before
public void setUpTest() {
final CodecManager codecService = new CodecManager();
codecService.activate();
codecService.registerCodec(K8sPort.class, new K8sPortCodec());
ServiceDirectory testDirectory = new TestServiceDirectory().add(K8sNetworkAdminService.class, mockAdminService).add(CodecService.class, codecService);
setServiceDirectory(testDirectory);
}
use of org.onosproject.k8snetworking.codec.K8sPortCodec in project onos by opennetworkinglab.
the class K8sNetworkingCodecRegister method activate.
@Activate
protected void activate() {
codecService.registerCodec(K8sIpam.class, new K8sIpamCodec());
codecService.registerCodec(K8sNetwork.class, new K8sNetworkCodec());
codecService.registerCodec(K8sPort.class, new K8sPortCodec());
log.info("Started");
}
Aggregations