use of org.n52.shetland.ogc.ows.OwsAllowedValues in project arctic-sea by 52North.
the class AbstractGetCapabilitiesHandler method getAcceptFormatsDomain.
private OwsDomain getAcceptFormatsDomain() {
OwsValue defaultValue = new OwsValue(MediaTypes.APPLICATION_XML.toString());
OwsPossibleValues possibleValues = new OwsAllowedValues(defaultValue);
return new OwsDomain(GetCapabilitiesParams.AcceptFormats, possibleValues, defaultValue);
}
Aggregations