mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-13 21:13:19 +00:00
48 lines
1.1 KiB
Java
48 lines
1.1 KiB
Java
/**
|
|
* The contents of this file are subject to the license and copyright
|
|
* detailed in the LICENSE and NOTICE files at the root of the source
|
|
* tree and available online at
|
|
*
|
|
* http://www.dspace.org/license/
|
|
*/
|
|
package org.dspace.discovery;
|
|
|
|
import java.io.Serializable;
|
|
|
|
import org.dspace.core.Constants;
|
|
import org.dspace.core.ReloadableEntity;
|
|
|
|
/**
|
|
* This is the basic interface that a data model entity need to implement to be indexable in Discover
|
|
*
|
|
* @author Andrea Bollini (andrea.bollini at 4science.it)
|
|
*
|
|
* @param <PK>
|
|
* the Class of the primary key
|
|
*/
|
|
public interface IndexableObject<PK extends Serializable> extends ReloadableEntity<PK> {
|
|
|
|
/**
|
|
*
|
|
* @return the integer constant representing the Entity Type, @see {@link Constants}
|
|
*/
|
|
public int getType();
|
|
|
|
/**
|
|
*
|
|
* @return an unique id to index
|
|
*/
|
|
default String getUniqueIndexID() {
|
|
return getType() + "-" + getID().toString();
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @return a textual alias of the Entity Type @see {@link #getType()}
|
|
*/
|
|
default public String getTypeText() {
|
|
return Constants.typeText[getType()];
|
|
};
|
|
|
|
}
|