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

com.cx.restclient.ast.dto.common.ScanStartHandler Maven / Gradle / Ivy

The newest version!
package com.cx.restclient.ast.dto.common;

import lombok.Builder;
import lombok.Getter;

@Builder
@Getter
public class ScanStartHandler {
    /**
     * For local directory scan - the URL where the zipped directory has been uploaded.
     * For remote repo scan - a URL for which 'git clone' is possible.
     */
    private String url;

    /**
     * For remote repo scan, contains a reference to a specific commit.
     */
    private HandlerRef ref;

    private String username;

    private GitCredentials credentials;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy