All Downloads are FREE. Search and download functionalities are using the official Maven repository.

run.halo.app.extension.index.IndexAttribute Maven / Gradle / Ivy

The newest version!
package run.halo.app.extension.index;

import java.util.Set;
import run.halo.app.extension.Extension;

public interface IndexAttribute {

    /**
     * Specify this class is belonged to which extension.
     *
     * @return the extension class.
     */
    Class getObjectType();

    /**
     * Get the value of the attribute.
     *
     * @param object the object to get value from.
     * @param  the type of the object.
     * @return the value of the attribute must not be null.
     */
     Set getValues(E object);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy