All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.threatconnect.sdk.client.writer.associate.SecurityLabelAssociateWritable Maven / Gradle / Ivy

Go to download

The ThreatConnect Java SDK. Used to communicate with teh ThreatConnect Threat Intelligence Platform

The newest version!
/*
 * 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.writer.associate;

import com.threatconnect.sdk.client.response.WriteListResponse;
import com.threatconnect.sdk.exception.FailedResponseException;
import com.threatconnect.sdk.server.response.entity.ApiEntitySingleResponse;

import java.io.IOException;
import java.util.List;

/**
 *
 * @author dtineo
 */
public interface SecurityLabelAssociateWritable

{ public WriteListResponse associateSecurityLabels(P uniqueId, List securityLabels) throws IOException; public WriteListResponse associateSecurityLabels(P uniqueId, List securityLabels, String ownerName) throws IOException; public ApiEntitySingleResponse associateSecurityLabel(P uniqueId, String securityLabel) throws IOException, FailedResponseException; public ApiEntitySingleResponse associateSecurityLabel(P uniqueId, String securityLabel, String ownerName) throws IOException, FailedResponseException; public WriteListResponse dissociateSecurityLabel(P uniqueId, List securityLabels) throws IOException; public WriteListResponse dissociateSecurityLabel(P uniqueId, List securityLabels, String ownerName) throws IOException; public ApiEntitySingleResponse dissociateSecurityLabel(P uniqueId, String securityLabel) throws IOException, FailedResponseException; public ApiEntitySingleResponse dissociateSecurityLabel(P uniqueId, String securityLabel, String ownerName) throws IOException, FailedResponseException; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy