forked from finos/waltz
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add cascade delete to software tablesAdd toggle to finter direct and …
…all involvements (including inherited) - filter parent involvements that cannot be removed form edit screen - fix arch unit test - command interface #CTCTOWALTZ-2705 finos#6629 finos#6648
- Loading branch information
1 parent
8363976
commit 0e5edd5
Showing
7 changed files
with
3,822 additions
and
6,705 deletions.
There are no files selected for viewing
5 changes: 3 additions & 2 deletions
5
.../src/main/java/org/finos/waltz/model/involvement_group/InvolvementGroupCreateCommand.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 |
---|---|---|
@@ -1,18 +1,19 @@ | ||
package org.finos.waltz.model.involvement_group; | ||
|
||
import org.finos.waltz.model.command.Command; | ||
import org.immutables.value.Value; | ||
|
||
import java.util.Collections; | ||
import java.util.Set; | ||
|
||
@Value.Immutable | ||
public abstract class InvolvementGroupCreateCommand { | ||
public abstract class InvolvementGroupCreateCommand implements Command { | ||
|
||
public abstract InvolvementGroup involvementGroup(); | ||
|
||
@Value.Default | ||
public Set<Long> involvementKindIds() { | ||
return Collections.emptySet(); | ||
} | ||
|
||
} |
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
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.