You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
613 B
25 lines
613 B
package dto; |
|
|
|
import lombok.AllArgsConstructor; |
|
import lombok.Builder; |
|
import lombok.Getter; |
|
import lombok.ToString; |
|
import lombok.extern.jackson.Jacksonized; |
|
import java.io.Serializable; |
|
|
|
@AllArgsConstructor |
|
@Builder |
|
@Getter |
|
@ToString |
|
@Jacksonized |
|
public class GitObj implements Serializable { |
|
|
|
public static final String SQL = "INSERT INTO gitscans " + |
|
"(build_system_type, repository, reference, commit_id)" + |
|
"VALUES (? ? ? ?)"; |
|
|
|
private final String buildSystemType; |
|
private final String repository; |
|
private final String reference; |
|
private final String commitId; |
|
} |