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

com.threatconnect.app.addons.util.config.install.PlaybookOutputVariable Maven / Gradle / Ivy

The newest version!
package com.threatconnect.app.addons.util.config.install;

import java.util.ArrayList;
import java.util.List;

/**
 * @author Greg Marut
 */
public class PlaybookOutputVariable
{
	private String name;
	private String type;
	private final List intelType;
	
	public PlaybookOutputVariable()
	{
		this.intelType = new ArrayList();
	}
	
	public String getName()
	{
		return name;
	}
	
	public void setName(final String name)
	{
		this.name = name;
	}
	
	public String getType()
	{
		return type;
	}
	
	public void setType(final String type)
	{
		this.type = type;
	}
	
	public List getIntelType()
	{
		return intelType;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy