}
}
@Override
protected void importGMLSchema(XSDSchema schema, XSDFactory factory, String baseUrl) {
XSDImport imprt;
try {
imprt = factory.createXSDImport();
imprt.setNamespace( WFS.getInstance().getSchema().getTargetNamespace() );
imprt.setSchemaLocation(ResponseUtils.buildSchemaURL(baseUrl, gmlSchemaLocation));
imprt.setResolvedSchema(WFS.getInstance().getSchema());
schema.getContents().add( imprt );
schema.getQNamePrefixToNamespaceMap().put("wfs", WFS.NAMESPACE);
//imprt = Schemas.importSchema(schema, WFS.getInstance().getSchema());
((XSDSchemaImpl)WFS.getInstance().getSchema()).imported(imprt);