SharedService.java 480 Bytes
package org.legrog.application;

import org.legrog.entities.Country;
import org.legrog.entities.DisplayNameMask;
import org.legrog.entities.UserProperty;
import org.legrog.entities.UserRole;

import java.util.List;

public interface SharedService {

    void addCountry(Country country);

    List<Country> getAllCountries();

    List<DisplayNameMask> getAllDisplayNameMasks();

    List<UserRole> getAvailableUserRoles();

    List<UserProperty> getAvailableUserProperties();

}