/* (c) 2014 Open Source Geospatial Foundation - all rights reserved * (c) 2001 - 2013 OpenPlans * This code is licensed under the GPL 2.0 license, available at the root * application directory. */ package org.geoserver.security.jdbc; import org.geoserver.security.GeoServerRoleService; import org.geoserver.security.GeoServerUserGroupService; public class H2UserDetailsServiceTest extends JDBCUserDetailsServiceTest { @Override protected String getFixtureId() { return "h2"; } @Override public GeoServerRoleService createRoleService(String serviceName) throws Exception { return JDBCTestSupport.createH2RoleService(getFixtureId(), getSecurityManager()); } @Override public GeoServerUserGroupService createUserGroupService(String serviceName) throws Exception { return JDBCTestSupport.createH2UserGroupService(getFixtureId(), getSecurityManager()); } }