Package com.springsource.bundlor.blint.support.contributors

Source Code of com.springsource.bundlor.blint.support.contributors.VersionedExportsValidator

/*
* Copyright 2008-2009 SpringSource
*
* 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 com.springsource.bundlor.blint.support.contributors;

import java.util.HashSet;
import java.util.Set;

import com.springsource.bundlor.blint.support.Validator;
import com.springsource.bundlor.util.BundleManifestUtils;
import com.springsource.util.osgi.manifest.BundleManifest;
import com.springsource.util.osgi.manifest.ExportedPackage;
import com.springsource.util.parser.manifest.ManifestContents;

/**
* Validates that all imported packages have a version specified.
* <p />
*
* <strong>Concurrent Semantics</strong><br />
*
* Threadsafe
*
* @author Ben Hale
*/
public final class VersionedExportsValidator implements Validator {

    private static final String MESSAGE = "The export of package %s does not specify a version";

    /**
     * {@inheritDoc}
     */
    public Set<String> validate(ManifestContents manifest) {
        BundleManifest bundleManifest = BundleManifestUtils.createBundleManifest(manifest);
        Set<String> warnings = new HashSet<String>();

        for (ExportedPackage packageExport : bundleManifest.getExportPackage().getExportedPackages()) {
            if (packageExport.getAttributes().get("version") == null) {
                warnings.add(String.format(MESSAGE, packageExport.getPackageName()));
            }
        }

        return warnings;
    }

}
TOP

Related Classes of com.springsource.bundlor.blint.support.contributors.VersionedExportsValidator

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.