use of eu.europa.ec.fisheries.schema.mobileterminal.types.v1.ComChannelCapability in project UVMS-Docker by UnionVMS.
the class MobileTerminalTestHelper method addChannelCapability.
private static void addChannelCapability(ComChannelType comChannelType, String type, boolean value) {
ComChannelCapability channelCapability = new ComChannelCapability();
channelCapability.setType(type);
channelCapability.setValue(value);
comChannelType.getCapabilities().add(channelCapability);
}
Aggregations