-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6691 from davidwatkins73/waltz-6687-ci-table
Change Initiatives: incomplete assessments filters
- Loading branch information
Showing
9 changed files
with
388 additions
and
102 deletions.
There are no files selected for viewing
20 changes: 20 additions & 0 deletions
20
waltz-model/src/main/java/org/finos/waltz/model/change_initiative/ChangeInitiativeView.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package org.finos.waltz.model.change_initiative; | ||
|
||
import com.fasterxml.jackson.databind.annotation.JsonSerialize; | ||
import org.finos.waltz.model.assessment_definition.AssessmentDefinition; | ||
import org.finos.waltz.model.assessment_rating.AssessmentRating; | ||
import org.finos.waltz.model.rating.RatingSchemeItem; | ||
import org.immutables.value.Value; | ||
|
||
import java.util.Set; | ||
|
||
@Value.Immutable | ||
@JsonSerialize(as=ImmutableChangeInitiativeView.class) | ||
public abstract class ChangeInitiativeView { | ||
|
||
public abstract Set<ChangeInitiative> changeInitiatives(); | ||
public abstract Set<AssessmentDefinition> assessmentDefinitions(); | ||
public abstract Set<RatingSchemeItem> ratingSchemeItems(); | ||
public abstract Set<AssessmentRating> ratings(); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.