1 5 6 package com.hp.hpl.jena.joseki; 7 8 import java.net.* ; 9 import com.hp.hpl.jena.rdf.model.*; 10 11 32 public class HttpRemove extends HttpExecuteModel 33 { 34 35 public HttpRemove(URL url) throws MalformedURLException 36 { 37 this(url.toString()) ; 38 } 39 40 public HttpRemove(String urlStr) throws MalformedURLException 41 { 42 super(urlStr, "remove") ; 43 } 44 45 48 public void remove(Model model) { collect(model) ; } 49 50 53 public void remove(Statement statement) { collect(statement) ; } 54 } 55 56 82 83 | Popular Tags |