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

com.tibco.bw.maven.plugin.testsuite.BWTSModel 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
/*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