All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cleverpine.viravaspringhelper.core.BaseResource Maven / Gradle / Ivy

There is a newer version: 3.1.7
Show newest version
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