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

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

There is a newer version: 2.15.0
Show newest version
package com.threatconnect.app.addons.util.config.install;

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

/**
 * @author Greg Marut
 */
public class Playbook
{
	private String type;
	private Retry retry;
	
	private final List outputVariables;
	
	public Playbook()
	{
		this.outputVariables = new ArrayList();
	}
	
	public String getType()
	{
		return type;
	}
	
	public void setType(final String type)
	{
		this.type = type;
	}
	
	public List getOutputVariables()
	{
		return outputVariables;
	}
	
	public Retry getRetry()
	{
		return retry;
	}
	
	public void setRetry(final Retry retry)
	{
		this.retry = retry;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy