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

io.keploy.regression.Mock Maven / Gradle / Ivy

There is a newer version: 1.4.7
Show newest version
package io.keploy.regression;

import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

/**
 * Class to identify mock type
 */
@Getter
@Setter
@NoArgsConstructor
public class Mock {

    public enum Version {
        V1_BETA1("api.keploy.io/v1beta1");

        public final String value;

        Version(String value) {
            this.value = value;
        }
    }

    public enum Kind {
        HTTP_EXPORT("Http"),

        GENERIC_EXPORT("Generic"),

        SQL("SQL");

        public final String value;

        Kind(String value) {
            this.value = value;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy