Examples of PromotedBuildAction


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
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.