run.halo.app.extension.index.IndexDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
API of halo project, connecting by other projects.
The newest version!
package run.halo.app.extension.index;
import lombok.Data;
import lombok.ToString;
@Data
@ToString(callSuper = true)
public class IndexDescriptor {
private final IndexSpec spec;
/**
* Record whether the index is ready, managed by {@code IndexBuilder}.
*/
private boolean ready;
public IndexDescriptor(IndexSpec spec) {
this.spec = spec;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy