-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Samir Romdhani <samir.romdhani@rte-france.com>
- Loading branch information
1 parent
36abe59
commit e682b26
Showing
6 changed files
with
41 additions
and
65 deletions.
There are no files selected for viewing
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
Empty file.
19 changes: 19 additions & 0 deletions
19
sct-commons/src/main/java/org/lfenergy/compas/sct/commons/dto/SCDRoot.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,19 @@ | ||
package org.lfenergy.compas.sct.commons.dto; | ||
|
||
import lombok.Builder; | ||
import lombok.Getter; | ||
import lombok.NonNull; | ||
import org.lfenergy.compas.sct.commons.scl.SclRootAdapter; | ||
|
||
@Builder(toBuilder = true) | ||
@Getter | ||
public class SCDRoot { | ||
|
||
@NonNull | ||
final SclRootAdapter scdRootAdapter ; | ||
|
||
// public static SCDRootBuilder builder(final SclRootAdapter scdRootAdapter) { | ||
// return new SCDRoot(scdRootAdapter); | ||
// } | ||
|
||
} |
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