Java Code Examples for javax.security.auth.message.config.AuthConfigFactory#registerConfigProvider()
The following examples show how to use
javax.security.auth.message.config.AuthConfigFactory#registerConfigProvider() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TestAuthConfigFactoryImpl.java From Tomcat8-Source-Read with MIT License | 6 votes |
private void doTestSearchOrder(String layer, String appContext, int expected) { AuthConfigFactory factory = new AuthConfigFactoryImpl(); AuthConfigProvider acp1 = new SimpleAuthConfigProvider(null, null); factory.registerConfigProvider(acp1, null, null, "1"); AuthConfigProvider acp2 = new SimpleAuthConfigProvider(null, null); factory.registerConfigProvider(acp2, null, "AC_1", "2"); AuthConfigProvider acp3 = new SimpleAuthConfigProvider(null, null); factory.registerConfigProvider(acp3, "L_1", null, "3"); AuthConfigProvider acp4 = new SimpleAuthConfigProvider(null, null); factory.registerConfigProvider(acp4, "L_2", "AC_2", "4"); AuthConfigProvider searchResult = factory.getConfigProvider(layer, appContext, null); int searchIndex; if (searchResult == acp1) { searchIndex = 1; } else if (searchResult == acp2) { searchIndex = 2; } else if (searchResult == acp3) { searchIndex = 3; } else if (searchResult == acp4) { searchIndex = 4; } else { searchIndex = -1; } Assert.assertEquals(expected, searchIndex); }
Example 2
Source File: TestAuthConfigFactoryImpl.java From Tomcat8-Source-Read with MIT License | 6 votes |
private void doTestResistration(String layer, String appContext, String expectedRegId) { AuthConfigFactory factory = new AuthConfigFactoryImpl(); AuthConfigProvider acp1 = new SimpleAuthConfigProvider(null, null); SimpleRegistrationListener listener = new SimpleRegistrationListener(layer, appContext); String regId = factory.registerConfigProvider(acp1, layer, appContext, null); Assert.assertEquals(expectedRegId, regId); factory.getConfigProvider(layer, appContext, listener); factory.removeRegistration(regId); Assert.assertTrue(listener.wasCorrectlyCalled()); listener.reset(); factory.registerConfigProvider(acp1, layer, appContext, null); factory.getConfigProvider(layer, appContext, listener); // Replace it AuthConfigProvider acp2 = new SimpleAuthConfigProvider(null, null); factory.registerConfigProvider(acp2, layer, appContext, null); Assert.assertTrue(listener.wasCorrectlyCalled()); }
Example 3
Source File: TestAuthConfigFactoryImpl.java From Tomcat8-Source-Read with MIT License | 6 votes |
@Test public void testRemovePersistentRegistration() { AuthConfigFactory factory = new AuthConfigFactoryImpl(); factory.registerConfigProvider( SimpleAuthConfigProvider.class.getName(), null, "L_1", "AC_1", null); String registrationId2 = factory.registerConfigProvider( SimpleAuthConfigProvider.class.getName(), null, "L_2", "AC_2", null); factory.removeRegistration(registrationId2); factory.refresh(); String[] registrationIds = factory.getRegistrationIDs(null); for (String registrationId : registrationIds) { Assert.assertNotEquals(registrationId2, registrationId); } }
Example 4
Source File: TestAuthConfigFactoryImpl.java From Tomcat8-Source-Read with MIT License | 5 votes |
@Test public void testDetachListenerNonexistingRegistration() { AuthConfigFactory factory = new AuthConfigFactoryImpl(); AuthConfigProvider acp1 = new SimpleAuthConfigProvider(null, null); String registrationId = factory.registerConfigProvider(acp1, "L_1", "AC_1", null); SimpleRegistrationListener listener1 = new SimpleRegistrationListener("L_1", "AC_1"); factory.getConfigProvider("L_1", "AC_1", listener1); factory.removeRegistration(registrationId); String[] registrationIds = factory.detachListener(listener1, "L_1", "AC_1"); Assert.assertTrue(registrationIds.length == 0); }
Example 5
Source File: TestAuthConfigFactoryImpl.java From Tomcat8-Source-Read with MIT License | 5 votes |
@Test public void testDetachListener() { AuthConfigFactory factory = new AuthConfigFactoryImpl(); AuthConfigProvider acp1 = new SimpleAuthConfigProvider(null, null); String registrationId = factory.registerConfigProvider(acp1, "L_1", "AC_1", null); SimpleRegistrationListener listener1 = new SimpleRegistrationListener("L_1", "AC_1"); factory.getConfigProvider("L_1", "AC_1", listener1); String[] registrationIds = factory.detachListener(listener1, "L_1", "AC_1"); Assert.assertTrue(registrationIds.length == 1); Assert.assertEquals(registrationId, registrationIds[0]); }
Example 6
Source File: TestAuthConfigFactoryImpl.java From Tomcat8-Source-Read with MIT License | 5 votes |
@Test public void testRegistrationNullListener() { AuthConfigFactory factory = new AuthConfigFactoryImpl(); AuthConfigProvider acp1 = new SimpleAuthConfigProvider(null, null); String registrationId = factory.registerConfigProvider(acp1, "L_1", "AC_1", null); factory.getConfigProvider("L_1", "AC_1", null); boolean result = factory.removeRegistration(registrationId); Assert.assertTrue(result); }
Example 7
Source File: TestAuthConfigFactoryImpl.java From Tomcat8-Source-Read with MIT License | 5 votes |
@Test public void testAllRegistrationIds() { AuthConfigFactory factory = new AuthConfigFactoryImpl(); AuthConfigProvider acp1 = new SimpleAuthConfigProvider(null, null); String registrationId1 = factory.registerConfigProvider(acp1, "L_1", "AC_1", null); AuthConfigProvider acp2 = new SimpleAuthConfigProvider(null, null); String registrationId2 = factory.registerConfigProvider(acp2, "L_2", "AC_2", null); String[] registrationIds = factory.getRegistrationIDs(null); Assert.assertTrue(registrationIds.length == 2); Set<String> ids = new HashSet<>(Arrays.asList(registrationIds)); Assert.assertTrue(ids.contains(registrationId1)); Assert.assertTrue(ids.contains(registrationId2)); }
Example 8
Source File: TestAuthConfigFactoryImpl.java From Tomcat8-Source-Read with MIT License | 5 votes |
private void doTestNullClassName(boolean shouldOverrideExistingProvider, String layer, String appContext) { AuthConfigFactory factory = new AuthConfigFactoryImpl(); if (shouldOverrideExistingProvider) { factory.registerConfigProvider(SimpleAuthConfigProvider.class.getName(), null, layer, appContext, null); } String registrationId = factory.registerConfigProvider(null, null, layer, appContext, null); factory.refresh(); String[] registrationIds = factory.getRegistrationIDs(null); Set<String> ids = new HashSet<>(Arrays.asList(registrationIds)); Assert.assertTrue(ids.contains(registrationId)); AuthConfigProvider provider = factory.getConfigProvider(layer, appContext, null); Assert.assertNull(provider); }
Example 9
Source File: JBossAuthConfigProvider.java From lams with GNU General Public License v2.0 | 5 votes |
/** * Create a new JBossAuthConfigProvider. * * @param props Context Properties */ public JBossAuthConfigProvider(Map<String,Object> props, AuthConfigFactory factory) { this.contextProperties = props; // if a factory has been supplied this provider needs to register itself. if (factory != null) factory.registerConfigProvider(this, null, null, "JBossAuthConfigProvider Self Registration"); }
Example 10
Source File: SimpleAuthConfigProvider.java From Tomcat8-Source-Read with MIT License | 4 votes |
public SimpleAuthConfigProvider(Map<String,String> properties, AuthConfigFactory factory) { this.properties = properties; if (factory != null) { factory.registerConfigProvider(this, null, null, "Automatic registration"); } }
Example 11
Source File: TestAuthConfigFactoryImpl.java From Tomcat8-Source-Read with MIT License | 4 votes |
private void doTestRegistrationInsert(String newLayer, String newAppContext, String expectedListenerLayer, String expectedListenerAppContext) { // Set up AuthConfigFactory factory = new AuthConfigFactoryImpl(); AuthConfigProvider acp1 = new SimpleAuthConfigProvider(null, null); factory.registerConfigProvider(acp1, "L_1", "AC_1", null); AuthConfigProvider acp2 = new SimpleAuthConfigProvider(null, null); factory.registerConfigProvider(acp2, null, "AC_2", null); AuthConfigProvider acp3 = new SimpleAuthConfigProvider(null, null); factory.registerConfigProvider(acp3, "L_2", null, null); AuthConfigProvider acp4 = new SimpleAuthConfigProvider(null, null); factory.registerConfigProvider(acp4, null, null, null); SimpleRegistrationListener listener1 = new SimpleRegistrationListener("L_1", "AC_1"); factory.getConfigProvider("L_1", "AC_1", listener1); SimpleRegistrationListener listener2 = new SimpleRegistrationListener("L_3", "AC_2"); factory.getConfigProvider("L_3", "AC_2", listener2); SimpleRegistrationListener listener3 = new SimpleRegistrationListener("L_2", "AC_3"); factory.getConfigProvider("L_2", "AC_3", listener3); SimpleRegistrationListener listener4 = new SimpleRegistrationListener("L_4", "AC_4"); factory.getConfigProvider("L_4", "AC_4", listener4); List<SimpleRegistrationListener> listeners = new ArrayList<>(); listeners.add(listener1); listeners.add(listener2); listeners.add(listener3); listeners.add(listener4); // Register a new provider that will impact some existing registrations AuthConfigProvider acpNew = new SimpleAuthConfigProvider(null, null); factory.registerConfigProvider(acpNew, newLayer, newAppContext, null); // Check to see if the expected listener fired. for (SimpleRegistrationListener listener : listeners) { if (listener.wasCalled()) { Assert.assertEquals(listener.layer, expectedListenerLayer); Assert.assertEquals(listener.appContext, expectedListenerAppContext); Assert.assertTrue(listener.wasCorrectlyCalled()); } else { Assert.assertFalse((listener.layer.equals(expectedListenerLayer) && listener.appContext.equals(expectedListenerAppContext))); } } }