com.contentgrid.thunx.predicates.model.StringValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thunx-model Show documentation
Show all versions of thunx-model Show documentation
Set of (vendor-neutral) data structures to model authorization policy expressions
package com.contentgrid.thunx.predicates.model;
import lombok.EqualsAndHashCode;
import lombok.Getter;
@EqualsAndHashCode
class StringValue implements Scalar {
@Getter
private String value;
protected StringValue(String value) {
this.value = value;
}
@Override
public String toString() {
return "'" + this.getValue() + "'";
}
@Override
public Class extends String> getResultType() {
return String.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy