blob: 6fea61444881b4eaa8d6f1c35d10ceecb17af1d3 [file] [log] [blame]
Richard S. Hallb3951672006-09-19 17:04:53 +00001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
Richard S. Hall594145f2006-07-23 13:07:18 +00009 *
Richard S. Hallb3951672006-09-19 17:04:53 +000010 * http://www.apache.org/licenses/LICENSE-2.0
Richard S. Hall594145f2006-07-23 13:07:18 +000011 *
Richard S. Hallb3951672006-09-19 17:04:53 +000012 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
Richard S. Hall594145f2006-07-23 13:07:18 +000018 */
19package org.apache.felix.moduleloader;
20
21import java.net.URL;
Richard S. Hall864dc662006-09-26 16:53:29 +000022import java.util.Enumeration;
Richard S. Hall594145f2006-07-23 13:07:18 +000023
Richard S. Hall78605422006-12-18 20:47:55 +000024import org.apache.felix.framework.util.manifestparser.R4Export;
Richard S. Hall594145f2006-07-23 13:07:18 +000025
26public interface IWire
27{
28 public IModule getImporter();
29 public IModule getExporter();
30 public R4Export getExport();
31 public Class getClass(String name) throws ClassNotFoundException;
32 public URL getResource(String name) throws ResourceNotFoundException;
Richard S. Hall864dc662006-09-26 16:53:29 +000033 public Enumeration getResources(String name) throws ResourceNotFoundException;
Richard S. Hall594145f2006-07-23 13:07:18 +000034}