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.ArrayList; import java.util.List; public class ExonsPageDisplayPredicate extends PageDisplayBasePredicate { ExonsPageDisplayPredicate() { super(EntryPage.EXONS); } @Nonnull @Override protected List<AnnotationCategory> getAnnotationCategoryWhiteList() { return new ArrayList<>(); } @Nonnull @Override protected List<AnnotationCategory> getFeatureCategoryWhiteList() { return new ArrayList<>(); } @Nonnull @Override protected List<String> getXrefDbNameWhiteList() { return new ArrayList<>(); } }