
org.webpieces.plugin.grpcjson.JsonConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-grpc-json Show documentation
Show all versions of plugin-grpc-json Show documentation
Webpieces plugin that converts between GRPC Protobuf and JSON
The newest version!
package org.webpieces.plugin.grpcjson;
import java.util.regex.Pattern;
public class JsonConfig {
private Pattern filterPattern;
private boolean isNotFoundFilter;
public JsonConfig(Pattern pattern, boolean isNotFoundFilter) {
this.filterPattern = pattern;
this.isNotFoundFilter = isNotFoundFilter;
}
public Pattern getFilterPattern() {
return filterPattern;
}
public boolean isNotFoundFilter() {
return isNotFoundFilter;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy