blob: d372733d04cc278f57b60d3e78e2397cda772c02 [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. Hall594145f2006-07-23 13:07:18 +000024public interface IWire
25{
26 public IModule getImporter();
27 public IModule getExporter();
Richard S. Hallff163682007-01-22 07:03:22 +000028 public ICapability getCapability();
Richard S. Hall594145f2006-07-23 13:07:18 +000029 public Class getClass(String name) throws ClassNotFoundException;
30 public URL getResource(String name) throws ResourceNotFoundException;
Richard S. Hall864dc662006-09-26 16:53:29 +000031 public Enumeration getResources(String name) throws ResourceNotFoundException;
Richard S. Hall594145f2006-07-23 13:07:18 +000032}