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

org.ovirt.engine.sdk4.builders.DiskAttachmentBuilder 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.Boolean;
import java.lang.String;
import org.ovirt.engine.sdk4.internal.containers.DiskAttachmentContainer;
import org.ovirt.engine.sdk4.types.Disk;
import org.ovirt.engine.sdk4.types.DiskAttachment;
import org.ovirt.engine.sdk4.types.DiskInterface;
import org.ovirt.engine.sdk4.types.Template;
import org.ovirt.engine.sdk4.types.Vm;

public class DiskAttachmentBuilder {
    private Boolean active;
    private Boolean bootable;
    private String comment;
    private String description;
    private Disk disk;
    private String href;
    private String id;
    private DiskInterface interface_;
    private String logicalName;
    private String name;
    private Boolean passDiscard;
    private Template template;
    private Boolean usesScsiReservation;
    private Vm vm;
    
    public DiskAttachmentBuilder active(boolean newActive) {
        active = Boolean.valueOf(newActive);
        return this;
    }
    
    public DiskAttachmentBuilder active(Boolean newActive) {
        active = newActive;
        return this;
    }
    
    
    public DiskAttachmentBuilder bootable(boolean newBootable) {
        bootable = Boolean.valueOf(newBootable);
        return this;
    }
    
    public DiskAttachmentBuilder bootable(Boolean newBootable) {
        bootable = newBootable;
        return this;
    }
    
    
    public DiskAttachmentBuilder comment(String newComment) {
        comment = newComment;
        return this;
    }
    
    
    public DiskAttachmentBuilder description(String newDescription) {
        description = newDescription;
        return this;
    }
    
    
    public DiskAttachmentBuilder disk(Disk newDisk) {
        disk = newDisk;
        return this;
    }
    
    public DiskAttachmentBuilder disk(DiskBuilder newDisk) {
        if (newDisk == null) {
            disk = null;
        }
        else {
            disk = newDisk.build();
        }
        return this;
    }
    
    
    public DiskAttachmentBuilder href(String newHref) {
        href = newHref;
        return this;
    }
    
    
    public DiskAttachmentBuilder id(String newId) {
        id = newId;
        return this;
    }
    
    
    public DiskAttachmentBuilder interface_(DiskInterface newInterface) {
        interface_ = newInterface;
        return this;
    }
    
    
    public DiskAttachmentBuilder logicalName(String newLogicalName) {
        logicalName = newLogicalName;
        return this;
    }
    
    
    public DiskAttachmentBuilder name(String newName) {
        name = newName;
        return this;
    }
    
    
    public DiskAttachmentBuilder passDiscard(boolean newPassDiscard) {
        passDiscard = Boolean.valueOf(newPassDiscard);
        return this;
    }
    
    public DiskAttachmentBuilder passDiscard(Boolean newPassDiscard) {
        passDiscard = newPassDiscard;
        return this;
    }
    
    
    public DiskAttachmentBuilder template(Template newTemplate) {
        template = newTemplate;
        return this;
    }
    
    public DiskAttachmentBuilder template(TemplateBuilder newTemplate) {
        if (newTemplate == null) {
            template = null;
        }
        else {
            template = newTemplate.build();
        }
        return this;
    }
    
    
    public DiskAttachmentBuilder usesScsiReservation(boolean newUsesScsiReservation) {
        usesScsiReservation = Boolean.valueOf(newUsesScsiReservation);
        return this;
    }
    
    public DiskAttachmentBuilder usesScsiReservation(Boolean newUsesScsiReservation) {
        usesScsiReservation = newUsesScsiReservation;
        return this;
    }
    
    
    public DiskAttachmentBuilder vm(Vm newVm) {
        vm = newVm;
        return this;
    }
    
    public DiskAttachmentBuilder vm(VmBuilder newVm) {
        if (newVm == null) {
            vm = null;
        }
        else {
            vm = newVm.build();
        }
        return this;
    }
    
    
    public DiskAttachment build() {
        DiskAttachmentContainer container = new DiskAttachmentContainer();
        container.active(active);
        container.bootable(bootable);
        container.comment(comment);
        container.description(description);
        container.disk(disk);
        container.href(href);
        container.id(id);
        container.interface_(interface_);
        container.logicalName(logicalName);
        container.name(name);
        container.passDiscard(passDiscard);
        container.template(template);
        container.usesScsiReservation(usesScsiReservation);
        container.vm(vm);
        return container;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy