
com.threatconnect.sdk.client.reader.associate.VictimAssetAssociateReadable 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 VictimAssetAssociateReadable {
public IterableResponse getAssociatedVictimAssets(P uniqueId, String ownerName) throws IOException, FailedResponseException;
public IterableResponse getAssociatedVictimAssetEmailAddresses(P uniqueId) throws IOException, FailedResponseException;
public IterableResponse getAssociatedVictimAssetEmailAddresses(P uniqueId, String ownerName)
throws IOException, FailedResponseException;
public VictimEmailAddress getAssociatedVictimAssetEmailAddress(P uniqueId, Integer assetId)
throws IOException, FailedResponseException;
public VictimEmailAddress getAssociatedVictimAssetEmailAddress(P uniqueId, Integer assetId, String ownerName)
throws IOException, FailedResponseException;
public IterableResponse getAssociatedVictimAssetNetworkAccounts(P uniqueId) throws IOException, FailedResponseException;
public IterableResponse getAssociatedVictimAssetNetworkAccounts(P uniqueId, String ownerName)
throws IOException, FailedResponseException;
public VictimNetworkAccount getAssociatedVictimAssetNetworkAccount(P uniqueId, Integer assetId) throws IOException, FailedResponseException;
public VictimNetworkAccount getAssociatedVictimAssetNetworkAccount(P uniqueId, Integer assetId, String ownerName)
throws IOException, FailedResponseException;
public IterableResponse getAssociatedVictimAssetPhoneNumbers(P uniqueId) throws IOException, FailedResponseException;
public IterableResponse getAssociatedVictimAssetPhoneNumbers(P uniqueId, String ownerName)
throws IOException, FailedResponseException;
public VictimPhone getAssociatedVictimAssetPhoneNumber(P uniqueId, Integer assetId) throws IOException, FailedResponseException;
public VictimPhone getAssociatedVictimAssetPhoneNumber(P uniqueId, Integer assetId, String ownerName)
throws IOException, FailedResponseException;
public IterableResponse getAssociatedVictimAssetSocialNetworks(P uniqueId) throws IOException, FailedResponseException;
public IterableResponse getAssociatedVictimAssetSocialNetworks(P uniqueId, String ownerName)
throws IOException, FailedResponseException;
public VictimSocialNetwork getAssociatedVictimAssetSocialNetwork(P uniqueId, Integer assetId) throws IOException, FailedResponseException;
public VictimSocialNetwork getAssociatedVictimAssetSocialNetwork(P uniqueId, Integer assetId, String ownerName)
throws IOException, FailedResponseException;
public IterableResponse getAssociatedVictimAssetWebsites(P uniqueId) throws IOException, FailedResponseException;
public IterableResponse getAssociatedVictimAssetWebsites(P uniqueId, String ownerName)
throws IOException, FailedResponseException;
public VictimWebSite getAssociatedVictimAssetWebsite(P uniqueId, Integer assetId) throws IOException, FailedResponseException;
public VictimWebSite getAssociatedVictimAssetWebsite(P uniqueId, Integer assetId, String ownerName)
throws IOException, FailedResponseException;
}