use of net.opengis.gml.v_3_2_1.TimeInstantType in project ddf by codice.
the class WfsFilterDelegate method createTimeInstantType.
private TimeInstantType createTimeInstantType(String property, String type, String date) {
TimeInstantType timeInstantType = gml320ObjectFactory.createTimeInstantType();
timeInstantType.setTimePosition(createTimePositionType(date));
timeInstantType.setId(type + "." + System.currentTimeMillis());
return timeInstantType;
}
Aggregations