use of org.n52.svalbard.encode.OperationRequestEncoderKey in project arctic-sea by 52North.
the class CodingHelper method xmlEncoderKeysForOperationAndMediaType.
public static Set<EncoderKey> xmlEncoderKeysForOperationAndMediaType(String service, String version, String... operations) {
HashSet<EncoderKey> set = new HashSet<>(operations.length);
for (String operation : operations) {
set.add(new OperationRequestEncoderKey(service, version, operation, MediaTypes.TEXT_XML));
set.add(new OperationRequestEncoderKey(service, version, operation, MediaTypes.APPLICATION_XML));
}
return set;
}
Aggregations