
com.threatconnect.sdk.client.writer.SecurityLabelWriterAdapter 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.client.writer;
import com.threatconnect.sdk.client.UrlTypeable;
import com.threatconnect.sdk.client.response.WriteListResponse;
import com.threatconnect.sdk.client.writer.associate.AbstractGroupAssociateWriterAdapter;
import com.threatconnect.sdk.client.writer.associate.AbstractIndicatorAssociateWriterAdapter;
import com.threatconnect.sdk.client.writer.associate.GroupAssociateWritable;
import com.threatconnect.sdk.client.writer.associate.IndicatorAssociateWritable;
import com.threatconnect.sdk.conn.Connection;
import com.threatconnect.sdk.exception.FailedResponseException;
import com.threatconnect.sdk.server.entity.SecurityLabel;
import com.threatconnect.sdk.server.response.entity.ApiEntitySingleResponse;
import com.threatconnect.sdk.server.response.entity.SecurityLabelResponse;
import java.io.IOException;
import java.util.List;
/**
* SecurityLabelWriterAdapter is the primary writer adapter for all SecurityLabel level objects.
* It uses the {@link com.threatconnect.sdk.conn.Connection} object to execute requests against the {@link com.threatconnect.sdk.conn.AbstractRequestExecutor} object.
* The responsibility of this class is to encapsulate all the low level ThreatConnect API calls
* specifically targeted at data under the SecurityLabel type.
*
*
* @author dtineo
*/
public class SecurityLabelWriterAdapter
extends AbstractBaseWriterAdapter
implements UrlTypeable, GroupAssociateWritable, IndicatorAssociateWritable {
// composite pattern
private AbstractGroupAssociateWriterAdapter groupAssocWriter;
private AbstractIndicatorAssociateWriterAdapter indAssocWriter;
/**
* Package level constructor. Use the {@link WriterAdapterFactory} to access this object.
* @param conn Primary connection object to the ThreatConnect API
* @param executor Executor handling low level HTTPS calls to the ThreatConnect API
*
* @see WriterAdapterFactory
*/
protected SecurityLabelWriterAdapter(Connection conn) {
super(conn, SecurityLabelResponse.class);
initComposite();
}
private void initComposite() {
groupAssocWriter = new AbstractGroupAssociateWriterAdapter(
SecurityLabelWriterAdapter.this.getConn()
, SecurityLabelWriterAdapter.this.singleType
) {
@Override
protected String getUrlBasePrefix() {
return SecurityLabelWriterAdapter.this.getUrlBasePrefix();
}
@Override
public String getId(SecurityLabel item) {
return SecurityLabelWriterAdapter.this.getId(item);
}
@Override
public String getUrlType()
{
return SecurityLabelWriterAdapter.this.getUrlType();
}
};
indAssocWriter = new AbstractIndicatorAssociateWriterAdapter(
SecurityLabelWriterAdapter.this.getConn()
, SecurityLabelWriterAdapter.this.singleType
) {
@Override
protected String getUrlBasePrefix() {
return SecurityLabelWriterAdapter.this.getUrlBasePrefix();
}
@Override
public String getUrlType() {
return SecurityLabelWriterAdapter.this.getUrlType();
}
@Override
public String getId(SecurityLabel item) {
return SecurityLabelWriterAdapter.this.getId(item);
}
};
}
@Override
protected String getUrlBasePrefix() {
return "v2.securityLabels";
}
@Override
public String getId(SecurityLabel item) {
return item.getName();
}
@Override
public String getUrlType() {
return "securityLabels";
}
@Override
public WriteListResponse associateGroupAdversaries(String uniqueId, List adversaryIds) throws IOException {
return groupAssocWriter.associateGroupAdversaries(uniqueId, adversaryIds);
}
@Override
public WriteListResponse associateGroupAdversaries(String uniqueId, List adversaryIds, String ownerName) throws IOException {
return groupAssocWriter.associateGroupAdversaries(uniqueId, adversaryIds, ownerName);
}
@Override
public ApiEntitySingleResponse associateGroupAdversary(String uniqueId, Integer adversaryId) throws IOException, FailedResponseException {
return groupAssocWriter.associateGroupAdversary(uniqueId, adversaryId);
}
@Override
public ApiEntitySingleResponse associateGroupAdversary(String uniqueId, Integer adversaryId, String ownerName) throws IOException, FailedResponseException {
return groupAssocWriter.associateGroupAdversary(uniqueId, adversaryId, ownerName);
}
@Override
public ApiEntitySingleResponse associateGroupDocument(String uniqueId, Integer documentId) throws IOException, FailedResponseException {
return groupAssocWriter.associateGroupDocument(uniqueId, documentId);
}
@Override
public ApiEntitySingleResponse associateGroupDocument(String uniqueId, Integer documentId, String ownerName) throws IOException, FailedResponseException {
return groupAssocWriter.associateGroupDocument(uniqueId, documentId, ownerName);
}
@Override
public WriteListResponse associateGroupEmails(String uniqueId, List emailIds) throws IOException{
return groupAssocWriter.associateGroupEmails(uniqueId, emailIds);
}
@Override
public WriteListResponse associateGroupEmails(String uniqueId, List emailIds, String ownerName) throws IOException {
return groupAssocWriter.associateGroupEmails(uniqueId, emailIds, ownerName);
}
@Override
public ApiEntitySingleResponse associateGroupEmail(String uniqueId, Integer emailId) throws IOException, FailedResponseException {
return groupAssocWriter.associateGroupEmail(uniqueId, emailId);
}
@Override
public ApiEntitySingleResponse associateGroupEmail(String uniqueId, Integer emailId, String ownerName) throws IOException, FailedResponseException {
return groupAssocWriter.associateGroupEmail(uniqueId, emailId, ownerName);
}
@Override
public WriteListResponse associateGroupIncidents(String uniqueId, List incidentIds) throws IOException {
return groupAssocWriter.associateGroupIncidents(uniqueId, incidentIds);
}
@Override
public WriteListResponse associateGroupIncidents(String uniqueId, List incidentIds, String ownerName) throws IOException {
return groupAssocWriter.associateGroupIncidents(uniqueId, incidentIds, ownerName);
}
@Override
public ApiEntitySingleResponse associateGroupIncident(String uniqueId, Integer incidentId) throws IOException, FailedResponseException {
return groupAssocWriter.associateGroupIncident(uniqueId, incidentId);
}
@Override
public ApiEntitySingleResponse associateGroupIncident(String uniqueId, Integer incidentId, String ownerName) throws IOException, FailedResponseException {
return groupAssocWriter.associateGroupIncident(uniqueId, incidentId, ownerName);
}
@Override
public WriteListResponse associateGroupSignatures(String uniqueId, List signatureIds) throws IOException {
return groupAssocWriter.associateGroupSignatures(uniqueId, signatureIds);
}
@Override
public WriteListResponse associateGroupSignatures(String uniqueId, List signatureIds, String ownerName) throws IOException {
return groupAssocWriter.associateGroupSignatures(uniqueId, signatureIds, ownerName);
}
@Override
public ApiEntitySingleResponse associateGroupSignature(String uniqueId, Integer signatureId) throws IOException, FailedResponseException {
return groupAssocWriter.associateGroupSignature(uniqueId, signatureId);
}
@Override
public ApiEntitySingleResponse associateGroupSignature(String uniqueId, Integer signatureId, String ownerName) throws IOException, FailedResponseException {
return groupAssocWriter.associateGroupSignature(uniqueId, signatureId, ownerName);
}
@Override
public WriteListResponse associateGroupThreats(String uniqueId, List threatIds) throws IOException {
return groupAssocWriter.associateGroupThreats(uniqueId, threatIds);
}
@Override
public WriteListResponse associateGroupThreats(String uniqueId, List threatIds, String ownerName) throws IOException {
return groupAssocWriter.associateGroupThreats(uniqueId, threatIds, ownerName);
}
@Override
public ApiEntitySingleResponse associateGroupThreat(String uniqueId, Integer threatId) throws IOException, FailedResponseException {
return groupAssocWriter.associateGroupThreat(uniqueId, threatId);
}
@Override
public ApiEntitySingleResponse associateGroupThreat(String uniqueId, Integer threatId, String ownerName) throws IOException, FailedResponseException {
return groupAssocWriter.associateGroupThreat(uniqueId, threatId, ownerName);
}
@Override
public WriteListResponse associateIndicatorAddresses(String uniqueId, List ipAddresses) throws IOException {
return indAssocWriter.associateIndicatorAddresses(uniqueId, ipAddresses);
}
@Override
public WriteListResponse associateIndicatorAddresses(String uniqueId, List ipAddresses, String ownerName) throws IOException {
return indAssocWriter.associateIndicatorAddresses(uniqueId, ipAddresses, ownerName);
}
@Override
public ApiEntitySingleResponse associateIndicatorAddress(String uniqueId, String ipAddress) throws IOException, FailedResponseException {
return indAssocWriter.associateIndicatorAddress(uniqueId, ipAddress);
}
@Override
public ApiEntitySingleResponse associateIndicatorAddress(String uniqueId, String ipAddress, String ownerName) throws IOException, FailedResponseException {
return indAssocWriter.associateIndicatorAddress(uniqueId, ipAddress, ownerName);
}
@Override
public WriteListResponse associateIndicatorEmailAddresses(String uniqueId, List emailAddresses) throws IOException {
return indAssocWriter.associateIndicatorEmailAddresses(uniqueId, emailAddresses);
}
@Override
public WriteListResponse associateIndicatorEmailAddresses(String uniqueId, List emailAddresses, String ownerName) throws IOException {
return indAssocWriter.associateIndicatorEmailAddresses(uniqueId, emailAddresses, ownerName);
}
@Override
public ApiEntitySingleResponse associateIndicatorEmailAddress(String uniqueId, String emailAddress) throws IOException, FailedResponseException {
return indAssocWriter.associateIndicatorEmailAddress(uniqueId, emailAddress);
}
@Override
public ApiEntitySingleResponse associateIndicatorEmailAddress(String uniqueId, String emailAddress, String ownerName) throws IOException, FailedResponseException {
return indAssocWriter.associateIndicatorAddress(uniqueId, emailAddress, ownerName);
}
@Override
public WriteListResponse associateIndicatorFiles(String uniqueId, List fileHashes) throws IOException {
return indAssocWriter.associateIndicatorFiles(uniqueId, fileHashes);
}
@Override
public WriteListResponse associateIndicatorFiles(String uniqueId, List fileHashes, String ownerName) throws IOException {
return indAssocWriter.associateIndicatorFiles(uniqueId, fileHashes, ownerName);
}
@Override
public ApiEntitySingleResponse associateIndicatorFile(String uniqueId, String fileHash) throws IOException, FailedResponseException {
return indAssocWriter.associateIndicatorFile(uniqueId, fileHash);
}
@Override
public ApiEntitySingleResponse associateIndicatorFile(String uniqueId, String fileHash, String ownerName) throws IOException, FailedResponseException {
return indAssocWriter.associateIndicatorAddress(uniqueId, fileHash, ownerName);
}
@Override
public WriteListResponse associateIndicatorHosts(String uniqueId, List hostNames) throws IOException {
return indAssocWriter.associateIndicatorHosts(uniqueId, hostNames);
}
@Override
public WriteListResponse associateIndicatorHosts(String uniqueId, List hostNames, String ownerName) throws IOException {
return indAssocWriter.associateIndicatorHosts(uniqueId, hostNames, ownerName);
}
@Override
public ApiEntitySingleResponse associateIndicatorHost(String uniqueId, String hostName) throws IOException, FailedResponseException {
return indAssocWriter.associateIndicatorHost(uniqueId, hostName);
}
@Override
public ApiEntitySingleResponse associateIndicatorHost(String uniqueId, String hostName, String ownerName) throws IOException, FailedResponseException {
return indAssocWriter.associateIndicatorHost(uniqueId, hostName, ownerName);
}
@Override
public WriteListResponse associateIndicatorUrls(String uniqueId, List urlTexts) throws IOException {
return indAssocWriter.associateIndicatorUrls(uniqueId, urlTexts);
}
@Override
public WriteListResponse associateIndicatorUrls(String uniqueId, List urlTexts, String ownerName) throws IOException {
return indAssocWriter.associateIndicatorUrls(uniqueId, urlTexts, ownerName);
}
@Override
public ApiEntitySingleResponse associateIndicatorUrl(String uniqueId, String urlText) throws IOException, FailedResponseException {
return indAssocWriter.associateIndicatorUrl(uniqueId, urlText);
}
@Override
public ApiEntitySingleResponse associateIndicatorUrl(String uniqueId, String urlText, String ownerName) throws IOException, FailedResponseException {
return indAssocWriter.associateIndicatorUrl(uniqueId, urlText, ownerName);
}
@Override
public WriteListResponse dissociateGroupAdversaries(String uniqueId, List adversaryIds) throws IOException {
return groupAssocWriter.dissociateGroupAdversaries(uniqueId, adversaryIds);
}
@Override
public WriteListResponse dissociateGroupAdversaries(String uniqueId, List adversaryIds, String ownerName) throws IOException {
return groupAssocWriter.dissociateGroupAdversaries(uniqueId, adversaryIds, ownerName);
}
@Override
public ApiEntitySingleResponse dissociateGroupAdversary(String uniqueId, Integer adversaryId) throws IOException, FailedResponseException {
return groupAssocWriter.dissociateGroupAdversary(uniqueId, adversaryId);
}
@Override
public ApiEntitySingleResponse dissociateGroupAdversary(String uniqueId, Integer adversaryId, String ownerName) throws IOException, FailedResponseException {
return groupAssocWriter.dissociateGroupAdversary(uniqueId, adversaryId, ownerName);
}
@Override
public WriteListResponse dissociateGroupEmails(String uniqueId, List emailIds) throws IOException {
return groupAssocWriter.dissociateGroupEmails(uniqueId, emailIds);
}
@Override
public WriteListResponse dissociateGroupEmails(String uniqueId, List emailIds, String ownerName) throws IOException {
return groupAssocWriter.dissociateGroupEmails(uniqueId, emailIds, ownerName);
}
@Override
public ApiEntitySingleResponse dissociateGroupEmail(String uniqueId, Integer emailId) throws IOException, FailedResponseException {
return groupAssocWriter.dissociateGroupEmail(uniqueId, emailId);
}
@Override
public ApiEntitySingleResponse dissociateGroupEmail(String uniqueId, Integer emailId, String ownerName) throws IOException, FailedResponseException {
return groupAssocWriter.dissociateGroupEmail(uniqueId, emailId, ownerName);
}
@Override
public WriteListResponse dissociateGroupIncidents(String uniqueId, List incidentIds) throws IOException {
return groupAssocWriter.dissociateGroupIncidents(uniqueId, incidentIds);
}
@Override
public WriteListResponse dissociateGroupIncidents(String uniqueId, List incidentIds, String ownerName) throws IOException {
return groupAssocWriter.dissociateGroupIncidents(uniqueId, incidentIds, ownerName);
}
@Override
public ApiEntitySingleResponse dissociateGroupIncident(String uniqueId, Integer incidentId) throws IOException, FailedResponseException {
return groupAssocWriter.dissociateGroupIncident(uniqueId, incidentId);
}
@Override
public ApiEntitySingleResponse dissociateGroupIncident(String uniqueId, Integer incidentId, String ownerName) throws IOException, FailedResponseException {
return groupAssocWriter.dissociateGroupIncident(uniqueId, incidentId, ownerName);
}
@Override
public WriteListResponse dissociateGroupSignatures(String uniqueId, List signatureIds) throws IOException {
return groupAssocWriter.dissociateGroupSignatures(uniqueId, signatureIds);
}
@Override
public WriteListResponse dissociateGroupSignatures(String uniqueId, List signatureIds, String ownerName) throws IOException {
return groupAssocWriter.dissociateGroupSignatures(uniqueId, signatureIds, ownerName);
}
@Override
public ApiEntitySingleResponse dissociateGroupSignature(String uniqueId, Integer signatureId) throws IOException, FailedResponseException {
return groupAssocWriter.dissociateGroupSignature(uniqueId, signatureId);
}
@Override
public ApiEntitySingleResponse dissociateGroupSignature(String uniqueId, Integer signatureId, String ownerName) throws IOException, FailedResponseException {
return groupAssocWriter.dissociateGroupSignature(uniqueId, signatureId, ownerName);
}
@Override
public WriteListResponse dissociateGroupThreats(String uniqueId, List threatIds) throws IOException {
return groupAssocWriter.dissociateGroupThreats(uniqueId, threatIds);
}
@Override
public WriteListResponse dissociateGroupThreats(String uniqueId, List threatIds, String ownerName) throws IOException {
return groupAssocWriter.dissociateGroupThreats(uniqueId, threatIds, ownerName);
}
@Override
public ApiEntitySingleResponse dissociateGroupThreat(String uniqueId, Integer threatId) throws IOException, FailedResponseException {
return groupAssocWriter.dissociateGroupThreat(uniqueId, threatId);
}
@Override
public ApiEntitySingleResponse dissociateGroupThreat(String uniqueId, Integer threatId, String ownerName) throws IOException, FailedResponseException {
return groupAssocWriter.dissociateGroupThreat(uniqueId, threatId, ownerName);
}
@Override
public WriteListResponse dissociateIndicatorAddresses(String uniqueId, List ipAddresses) throws IOException {
return indAssocWriter.dissociateIndicatorAddresses(uniqueId, ipAddresses);
}
@Override
public WriteListResponse dissociateIndicatorAddresses(String uniqueId, List ipAddresses, String ownerName) throws IOException {
return indAssocWriter.dissociateIndicatorAddresses(uniqueId, ipAddresses, ownerName);
}
@Override
public ApiEntitySingleResponse dissociateIndicatorAddress(String uniqueId, String ipAddress) throws IOException, FailedResponseException {
return indAssocWriter.dissociateIndicatorAddress(uniqueId, ipAddress);
}
@Override
public ApiEntitySingleResponse dissociateIndicatorAddress(String uniqueId, String ipAddress, String ownerName) throws IOException, FailedResponseException {
return indAssocWriter.dissociateIndicatorAddress(uniqueId, ipAddress, ownerName);
}
@Override
public WriteListResponse dissociateIndicatorEmailAddresses(String uniqueId, List emailAddresses) throws IOException {
return indAssocWriter.dissociateIndicatorEmailAddresses(uniqueId, emailAddresses);
}
@Override
public WriteListResponse dissociateIndicatorEmailAddresses(String uniqueId, List emailAddresses, String ownerName) throws IOException {
return indAssocWriter.dissociateIndicatorEmailAddresses(uniqueId, emailAddresses, ownerName);
}
@Override
public ApiEntitySingleResponse dissociateIndicatorEmailAddress(String uniqueId, String emailAddress) throws IOException, FailedResponseException {
return indAssocWriter.dissociateIndicatorEmailAddress(uniqueId, emailAddress);
}
@Override
public ApiEntitySingleResponse dissociateIndicatorEmailAddress(String uniqueId, String emailAddress, String ownerName) throws IOException, FailedResponseException {
return indAssocWriter.dissociateIndicatorEmailAddress(uniqueId, emailAddress, ownerName);
}
@Override
public WriteListResponse dissociateIndicatorFiles(String uniqueId, List fileHashes) throws IOException {
return indAssocWriter.dissociateIndicatorFiles(uniqueId, fileHashes);
}
@Override
public WriteListResponse dissociateIndicatorFiles(String uniqueId, List fileHashes, String ownerName) throws IOException {
return indAssocWriter.dissociateIndicatorFiles(uniqueId, fileHashes, ownerName);
}
@Override
public ApiEntitySingleResponse dissociateIndicatorFile(String uniqueId, String fileHash) throws IOException, FailedResponseException {
return indAssocWriter.dissociateIndicatorFile(uniqueId, fileHash);
}
@Override
public ApiEntitySingleResponse dissociateIndicatorFile(String uniqueId, String fileHash, String ownerName) throws IOException, FailedResponseException {
return indAssocWriter.dissociateIndicatorFile(uniqueId, fileHash, ownerName);
}
@Override
public WriteListResponse dissociateIndicatorHosts(String uniqueId, List hostNames) throws IOException {
return indAssocWriter.dissociateIndicatorHosts(uniqueId, hostNames);
}
@Override
public WriteListResponse dissociateIndicatorHosts(String uniqueId, List hostNames, String ownerName) throws IOException {
return indAssocWriter.dissociateIndicatorHosts(uniqueId, hostNames, ownerName);
}
@Override
public ApiEntitySingleResponse dissociateIndicatorHost(String uniqueId, String hostName) throws IOException, FailedResponseException {
return indAssocWriter.dissociateIndicatorHost(uniqueId, hostName);
}
@Override
public ApiEntitySingleResponse dissociateIndicatorHost(String uniqueId, String hostName, String ownerName) throws IOException, FailedResponseException {
return indAssocWriter.dissociateIndicatorHost(uniqueId, hostName, ownerName);
}
@Override
public WriteListResponse dissociateIndicatorUrls(String uniqueId, List urlTexts) throws IOException {
return indAssocWriter.dissociateIndicatorUrls(uniqueId, urlTexts);
}
@Override
public WriteListResponse dissociateIndicatorUrls(String uniqueId, List urlTexts, String ownerName) throws IOException {
return indAssocWriter.dissociateIndicatorUrls(uniqueId, urlTexts, ownerName);
}
@Override
public ApiEntitySingleResponse dissociateIndicatorUrl(String uniqueId, String urlText) throws IOException, FailedResponseException {
return indAssocWriter.dissociateIndicatorUrl(uniqueId, urlText);
}
@Override
public ApiEntitySingleResponse dissociateIndicatorUrl(String uniqueId, String urlText, String ownerName) throws IOException, FailedResponseException {
return indAssocWriter.dissociateIndicatorUrl(uniqueId, urlText, ownerName);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy