use of net.opengis.gml.x32.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;
}
use of net.opengis.gml.x32.TimeInstantType in project arctic-sea by 52North.
the class GmlEncoderv321 method createTimeInstantType.
private TimeInstantType createTimeInstantType(TimeInstant timeInstant) throws EncodingException {
TimeInstantType timeInstantType = TimeInstantType.Factory.newInstance(getXmlOptions());
createTimeInstantType(timeInstant, timeInstantType);
return timeInstantType;
}
Aggregations