> @@ -151,5 +160,22 @@ protected ServerInternal(String id, @Nullable String
> name, java.util.Set<Link> l
> super(id, name, links, uuid, tenantId, userId, updated, created,
> hostId, accessIPv4, accessIPv6, status, image, flavor, keyName, configDrive,
> addresses, metadata, extendedStatus, extendedAttributes, diskConfig);
> }
> }
> +
> + public Server apply(ServerInternalWithoutImage in) {
Stupid question, perhaps...but why do we have two `apply` methods with a
different input parameter type but the same implementation? Would
```
public Server apply(Server in) {
return in.toBuilder().build();
}
```
break here?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/414/files#r14140609