forked from 4drian3d/UnSignedVelocity
-
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.
fix: create ConfigurationModule and ConfigurationProvider to manage C…
…onfiguration injections
- Loading branch information
1 parent
056f008
commit 7136f7d
Showing
4 changed files
with
56 additions
and
8 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
20 changes: 20 additions & 0 deletions
20
src/main/java/io/github/_4drian3d/unsignedvelocity/configuration/ConfigurationModule.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 io.github._4drian3d.unsignedvelocity.configuration; | ||
|
||
import com.google.inject.AbstractModule; | ||
|
||
public class ConfigurationModule extends AbstractModule { | ||
private final ConfigurationProvider configurationProvider; | ||
|
||
public ConfigurationModule(Configuration initialConfiguration) { | ||
this.configurationProvider = new ConfigurationProvider(initialConfiguration); | ||
} | ||
|
||
@Override | ||
protected void configure() { | ||
bind(Configuration.class).toProvider(configurationProvider); | ||
} | ||
|
||
public ConfigurationProvider getConfigurationProvider() { | ||
return configurationProvider; | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
src/main/java/io/github/_4drian3d/unsignedvelocity/configuration/ConfigurationProvider.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 io.github._4drian3d.unsignedvelocity.configuration; | ||
|
||
import com.google.inject.Provider; | ||
|
||
public class ConfigurationProvider implements Provider<Configuration> { | ||
private Configuration configuration; | ||
|
||
public ConfigurationProvider(Configuration initialConfiguration) { | ||
this.configuration = initialConfiguration; | ||
} | ||
|
||
public void updateConfiguration(Configuration newConfiguration) { | ||
this.configuration = newConfiguration; | ||
} | ||
|
||
@Override | ||
public Configuration get() { | ||
return configuration; | ||
} | ||
} |