com.github.thinkerou.karate.constants.RedisParams Maven / Gradle / Ivy
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