1 23 24 package org.apache.slide.webdav.method; 25 26 import org.apache.slide.common.NamespaceAccessToken; 27 import org.apache.slide.webdav.WebdavServletConfig; 28 29 33 public class HeadMethod extends GetMethod { 34 35 36 38 39 45 public HeadMethod(NamespaceAccessToken token, WebdavServletConfig config) { 46 super(token, config); 47 48 printContent = false; 49 } 50 51 52 } 53 54 | Popular Tags |