18abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)/*
28abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) *  Licensed to the Apache Software Foundation (ASF) under one or more
38abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) *  contributor license agreements.  See the NOTICE file distributed with
48abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) *  this work for additional information regarding copyright ownership.
58abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) *  The ASF licenses this file to You under the Apache License, Version 2.0
68abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) *  (the "License"); you may not use this file except in compliance with
78abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) *  the License.  You may obtain a copy of the License at
88abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) *
98abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) *     http://www.apache.org/licenses/LICENSE-2.0
108abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) *
118abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) *  Unless required by applicable law or agreed to in writing, software
128abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) *  distributed under the License is distributed on an "AS IS" BASIS,
138abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
148abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) *  See the License for the specific language governing permissions and
158abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) *  limitations under the License.
168abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles) */
178abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)
188abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)package org.apache.harmony.luni.tests.java.net.test_protocol;
198abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)
208abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)import java.io.IOException;
218abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)import java.net.URL;
228abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)import java.net.URLConnection;
238abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)import java.net.URLStreamHandler;
248abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)
258abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)public class Handler extends URLStreamHandler {
268abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)    protected URLConnection openConnection(URL u) throws IOException {
278abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)        return null;
288abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)    }
298abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)}
308abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)
318abfc5808a4e34d6e03867af8bc440dee641886fTorne (Richard Coles)