1 16 package org.apache.cocoon.components.url; 17 18 import org.apache.avalon.framework.component.Component; 19 20 import java.net.MalformedURLException ; 21 import java.net.URL ; 22 23 29 public interface URLFactory extends Component { 30 31 String ROLE = "org.apache.cocoon.components.url.URLFactory"; 32 35 URL getURL(String location) throws MalformedURLException ; 36 URL getURL(URL base, String location) throws MalformedURLException ; 37 } 38 | Popular Tags |