}
@Test
public void testComponentConfiguration() throws Exception {
NettyComponent comp = context.getComponent("netty4", NettyComponent.class);
EndpointConfiguration conf = comp.createConfiguration("netty4:tcp://localhost:5150?sync=true"
+ "&maximumPoolSize=32&ssl=true&passphrase=#password");
assertEquals("true", conf.getParameter("sync"));
assertEquals("32", conf.getParameter("maximumPoolSize"));
ComponentConfiguration compConf = comp.createComponentConfiguration();
String json = compConf.createParameterJsonSchema();
assertNotNull(json);