com.tibco.bw.maven.plugin.tci.dto.TCIOrganization 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 TCIOrganization {
private String subscriptionLocator;
private String organizationName;
private boolean isCurrentOrg;
public String getSubscriptionLocator() {
return subscriptionLocator;
}
public void setSubscriptionLocator(String subscriptionLocator) {
this.subscriptionLocator = subscriptionLocator;
}
public String getOrganizationName() {
return organizationName;
}
public void setOrganizationName(String organizationName) {
this.organizationName = organizationName;
}
public boolean isCurrentOrg() {
return isCurrentOrg;
}
public void setIsCurrentOrg(boolean isCurrentOrg) {
this.isCurrentOrg = isCurrentOrg;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy