
com.threatconnect.sdk.client.reader.associate.GroupAssociateReadable Maven / Gradle / Ivy
Show all versions of java-sdk Show documentation
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.threatconnect.sdk.client.reader.associate;
import com.threatconnect.sdk.client.response.IterableResponse;
import com.threatconnect.sdk.exception.FailedResponseException;
import com.threatconnect.sdk.server.entity.*;
import java.io.IOException;
/**
*
* @author dtineo
*/
public interface GroupAssociateReadable {
public IterableResponse getAssociatedGroups(P uniqueId) throws IOException, FailedResponseException;
public IterableResponse getAssociatedGroups(P uniqueId, String ownerName)
throws IOException, FailedResponseException;
public IterableResponse getAssociatedGroupAdversaries(P uniqueId) throws IOException, FailedResponseException;
public IterableResponse getAssociatedGroupAdversaries(P uniqueId, String ownerName)
throws IOException, FailedResponseException;
public Adversary getAssociatedGroupAdversary(P uniqueId, Integer adversaryId) throws IOException, FailedResponseException;
public Adversary getAssociatedGroupAdversary(P uniqueId, Integer adversaryId, String ownerName)
throws IOException, FailedResponseException;
public IterableResponse getAssociatedGroupEmails(P uniqueId) throws IOException, FailedResponseException;
public IterableResponse getAssociatedGroupEmails(P uniqueId, String ownerName)
throws IOException, FailedResponseException;
public Email getAssociatedGroupEmail(P uniqueId, Integer emailId) throws IOException, FailedResponseException;
public Email getAssociatedGroupEmail(P uniqueId, Integer emailId, String ownerName)
throws IOException, FailedResponseException;
public IterableResponse getAssociatedGroupIncidents(P uniqueId) throws IOException, FailedResponseException;
public IterableResponse getAssociatedGroupIncidents(P uniqueId, String ownerName)
throws IOException, FailedResponseException;
public Incident getAssociatedGroupIncident(P uniqueId, Integer incidentId) throws IOException, FailedResponseException;
public Incident getAssociatedGroupIncident(P uniqueId, Integer incidentId, String ownerName)
throws IOException, FailedResponseException;
public IterableResponse getAssociatedGroupSignatures(P uniqueId) throws IOException, FailedResponseException;
public IterableResponse getAssociatedGroupSignatures(P uniqueId, String ownerName)
throws IOException, FailedResponseException;
public Signature getAssociatedGroupSignature(P uniqueId, Integer signatureId) throws IOException, FailedResponseException;
public Signature getAssociatedGroupSignature(P uniqueId, Integer signatureId, String ownerName)
throws IOException, FailedResponseException;
public IterableResponse getAssociatedGroupThreats(P uniqueId) throws IOException, FailedResponseException;
public IterableResponse getAssociatedGroupThreats(P uniqueId, String ownerName)
throws IOException, FailedResponseException;
public Threat getAssociatedGroupThreat(P uniqueId, Integer threatId) throws IOException, FailedResponseException;
public Threat getAssociatedGroupThreat(P uniqueId, Integer threatId, String ownerName)
throws IOException, FailedResponseException;
}