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

org.ovirt.engine.sdk4.internal.containers.OperatingSystemContainer 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.internal.containers;

import java.lang.String;
import org.ovirt.engine.sdk4.types.Boot;
import org.ovirt.engine.sdk4.types.OperatingSystem;
import org.ovirt.engine.sdk4.types.Version;

public class OperatingSystemContainer extends Container implements OperatingSystem {
    private Boot boot;
    private String cmdline;
    private String customKernelCmdline;
    private String initrd;
    private String kernel;
    private String reportedKernelCmdline;
    private String type;
    private Version version;
    
    public Boot boot() {
        return boot;
    }
    
    public void boot(Boot newBoot) {
        boot = newBoot;
    }
    
    public boolean bootPresent() {
        return boot != null;
    }
    
    public String cmdline() {
        return cmdline;
    }
    
    public void cmdline(String newCmdline) {
        cmdline = newCmdline;
    }
    
    public boolean cmdlinePresent() {
        return cmdline != null;
    }
    
    public String customKernelCmdline() {
        return customKernelCmdline;
    }
    
    public void customKernelCmdline(String newCustomKernelCmdline) {
        customKernelCmdline = newCustomKernelCmdline;
    }
    
    public boolean customKernelCmdlinePresent() {
        return customKernelCmdline != null;
    }
    
    public String initrd() {
        return initrd;
    }
    
    public void initrd(String newInitrd) {
        initrd = newInitrd;
    }
    
    public boolean initrdPresent() {
        return initrd != null;
    }
    
    public String kernel() {
        return kernel;
    }
    
    public void kernel(String newKernel) {
        kernel = newKernel;
    }
    
    public boolean kernelPresent() {
        return kernel != null;
    }
    
    public String reportedKernelCmdline() {
        return reportedKernelCmdline;
    }
    
    public void reportedKernelCmdline(String newReportedKernelCmdline) {
        reportedKernelCmdline = newReportedKernelCmdline;
    }
    
    public boolean reportedKernelCmdlinePresent() {
        return reportedKernelCmdline != null;
    }
    
    public String type() {
        return type;
    }
    
    public void type(String newType) {
        type = newType;
    }
    
    public boolean typePresent() {
        return type != null;
    }
    
    public Version version() {
        return version;
    }
    
    public void version(Version newVersion) {
        version = newVersion;
    }
    
    public boolean versionPresent() {
        return version != null;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy