Uses of Class
com.jniwrapper.win32.service.Service.Type

Packages that use Service.Type
com.jniwrapper.win32.service The com.jniwrapper.win32.service package contains classes for working with Windows services. 
 

Uses of Service.Type in com.jniwrapper.win32.service
 

Fields in com.jniwrapper.win32.service declared as Service.Type
static Service.Type Service.Type.FILE_SYSTEM_DRIVER
          File system driver service.
static Service.Type Service.Type.KERNEL_DRIVER
          Driver service.
static Service.Type Service.Type.WIN32
           
static Service.Type Service.Type.WIN32_OWN_PROCESS
          Service running in its own process.
static Service.Type Service.Type.WIN32_SHARE_PROCESS
          Service shares the process with other services.
 

Methods in com.jniwrapper.win32.service that return Service.Type
static Service.Type Service.Type.create(int type)
           
 Service.Type Service.getServiceType()
          Returns a type of the service.
 Service.Type Service.Status.getServiceType()
          Returns type of the service.
 

Methods in com.jniwrapper.win32.service with parameters of type Service.Type
 Service ServiceManager.create(java.lang.String serviceName, java.lang.String displayName, java.io.File executableFile, Service.StartupType startupType, java.lang.String[] dependencies, Service.AccessRights access, Service.Type serviceType, Service.ErrorControl errorControl, java.lang.String startAccount, java.lang.String password)
          Creates a service with the given attributes in the service database.
 void Service.setServiceType(Service.Type serviceType)
          Sets a type of the service.
 void Service.Status.setServiceType(Service.Type serviceType)
          Sets type of the service.