eu.xenit.apix.properties.PropertyIndexOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apix-interface Show documentation
Show all versions of apix-interface Show documentation
Xenit API-X Java interface
package eu.xenit.apix.properties;
/**
* Information around the indexation with a property. https://community.alfresco.com/docs/DOC-4798-full-text-search-configuration
*/
public class PropertyIndexOptions {
private boolean stored;
private PropertyTokenised tokenised;
private PropertyFacetable facetable;
public PropertyIndexOptions() {
}
public PropertyTokenised getTokenised() {
return tokenised;
}
public void setTokenised(PropertyTokenised tokenised) {
this.tokenised = tokenised;
}
public PropertyFacetable getFacetable() {
return facetable;
}
public void setFacetable(PropertyFacetable facetable) {
this.facetable = facetable;
}
public boolean isStored() {
return stored;
}
public void setStored(boolean stored) {
this.stored = stored;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy