Package hudson.plugins.promoted_builds

Examples of hudson.plugins.promoted_builds.PromotedBuildAction


        Iterable<AbstractBuild> promotedItems = Iterables.filter(item.asProject().getBuilds(), new Predicate() {
            public boolean apply(Object o) {
                AbstractBuild abstractBuild = (AbstractBuild)o;

                PromotedBuildAction pba = abstractBuild.getAction(PromotedBuildAction.class);
                return ( pba != null && pba.getPromotion(promoted) != null );

            }
        });

View Full Code Here

TOP

Related Classes of hudson.plugins.promoted_builds.PromotedBuildAction

Copyright © 2018 www.massapicom. 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.