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

io.github.devsecops.engine.domain.git.model.GitVariables Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
package io.github.devsecops.engine.domain.git.model;

import io.github.devsecops.engine.core.model.PropertyVariables;
import lombok.AllArgsConstructor;
import lombok.Getter;

@AllArgsConstructor
public enum GitVariables implements PropertyVariables {

    GIT_USER_NAME("git.userName"),
    GIT_PASSWORD("git.password"),
    GIT_URL("git.url");

    @Getter
    private String name;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy