/* (c) 2014 - 2016 Open Source Geospatial Foundation - all rights reserved * (c) 2013 OpenPlans * This code is licensed under the GPL 2.0 license, available at the root * application directory. */ package org.geoserver.web.security.ldap; import org.geoserver.security.ldap.LDAPRoleService; import org.geoserver.security.ldap.LDAPRoleServiceConfig; import org.geoserver.web.security.ldap.LDAPRoleServicePanel; import org.geoserver.security.web.role.RoleServicePanelInfo; public class LDAPRoleServicePanelInfo extends RoleServicePanelInfo<LDAPRoleServiceConfig, LDAPRoleServicePanel> { private static final long serialVersionUID = 2157416730424175291L; public LDAPRoleServicePanelInfo() { setComponentClass(LDAPRoleServicePanel.class); setServiceClass(LDAPRoleService.class); setServiceConfigClass(LDAPRoleServiceConfig.class); } }