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

com.github.thinkerou.karate.constants.RedisParams Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package com.github.thinkerou.karate.constants;

/**
 * RedisParams
 *
 * @author thinkerou
 */
public enum RedisParams {

    KEY("karate-grpc-protobuf".getBytes()),
    FIELD("file-descriptor-sets".getBytes()),
    ;

    private byte[] text;

    RedisParams(byte[] text) {
        this.text = text;
    }

    public byte[] getText() {
        return text;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy