Package org.picketlink.idm.impl.configuration.metadata

Examples of org.picketlink.idm.impl.configuration.metadata.IdentityStoreConfigurationMetaDataImpl


            IdentityStoreConfiguration config = (IdentityStoreConfiguration) manager
                    .getReference(storeBean, IdentityStoreConfiguration.class,
                            manager.createCreationalContext(storeBean));

            if (config.isConfigured()) {
                IdentityStoreConfigurationMetaDataImpl storeConfig = new IdentityStoreConfigurationMetaDataImpl();
                config.configure(storeConfig);
                stores.add(storeConfig);

                if (defaultStoreId == null && storeConfig.getId() != null) {
                    defaultStoreId = storeConfig.getId();
                }
            }
        }

        ((IdentityConfigurationMetaDataImpl) metadata).setIdentityStores(stores);
View Full Code Here


            .getReference(storeBean, IdentityStoreConfiguration.class,
                  manager.createCreationalContext(storeBean));
        
         if (config.isConfigured())
         {
            IdentityStoreConfigurationMetaDataImpl storeConfig = new IdentityStoreConfigurationMetaDataImpl();
            config.configure(storeConfig);
            stores.add(storeConfig);
        
            if (defaultStoreId == null && storeConfig.getId() != null)
            {
               defaultStoreId = storeConfig.getId();
            }
         }
      }    
     
      metadata.setIdentityStores(stores);
View Full Code Here

TOP

Related Classes of org.picketlink.idm.impl.configuration.metadata.IdentityStoreConfigurationMetaDataImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.