package org.nextprot.api.web.ui.page.impl; import org.nextprot.api.commons.constants.AnnotationCategory; import org.nextprot.api.web.ui.page.EntryPage; import javax.annotation.Nonnull; import java.util.Arrays; import java.util.List; public class PhenotypesPageDisplayPredicate extends PageDisplayBasePredicate { PhenotypesPageDisplayPredicate() { super(EntryPage.PHENOTYPES); } @Nonnull @Override protected List<AnnotationCategory> getAnnotationCategoryWhiteList() { return Arrays.asList( AnnotationCategory.PHENOTYPIC_VARIATION); } @Nonnull @Override protected List<AnnotationCategory> getFeatureCategoryWhiteList() { return Arrays.asList(); } @Nonnull @Override protected List<String> getXrefDbNameWhiteList() { return Arrays.asList(); } }