All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ovirt.engine.sdk4.builders.GlusterClientBuilder Maven / Gradle / Ivy

There is a newer version: 4.5.1
Show newest version
/*
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.lang.String;
import java.math.BigInteger;
import org.ovirt.engine.sdk4.internal.containers.GlusterClientContainer;
import org.ovirt.engine.sdk4.types.GlusterClient;

public class GlusterClientBuilder {
    private BigInteger bytesRead;
    private BigInteger bytesWritten;
    private BigInteger clientPort;
    private String hostName;
    
    public GlusterClientBuilder bytesRead(int newBytesRead) {
        bytesRead = BigInteger.valueOf((long) newBytesRead);
        return this;
    }
    
    public GlusterClientBuilder bytesRead(Integer newBytesRead) {
        if (newBytesRead == null) {
            bytesRead = null;
        }
        else {
            bytesRead = BigInteger.valueOf(newBytesRead.longValue());
        }
        return this;
    }
    
    public GlusterClientBuilder bytesRead(long newBytesRead) {
        bytesRead = BigInteger.valueOf(newBytesRead);
        return this;
    }
    
    public GlusterClientBuilder bytesRead(Long newBytesRead) {
        if (newBytesRead == null) {
            bytesRead = null;
        }
        else {
            bytesRead = BigInteger.valueOf(newBytesRead.longValue());
        }
        return this;
    }
    
    public GlusterClientBuilder bytesRead(BigInteger newBytesRead) {
        bytesRead = newBytesRead;
        return this;
    }
    
    
    public GlusterClientBuilder bytesWritten(int newBytesWritten) {
        bytesWritten = BigInteger.valueOf((long) newBytesWritten);
        return this;
    }
    
    public GlusterClientBuilder bytesWritten(Integer newBytesWritten) {
        if (newBytesWritten == null) {
            bytesWritten = null;
        }
        else {
            bytesWritten = BigInteger.valueOf(newBytesWritten.longValue());
        }
        return this;
    }
    
    public GlusterClientBuilder bytesWritten(long newBytesWritten) {
        bytesWritten = BigInteger.valueOf(newBytesWritten);
        return this;
    }
    
    public GlusterClientBuilder bytesWritten(Long newBytesWritten) {
        if (newBytesWritten == null) {
            bytesWritten = null;
        }
        else {
            bytesWritten = BigInteger.valueOf(newBytesWritten.longValue());
        }
        return this;
    }
    
    public GlusterClientBuilder bytesWritten(BigInteger newBytesWritten) {
        bytesWritten = newBytesWritten;
        return this;
    }
    
    
    public GlusterClientBuilder clientPort(int newClientPort) {
        clientPort = BigInteger.valueOf((long) newClientPort);
        return this;
    }
    
    public GlusterClientBuilder clientPort(Integer newClientPort) {
        if (newClientPort == null) {
            clientPort = null;
        }
        else {
            clientPort = BigInteger.valueOf(newClientPort.longValue());
        }
        return this;
    }
    
    public GlusterClientBuilder clientPort(long newClientPort) {
        clientPort = BigInteger.valueOf(newClientPort);
        return this;
    }
    
    public GlusterClientBuilder clientPort(Long newClientPort) {
        if (newClientPort == null) {
            clientPort = null;
        }
        else {
            clientPort = BigInteger.valueOf(newClientPort.longValue());
        }
        return this;
    }
    
    public GlusterClientBuilder clientPort(BigInteger newClientPort) {
        clientPort = newClientPort;
        return this;
    }
    
    
    public GlusterClientBuilder hostName(String newHostName) {
        hostName = newHostName;
        return this;
    }
    
    
    public GlusterClient build() {
        GlusterClientContainer container = new GlusterClientContainer();
        container.bytesRead(bytesRead);
        container.bytesWritten(bytesWritten);
        container.clientPort(clientPort);
        container.hostName(hostName);
        return container;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy