001/*
002 * (C) Copyright 2006-2010 Nuxeo SA (http://nuxeo.com/) and contributors.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser General Public License
006 * (LGPL) version 2.1 which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/lgpl.html
008 *
009 * This library is distributed in the hope that it will be useful,
010 * but WITHOUT ANY WARRANTY; without even the implied warranty of
011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
012 * Lesser General Public License for more details.
013 *
014 * Contributors:
015 *     Bogdan Stefanescu
016 *     Thierry Delprat
017 */
018package org.nuxeo.apidoc.api;
019
020import java.util.Collection;
021
022public interface BundleInfo extends NuxeoArtifact {
023
024    String TYPE_NAME = "NXBundle";
025
026    String PROP_ARTIFACT_GROUP_ID = "nxbundle:artifactGroupId";
027
028    String PROP_ARTIFACT_ID = "nxbundle:artifactId";
029
030    String PROP_ARTIFACT_VERSION = "nxbundle:artifactVersion";
031
032    String PROP_BUNDLE_ID = "nxbundle:bundleId";
033
034    String PROP_JAR_NAME = "nxbundle:jarName";
035
036    Collection<ComponentInfo> getComponents();
037
038    String getFileName();
039
040    String getBundleId();
041
042    String[] getRequirements();
043
044    String getManifest();
045
046    String getLocation();
047
048    String getArtifactGroupId();
049
050    String getArtifactId();
051
052    String getArtifactVersion();
053
054}