*/
public synchronized SimpleFeatureCollection getFeatures(final MfClientHttpRequestFactory httpRequestFactory) throws
FactoryException, IOException {
if (this.featuresCollection == null) {
final boolean forceLongitudeFirst = this.longitudeFirst == null ? false : this.longitudeFirst;
final FeaturesParser parser = new FeaturesParser(httpRequestFactory, forceLongitudeFirst);
this.featuresCollection = parser.autoTreat(this.template, this.features);
}
return this.featuresCollection;
}