All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.osgi.service.repository.RepositoryContent Maven / Gradle / Ivy

Go to download

A command line utility and Ant plugin to wrap, build, or examine bundles.

There is a newer version: 2.4.0
Show newest version
/*
 * Copyright (c) OSGi Alliance (2012). All Rights Reserved.
 * 
 * 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.
 */

package org.osgi.service.repository;

import java.io.InputStream;
import org.osgi.resource.Resource;

/**
 * An accessor for the default content of a resource.
 * 
 * All {@link Resource} objects which represent resources in a
 * {@link Repository} must implement this interface. A user of the resource can
 * then cast the {@link Resource} object to this type and then obtain an
 * {@code InputStream} to the default content of the resource.
 * 
 * @ThreadSafe
 * @noimplement
 * @version $Id: 65c9ca60467654e7147a2fddc86acef58a634042 $
 */
public interface RepositoryContent {

	/**
	 * Returns a new input stream to the default format of this resource.
	 * 
	 * @return A new input stream for associated resource.
	 */
	InputStream getContent();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy