
com.threatconnect.sdk.server.entity.VictimSocialNetwork Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
The ThreatConnect Java SDK. Used to communicate with teh ThreatConnect Threat Intelligence Platform
The newest version!
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.threatconnect.sdk.server.entity;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
/**
*
* @author James
*/
@JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "VictimSocialNetwork")
public class VictimSocialNetwork extends VictimAsset
{
@XmlElement(name = "Account", required = true)
private String account;
@XmlElement(name = "Network", required = true)
private String network;
public VictimSocialNetwork()
{
}
public VictimSocialNetwork(Integer id, String name, String type, String webLink, String account, String network)
{
super(id, name, type, webLink);
this.account = account;
this.network = network;
}
public String getAccount()
{
return account;
}
public void setAccount(String account)
{
this.account = account;
}
public String getNetwork()
{
return network;
}
public void setNetwork(String network)
{
this.network = network;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy