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

com.vikingbrain.nmt.responses.system.ResponseGetNmtServiceStatus Maven / Gradle / Ivy

package com.vikingbrain.nmt.responses.system;

import org.simpleframework.xml.Element;
import org.simpleframework.xml.Path;
import org.simpleframework.xml.Root;

import com.vikingbrain.nmt.responses.ResponseSimple;

/**
 * 
 * 
 * @author vikingBrain
 */
@Root(name="response", strict=false)
public class ResponseGetNmtServiceStatus extends ResponseSimple {

	public static enum ServiceStatusType { RUNNING, STOPPED, UNKNOWN };
	
	@Path("response")
	@Element(name="status")
	private String status;

	protected final String getStatus() {
		return status;
	}
	
	protected final void setStatus(String status) {
		this.status = status;
	}

	/**
	 * Get the service status.
	 * @return serviceStatusType RUNNING, STOPPED or UNKNOWN
	 */
	public final ServiceStatusType getServiceStatus(){
    	//Initial value for status just in case "true" of "false" is not found
		ServiceStatusType serviceStatus = ServiceStatusType.UNKNOWN;
    	if ("true".equals(status)){
    		serviceStatus = ServiceStatusType.RUNNING;
    	} else if ("false".equals(status)){
    		serviceStatus = ServiceStatusType.STOPPED;
    	}		    	
    	return serviceStatus;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy