package libcore.net.url; /* * #%L * Matos * $Id:$ * $HeadURL:$ * %% * Copyright (C) 2010 - 2014 Orange SA * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * #L% */ @com.francetelecom.rd.stubs.annotation.ClassDone(0) public class JarURLConnectionImpl extends java.net.JarURLConnection{ // Constructors public JarURLConnectionImpl(java.net.URL arg1) throws java.net.MalformedURLException, java.io.IOException{ super((java.net.URL) null); } // Methods public java.security.Permission getPermission() throws java.io.IOException{ return (java.security.Permission) null; } public java.lang.Object getContent() throws java.io.IOException{ return (java.lang.Object) null; } public java.io.InputStream getInputStream() throws java.io.IOException{ return (java.io.InputStream) null; } public void connect() throws java.io.IOException{ } public java.util.jar.JarEntry getJarEntry() throws java.io.IOException{ return (java.util.jar.JarEntry) null; } public java.util.jar.JarFile getJarFile() throws java.io.IOException{ return (java.util.jar.JarFile) null; } public int getContentLength(){ return 0; } public java.lang.String getContentType(){ return (java.lang.String) null; } public boolean getDefaultUseCaches(){ return false; } public boolean getUseCaches(){ return false; } public void setDefaultUseCaches(boolean arg1){ } public void setUseCaches(boolean arg1){ } public static void closeCachedFiles(){ } }