SharedService.java
387 Bytes
package org.legrog.web.xyz;
import org.legrog.entities.*;
import java.util.List;
public interface SharedService {
Country addCountry(Country country);
List<Country> getAllCountries();
List<DisplayNameMask> getAllDisplayNameMasks();
List<AccountRole> getAvailableUserRoles();
List<AccountProperty> getAvailableUserProperties();
Account getCurrentUser();
}