-
-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* #1968: private bindings PoC * #1968: private bindings PoC * #1968: locator-private bindings PoC * #1968: public roots mode * #1968: public roots mode for bootstrap injector * docs * bootstrap planning mode customization * docs * locator pretty-print * locator pretty-print * better formatting * better formatting
- Loading branch information
Showing
53 changed files
with
1,136 additions
and
1,037 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
15 changes: 8 additions & 7 deletions
15
distage/distage-core-api/src/main/scala/izumi/distage/model/Planner.scala
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
17 changes: 17 additions & 0 deletions
17
distage/distage-core-api/src/main/scala/izumi/distage/model/definition/LocatorPrivacy.scala
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,17 @@ | ||
package izumi.distage.model.definition | ||
|
||
sealed trait LocatorPrivacy | ||
|
||
object LocatorPrivacy { | ||
/** All the bindings are public, unless explicitly marked as "confined" | ||
*/ | ||
case object PublicByDefault extends LocatorPrivacy | ||
/** All the bindings are private, unless explicitly marked as "exposed" | ||
*/ | ||
case object PrivateByDefault extends LocatorPrivacy | ||
|
||
/** Only planning roots are public | ||
*/ | ||
case object PublicRoots extends LocatorPrivacy | ||
|
||
} |
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.