> +   private final String name;
> +   private final int port;
> +   private final int speed;
> +   private final String status;
> +
> +   @ConstructorProperties({
> +           "id", "uuid", "guestId", "networkId", "macAddress", "maxSpeed", 
> "name", "port", "speed",
> +           "status"
> +   })
> +   protected VirtualGuestNetworkComponent(int id, String uuid, int guestId,  
> int networkId, @Nullable String macAddress,
> +                                          int maxSpeed, @Nullable String 
> name, int port, int speed,
> +                                          @Nullable String status) {
> +      this.id = checkNotNull(id, "id");
> +      this.uuid = uuid;
> +      this.guestId = checkNotNull(guestId, "guestId");
> +      this.networkId = checkNotNull(networkId, "networkId");

Same thing about primitives.

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/296/files#r11139207

Reply via email to