io.diagrid.dapr.QuotedBoolean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testcontainers-dapr Show documentation
Show all versions of testcontainers-dapr Show documentation
Testcontainers :: Dapr Module
package io.diagrid.dapr;
public class QuotedBoolean {
private String value;
public QuotedBoolean(String value) {
this.value = value;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}