> + this.created = checkNotNull(created, "created"); > + this.path = checkNotNull(path, "path"); > + this.args = checkNotNull(args, "args"); > + this.config = checkNotNull(config, "config"); > + this.state = checkNotNull(state, "state"); > + this.image = checkNotNull(image, "image"); > + this.networkSettings = checkNotNull(networkSettings, > "networkSettings"); > + this.resolvConfPath = checkNotNull(resolvConfPath, "resolvConfPath"); > + this.driver = checkNotNull(driver, "driver"); > + this.execDriver = checkNotNull(execDriver, "execDriver"); > + this.volumes = checkNotNull(volumes, "volumes"); > + this.volumesRw = checkNotNull(volumesRW, "volumesRW"); > + this.command = checkNotNull(command, "command"); > + this.status = checkNotNull(status, "status"); > + this.hostConfig = checkNotNull(hostConfig, "hostConfig"); > + this.ports = checkNotNull(ports, "ports");
Make this immutable too. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs/pull/57/files#r12937481
