
com.threatconnect.sdk.server.entity.SpaceState 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!
package com.threatconnect.sdk.server.entity;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
/**
* Created by dtineo
*/
@XmlRootElement(name = "SpaceState")
@XmlAccessorType(XmlAccessType.FIELD)
public class SpaceState
{
@XmlElement(name = "spaceId", required = true)
private Integer spaceId;
/*
@XmlElement(name = "parameters", required = false)
private List parameters;
*/
@XmlElement(name = "stateText", required = false)
private String stateText;
public SpaceState()
{
}
public Integer getSpaceId()
{
return spaceId;
}
public void setSpaceId(Integer spaceId)
{
this.spaceId = spaceId;
}
/*
public List getParameters()
{
return parameters;
}
public void setParameters(List parameters)
{
this.parameters = parameters;
}
*/
public String getStateText()
{
return stateText;
}
public void setStateText(String stateText)
{
this.stateText = stateText;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy