blob: eb335f0237d26ab98fb1a31d928da4a414e25391 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.ace.client.repository.helper.bundle;
import org.apache.ace.client.repository.helper.ArtifactHelper;
import org.apache.ace.client.repository.object.ArtifactObject;
import org.osgi.framework.Constants;
import aQute.bnd.annotation.ProviderType;
/**
* Definitions for a BundleHelper, which are used to treat an artifact as a bundle.
*/
@ProviderType
public interface BundleHelper extends ArtifactHelper {
public static final String KEY_SYMBOLICNAME = Constants.BUNDLE_SYMBOLICNAME;
public static final String KEY_NAME = Constants.BUNDLE_NAME;
public static final String KEY_VERSION = Constants.BUNDLE_VERSION;
public static final String KEY_VENDOR = Constants.BUNDLE_VENDOR;
public static final String KEY_RESOURCE_PROCESSOR_PID = "Deployment-ProvidesResourceProcessor";
public static final String MIMETYPE = "application/vnd.osgi.bundle";
/**
* Used to include an OSGi version range (see section 3.2.5 of the core specification) with an association.
* When included in the association's properties, this statement will cause the association to automatically
* match the highest available bundle version that matches the statement; an open ended range can be
* created by passing "0.0.0".<br>
* Not specifying this attribute will lead to the <code>Artifact2GroupAssociation</code<'s default behavior,
* using all matches for the filter string.
*/
public static final String KEY_ASSOCIATION_VERSIONSTATEMENT = "associationVersionStatement";
public boolean isResourceProcessor(ArtifactObject object);
public String getResourceProcessorPIDs(ArtifactObject object);
public String getSymbolicName(ArtifactObject object);
public String getName(ArtifactObject object);
public String getVersion(ArtifactObject object);
public String getVendor(ArtifactObject object);
}