-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Client update for more decentralized functionality
- Loading branch information
Showing
17 changed files
with
340 additions
and
782 deletions.
There are no files selected for viewing
524 changes: 227 additions & 297 deletions
524
src/main/java/com/guicedee/guicedinjection/GuiceContext.java
Large diffs are not rendered by default.
Oops, something went wrong.
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: 15 additions & 0 deletions
15
src/main/java/com/guicedee/guicedinjection/implementations/GuiceContextProvision.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,15 @@ | ||
package com.guicedee.guicedinjection.implementations; | ||
|
||
import com.guicedee.client.*; | ||
import com.guicedee.guicedinjection.*; | ||
import com.guicedee.guicedinjection.interfaces.*; | ||
|
||
public class GuiceContextProvision implements IGuiceProvider | ||
{ | ||
@Override | ||
public IGuiceContext get() | ||
{ | ||
return GuiceContext.instance(); | ||
} | ||
|
||
} |
14 changes: 14 additions & 0 deletions
14
src/main/java/com/guicedee/guicedinjection/implementations/JobServiceProvision.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,14 @@ | ||
package com.guicedee.guicedinjection.implementations; | ||
|
||
import com.guicedee.guicedinjection.*; | ||
import com.guicedee.guicedinjection.interfaces.*; | ||
|
||
public class JobServiceProvision implements IJobServiceProvider | ||
{ | ||
@Override | ||
public IJobService get() | ||
{ | ||
return JobService.INSTANCE; | ||
} | ||
|
||
} |
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
75 changes: 0 additions & 75 deletions
75
src/main/java/com/guicedee/guicedinjection/pairing/OptionalPair.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.