1 5 6 package com.hp.hpl.jena.joseki; 7 8 9 import java.net.* ; 10 11 20 public class HttpOptions extends HttpExecute 21 { 22 public HttpOptions(URL u) throws MalformedURLException 23 { 24 this(u.toString()) ; 25 } 26 27 28 public HttpOptions(String urlStr) throws MalformedURLException 29 { 30 super() ; 31 super.setURL(urlStr) ; 32 super.setRequestMethod("OPTIONS", false) ; 33 } 34 } 35 36 62 | Popular Tags |