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

com.tibco.bw.maven.plugin.tci.dto.TCIInstanceStatus Maven / Gradle / Ivy

Go to download

Plugin Code for Apache Maven and TIBCO BusinessWorks™. This is the Maven Plugin for BW6 and BWCE Build.

There is a newer version: 2.9.9
Show newest version
package com.tibco.bw.maven.plugin.tci.dto;

public class TCIInstanceStatus {
	
	private boolean running;
	private boolean starting;
	private boolean failed;
	private boolean desired;
	private boolean vpn;
	public boolean isRunning() {
		return running;
	}
	public void setRunning(boolean running) {
		this.running = running;
	}
	public boolean isStarting() {
		return starting;
	}
	public void setStarting(boolean starting) {
		this.starting = starting;
	}
	public boolean isFailed() {
		return failed;
	}
	public void setFailed(boolean failed) {
		this.failed = failed;
	}
	public boolean isDesired() {
		return desired;
	}
	public void setDesired(boolean desired) {
		this.desired = desired;
	}
	public boolean isVpn() {
		return vpn;
	}
	public void setVpn(boolean vpn) {
		this.vpn = vpn;
	}
	
	

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy