String sValue = oValue.toString();
if (oValue instanceof Timestamp) {
if (meaningType.equals(PropertyMeaningType.DATEMODIFIED)) {
sValue = opResponse.toIso8601((Timestamp)oValue);
} else {
sValue = opResponse.toIso8601Date((Timestamp)oValue);
}
}
if (meaningType.equals(PropertyMeaningType.XMLURL)) {
if ((sValue != null) && sValue.startsWith("?getxml=")) {
sValue = cswBaseUrl+sValue;