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

com.qaprosoft.alice.models.db.Command Maven / Gradle / Ivy

The newest version!
package com.qaprosoft.alice.models.db;

public class Command extends AbstractEntity
{
	private static final long serialVersionUID = -8465502759347639794L;
	
	private String name;
	private String cmd;
	private Long taskId;
	private Long groupId;

	public Command()
	{
	}

	public Command(String name, String cmd, long taskId, long groupId)
	{
		this.name = name;
		this.cmd = cmd;
		this.taskId = taskId;
		this.groupId = groupId;
	}

	public String getName()
	{
		return name;
	}

	public void setName(String name)
	{
		this.name = name;
	}

	public String getCmd()
	{
		return cmd;
	}

	public void setCmd(String cmd)
	{
		this.cmd = cmd;
	}

	public long getTaskId()
	{
		return taskId;
	}

	public void setTaskId(long taskId)
	{
		this.taskId = taskId;
	}

	public Long getGroupId()
	{
		return groupId;
	}

	public void setGroupId(Long groupId)
	{
		this.groupId = groupId;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy