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