コード例 #1
0
 @DataBoundConstructor
 public DownstreamTrigger(
     String childProjects,
     String threshold,
     boolean onlyIfSCMChanges,
     String strategy,
     boolean triggerOnlyOnceWhenMatrixEnds) {
   this(
       childProjects,
       resultFromString(threshold),
       onlyIfSCMChanges,
       Strategy.valueOf(strategy),
       triggerOnlyOnceWhenMatrixEnds);
 }