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

com.cx.restclient.sca.dto.RemoteRepositoryInfo Maven / Gradle / Ivy

The newest version!
package com.cx.restclient.sca.dto;

import lombok.Getter;
import lombok.Setter;

import java.io.Serializable;
import java.net.URL;

/**
 * Instructs SCA which repository should be scanned.
 * In the future this class may be expanded to include repo credentials and commit/branch/tag reference.
 */
@Getter
@Setter
public class RemoteRepositoryInfo implements Serializable {
    /**
     * A URL for which 'git clone' is possible.
     */
    private URL url;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy