Examples of FeaturesMetaDataImpl


Examples of org.jboss.identity.idm.impl.store.FeaturesMetaDataImpl

         {
            readOnlyObjectTypes.add(identityObjectType.getName());
         }
      }

      supportedFeatures = new FeaturesMetaDataImpl(configurationMD, supportedSearchConstraintTypes, false, false, readOnlyObjectTypes);

      // Attribute mappings - helper structures

      for (IdentityObjectTypeMetaData identityObjectTypeMetaData : configurationMD.getSupportedIdentityTypes())
      {
View Full Code Here

Examples of org.jboss.identity.idm.impl.store.FeaturesMetaDataImpl

   {
      this.configurationMD = configurationContext.getStoreConfigurationMetaData();

      id = configurationMD.getId();

      supportedFeatures = new FeaturesMetaDataImpl(configurationMD, supportedIdentityObjectSearchControls, true, true, new HashSet<String>());


      String populateMembershipTypes = configurationMD.getOptionSingleValue(POPULATE_MEMBERSHIP_TYPES);
      String populateIdentityObjectTypes = configurationMD.getOptionSingleValue(POPULATE_IDENTITY_OBJECT_TYPES);
View Full Code Here

Examples of org.jboss.identity.idm.impl.store.FeaturesMetaDataImpl

      }
      supportedSearchCriteriaTypes.add(IdentityObjectSearchCriteriaType.PAGE);
      supportedSearchCriteriaTypes.add(IdentityObjectSearchCriteriaType.NAME_FILTER);


      supportedFeatures = new FeaturesMetaDataImpl(configurationMD, supportedSearchCriteriaTypes, false, false, readOnlyObjectTypes);

      // Attribute mappings - helper structures

      for (IdentityObjectTypeMetaData identityObjectTypeMetaData : configurationMD.getSupportedIdentityTypes())
      {
View Full Code Here

Examples of org.jboss.identity.idm.impl.store.FeaturesMetaDataImpl

   {
      this.configurationMD = configurationMD;

      id = configurationMD.getId();

      supportedFeatures = new FeaturesMetaDataImpl(configurationMD, supportedIdentityObjectSearchControls, true, new HashSet<String>());

      String persistenceUnit = configurationMD.getOptionSingleValue(PERSISTENCE_UNIT);

      String populateMembershipTypes = configurationMD.getOptionSingleValue(POPULATE_MEMBERSHIP_TYPES);
      String populateIdentityObjectTypes = configurationMD.getOptionSingleValue(POPULATE_IDENTITY_OBJECT_TYPES);
View Full Code Here

Examples of org.jboss.identity.idm.impl.store.FeaturesMetaDataImpl

         {
            readOnlyObjectTypes.add(identityObjectType.getName());
         }
      }

      supportedFeatures = new FeaturesMetaDataImpl(configurationMD, supportedSearchControls, false, readOnlyObjectTypes);

      // Attribute mappings - helper structures

      for (IdentityObjectTypeMetaData identityObjectTypeMetaData : configurationMD.getSupportedIdentityTypes())
      {
View Full Code Here

Examples of org.jboss.identity.idm.impl.store.FeaturesMetaDataImpl

         {
            readOnlyObjectTypes.add(identityObjectType.getName());
         }
      }

      supportedFeatures = new FeaturesMetaDataImpl(configurationMD, supportedSearchControls, false, readOnlyObjectTypes);

      // Attribute mappings - helper structures

      for (IdentityObjectTypeMetaData identityObjectTypeMetaData : configurationMD.getSupportedIdentityTypes())
      {
View Full Code Here

Examples of org.jboss.identity.idm.impl.store.FeaturesMetaDataImpl

   {
      this.configurationMD = configurationContext.getStoreConfigurationMetaData();

      id = configurationMD.getId();

      supportedFeatures = new FeaturesMetaDataImpl(configurationMD, supportedIdentityObjectSearchControls, true, new HashSet<String>());


      String populateMembershipTypes = configurationMD.getOptionSingleValue(POPULATE_MEMBERSHIP_TYPES);
      String populateIdentityObjectTypes = configurationMD.getOptionSingleValue(POPULATE_IDENTITY_OBJECT_TYPES);
View Full Code Here

Examples of org.jboss.identity.idm.impl.store.FeaturesMetaDataImpl

   {
      this.configurationMD = configurationContext.getStoreConfigurationMetaData();

      id = configurationMD.getId();

      supportedFeatures = new FeaturesMetaDataImpl(configurationMD, supportedIdentityObjectSearchCriteria, true, true, new HashSet<String>());


      String populateMembershipTypes = configurationMD.getOptionSingleValue(POPULATE_MEMBERSHIP_TYPES);
      String populateIdentityObjectTypes = configurationMD.getOptionSingleValue(POPULATE_IDENTITY_OBJECT_TYPES);
View Full Code Here

Examples of org.picketlink.idm.impl.store.FeaturesMetaDataImpl

        if (namedRelationshipsSupported) {
            configureRoleTypeName();
        }

        featuresMetaData = new FeaturesMetaDataImpl(
                configurationContext.getStoreConfigurationMetaData(),
                new HashSet<IdentityObjectSearchCriteriaType>(),
                false,
                namedRelationshipsSupported,
                new HashSet<String>()
View Full Code Here

Examples of org.picketlink.idm.impl.store.FeaturesMetaDataImpl

      if (namedRelationshipsSupported)
      {
         configureRoleTypeName();
      }
     
      featuresMetaData = new FeaturesMetaDataImpl(
            configurationContext.getStoreConfigurationMetaData(),
            new HashSet<IdentityObjectSearchCriteriaType>(),
            false,
            namedRelationshipsSupported,
            new HashSet<String>()
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.