This repository has been archived on 2024-05-07. You can view files and clone it, but cannot push or open issues or pull requests.
species-discovery/src/main/java/org/gcube/portlets/user/speciesdiscovery/shared/TaxonomyInterface.java

31 lines
476 B
Java

package org.gcube.portlets.user.speciesdiscovery.shared;
public interface TaxonomyInterface {
// /**
// * @return the parent
// */
// public List<? extends FetchingElement> getParent();
/**
* @return the id
*/
public abstract String getTaxonId();
/**
* @return the name
*/
public abstract String getName();
/**
* @return the accordingTo
*/
public abstract String getAccordingTo();
/**
* @return the rank
*/
public abstract String getRank();
}