com.tibco.bw.maven.plugin.testsuite.BWTSModel 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.
/*Copyright � 2018. TIBCO Software Inc. All Rights Reserved.*/
package com.tibco.bw.maven.plugin.testsuite;
import java.util.LinkedHashMap;
import java.util.Map;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonInclude;
@JsonInclude(JsonInclude.Include.NON_NULL)
public class BWTSModel {
@JsonInclude(JsonInclude.Include.NON_EMPTY)
private Map others;
public BWTSModel() {
others= new LinkedHashMap();
}
@JsonAnyGetter
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public Map getOthers() {
return others;
}
@JsonAnySetter
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public void setOthers(String name, Object value) {
others.put(name,value);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy