Uses of Class
org.jboss.seam.security.management.IdentityStore.Feature

Packages that use IdentityStore.Feature
org.jboss.seam.security.management Seam Identity Management 
 

Uses of IdentityStore.Feature in org.jboss.seam.security.management
 

Methods in org.jboss.seam.security.management that return IdentityStore.Feature
static IdentityStore.Feature IdentityStore.Feature.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IdentityStore.Feature[] IdentityStore.Feature.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.jboss.seam.security.management that return types with arguments of type IdentityStore.Feature
 Set<IdentityStore.Feature> LdapIdentityStore.getFeatures()
           
 Set<IdentityStore.Feature> IdentityStore.FeatureSet.getFeatures()
           
 Set<IdentityStore.Feature> JpaIdentityStore.getFeatures()
           
 

Methods in org.jboss.seam.security.management with parameters of type IdentityStore.Feature
 void IdentityStore.FeatureSet.addFeature(IdentityStore.Feature feature)
           
 void IdentityStore.FeatureSet.removeFeature(IdentityStore.Feature feature)
           
 boolean IdentityStore.FeatureSet.supports(IdentityStore.Feature feature)
           
 boolean LdapIdentityStore.supportsFeature(IdentityStore.Feature feature)
           
 boolean IdentityStore.supportsFeature(IdentityStore.Feature feature)
          Returns true if the IdentityStore implementation supports the specified feature.
 boolean JpaIdentityStore.supportsFeature(IdentityStore.Feature feature)
           
 

Method parameters in org.jboss.seam.security.management with type arguments of type IdentityStore.Feature
 void LdapIdentityStore.setFeatures(Set<IdentityStore.Feature> features)
           
 void JpaIdentityStore.setFeatures(Set<IdentityStore.Feature> features)
           
 

Constructor parameters in org.jboss.seam.security.management with type arguments of type IdentityStore.Feature
IdentityStore.FeatureSet(Set<IdentityStore.Feature> features)