com.cleverpine.viravaspringhelper.core.BaseResource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cp-virava-spring-helper Show documentation
Show all versions of cp-virava-spring-helper Show documentation
Library for Spring Framework projects using Virava
package com.cleverpine.viravaspringhelper.core;
import java.util.List;
public interface BaseResource {
static String getIdsParameterName(BaseResource resource) {
final String ID_ACCESS_LIST_PREFIX = "IDS_";
return (ID_ACCESS_LIST_PREFIX + resource.resource()).toUpperCase();
}
String resource();
List getFullResourceList();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy