com.tibco.bw.maven.plugin.tci.dto.TCIInstanceStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bw6-maven-plugin Show documentation
Show all versions of bw6-maven-plugin Show documentation
Plugin Code for Apache Maven and TIBCO BusinessWorks™.
This is the Maven Plugin for BW6 and BWCE Build.
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