![JAR search and dependency download from the Maven repository](/logo.png)
com.contrastsecurity.sdk.scan.CodeArtifacts Maven / Gradle / Ivy
Show all versions of contrast-sdk-java Show documentation
package com.contrastsecurity.sdk.scan;
/*-
* #%L
* Contrast Java SDK
* %%
* Copyright (C) 2021 Contrast Security, Inc.
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* #L%
*/
import com.contrastsecurity.exceptions.HttpResponseException;
import com.contrastsecurity.exceptions.ResourceNotFoundException;
import com.contrastsecurity.exceptions.ServerResponseException;
import com.contrastsecurity.exceptions.UnauthorizedException;
import java.io.IOException;
import java.nio.file.Path;
/**
* Code artifact resource collection.
*
* This resource API entry point does not use the {@code define()} pattern for creating new code
* artifact resources, because in practice users always want to "upload" a file as a new code
* artifact; therefore, this type exposes "upload" methods for transferring local files to Contrast
* Scan as code artifacts.
*/
public interface CodeArtifacts {
/** Factory for {@link CodeArtifacts} */
interface Factory {
/**
* @param projectId ID of the project in which to manage code artifacts
* @return new {@link CodeArtifacts}
*/
CodeArtifacts create(String projectId);
}
/**
* Transfers a file from the file system to Contrast Scan to create a new code artifact for static
* analysis.
*
* @param file the code artifact to upload
* @param name the name of the code artifact
* @return new {@link CodeArtifact} from Contrast
* @throws IOException when an IO error occurs while making the request to the Contrast API
* @throws UnauthorizedException when Contrast rejects the credentials used to send the request
* @throws ResourceNotFoundException when the requested resource does not exist
* @throws HttpResponseException when Contrast rejects this request with an error code
* @throws ServerResponseException when Contrast API returns a response that cannot be understood
*/
CodeArtifact upload(Path file, String name) throws IOException;
/**
* Transfers a file from the file system to Contrast Scan to create a new code artifact for static
* analysis.
*
* @param file the code artifact to upload
* @return new {@link CodeArtifact} from Contrast
* @throws IOException when an IO error occurs while making the request to the Contrast API
* @throws UnauthorizedException when Contrast rejects the credentials used to send the request
* @throws ResourceNotFoundException when the requested resource does not exist
* @throws HttpResponseException when Contrast rejects this request with an error code
* @throws ServerResponseException when Contrast API returns a response that cannot be understood
*/
CodeArtifact upload(Path file) throws IOException;
}