Exemplo n.º 1
0
 @Override
 public NetworkContext.Builder setAddress(String address) {
   network.address = Args.checkNotNull(address, "address cannot be null");
   return this;
 }
Exemplo n.º 2
0
 @Override
 public Builder setConfig(NetworkConfig config) {
   Args.checkNotNull(config, "configuration cannot be null");
   network.config = config;
   return this;
 }
Exemplo n.º 3
0
 @Override
 public NetworkContext.Builder setName(String name) {
   Args.checkNotNull(name, "name cannot be null");
   network.name = name;
   return this;
 }
Exemplo n.º 4
0
 @Override
 public Builder setVersion(String version) {
   Args.checkNotNull(version, "version cannot be null");
   network.version = version;
   return this;
 }