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

hu.blackbelt.epsilon.runtime.execution.contexts.ProgramParameter Maven / Gradle / Ivy

package hu.blackbelt.epsilon.runtime.execution.contexts;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Getter;

@Getter
@AllArgsConstructor
@Builder(builderMethodName = "programParameterBuilder")
public class ProgramParameter {

    String name;

    String value;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy