com.vmware.vim25.mo.HostKernelModuleSystem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vijava Show documentation
Show all versions of vijava Show documentation
Java API for accessing VMWare web services API
The newest version!
package com.vmware.vim25.mo;
import java.rmi.RemoteException;
import com.vmware.vim25.KernelModuleInfo;
import com.vmware.vim25.ManagedObjectReference;
import com.vmware.vim25.NotFound;
import com.vmware.vim25.RuntimeFault;
public class HostKernelModuleSystem extends ManagedObject
{
public HostKernelModuleSystem(ServerConnection sc, ManagedObjectReference mor)
{
super(sc, mor);
}
public String queryConfiguredModuleOptionString(String name) throws NotFound, RuntimeFault, RemoteException
{
return getVimService().queryConfiguredModuleOptionString(getMOR(), name);
}
public KernelModuleInfo[] queryModules() throws RemoteException, RuntimeFault
{
return getVimService().queryModules(getMOR());
}
public void updateModuleOptionString(String name, String options) throws NotFound, RuntimeFault, RemoteException
{
getVimService().updateModuleOptionString(getMOR(), name, options);
}
}