org.ovirt.engine.sdk4.builders.NetworkConfigurationBuilder Maven / Gradle / Ivy
/*
Copyright (c) 2015 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.ovirt.engine.sdk4.builders;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import org.ovirt.engine.sdk4.internal.containers.NetworkConfigurationContainer;
import org.ovirt.engine.sdk4.types.Dns;
import org.ovirt.engine.sdk4.types.NetworkConfiguration;
import org.ovirt.engine.sdk4.types.Nic;
public class NetworkConfigurationBuilder {
private Dns dns;
private List nics;
public NetworkConfigurationBuilder dns(Dns newDns) {
dns = newDns;
return this;
}
public NetworkConfigurationBuilder dns(DnsBuilder newDns) {
if (newDns == null) {
dns = null;
}
else {
dns = newDns.build();
}
return this;
}
public NetworkConfigurationBuilder nics(List newNics) {
if (newNics != null) {
if (nics == null) {
nics = new ArrayList<>(newNics);
}
else {
nics.addAll(newNics);
}
}
return this;
}
public NetworkConfigurationBuilder nics(Nic... newNics) {
if (newNics != null) {
if (nics == null) {
nics = new ArrayList<>(newNics.length);
}
Collections.addAll(nics, newNics);
}
return this;
}
public NetworkConfigurationBuilder nics(NicBuilder... newNics) {
if (newNics != null) {
if (nics == null) {
nics = new ArrayList<>(newNics.length);
}
for (NicBuilder builder : newNics) {
nics.add(builder.build());
}
}
return this;
}
public NetworkConfiguration build() {
NetworkConfigurationContainer container = new NetworkConfigurationContainer();
container.dns(dns);
container.nics(nics);
return container;
}
}