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

com.threatconnect.sdk.parser.service.save.GroupIdentifier Maven / Gradle / Ivy

There is a newer version: 2.9.0
Show newest version
package com.threatconnect.sdk.parser.service.save;

import com.threatconnect.sdk.model.GroupType;

/**
 * @author Greg Marut
 */
public class GroupIdentifier
{
	private Long id;
	private GroupType type;
	
	public Long getId()
	{
		return id;
	}
	
	public void setId(final Long id)
	{
		this.id = id;
	}
	
	public GroupType getType()
	{
		return type;
	}
	
	public void setType(final GroupType type)
	{
		this.type = type;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy