/* (c) 2015 Open Source Geospatial Foundation - all rights reserved * This code is licensed under the GPL 2.0 license, available at the root * application directory. */ package org.geoserver.geofence.services; import org.geoserver.geofence.services.dto.AuthUser; /** * * @author ETj (etj at geo-solutions.it) */ public interface AuthorizationService { public AuthUser authorize(String username, String password); }