Package io.vertx.config.git
Class GitConfigStoreFactory
- java.lang.Object
-
- io.vertx.config.git.GitConfigStoreFactory
-
- All Implemented Interfaces:
ConfigStoreFactory
public class GitConfigStoreFactory extends Object implements ConfigStoreFactory
- Author:
- Clement Escoffier
-
-
Constructor Summary
Constructors Constructor Description GitConfigStoreFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConfigStore
create(Vertx vertx, JsonObject configuration)
Creates an instance of theConfigStore
.String
name()
-
-
-
Method Detail
-
name
public String name()
- Specified by:
name
in interfaceConfigStoreFactory
- Returns:
- the name of the factory.
-
create
public ConfigStore create(Vertx vertx, JsonObject configuration)
Description copied from interface:ConfigStoreFactory
Creates an instance of theConfigStore
.- Specified by:
create
in interfaceConfigStoreFactory
- Parameters:
vertx
- the vert.x instance, nevernull
configuration
- the configuration, nevernull
, but potentially empty- Returns:
- the created configuration store
-
-