use of un.unece.uncefact.data.standard.unqualifieddatatype._20.NumericType in project UVMS-ActivityModule-APP by UnionVMS.
the class MapperUtil method getAapProcess.
public static AAPProcess getAapProcess() {
List<CodeType> codeList = Arrays.asList(getCodeType("FISH_FRESHNESS", "FLUX_PROCESS_TYPE"));
NumericType numericType = getNumericType(123);
return new AAPProcess(codeList, numericType, null, Arrays.asList(getAapProduct()));
}
use of un.unece.uncefact.data.standard.unqualifieddatatype._20.NumericType in project UVMS-ActivityModule-APP by UnionVMS.
the class MapperUtil method getNumericType.
private static NumericType getNumericType(int value) {
NumericType numericType = new NumericType();
numericType.setValue(new BigDecimal(value));
return numericType;
}
Aggregations