/*
* Only for GET should the response actually contain the content.
* Java Web Start uses HEAD to find out when the target was last
* modified to see if it should ask for the entire target.
*/
final Method methodType = gReq.getMethod();
if (Method.GET.equals(methodType)) {
writeData(instance.getText(), gResp);
}
logger.log(Level.FINE, "{0}Served dyn content for {1}: {2}{3}",
new Object[]{logPrefix(), methodType, relativeURIString,