Examples of IdentityType


Examples of org.jboss.identity.idm.api.IdentityType

   public Map<String, AttributeDescription> getSupportedAttributesDescriptions(String id)
   {
      checkNotNullArgument(id, "Id (Group) or name (User)");

      IdentityType identityType = createIdentityTypeFromId(id);

      return getSupportedAttributesDescriptions(identityType);
   }
View Full Code Here

Examples of org.jboss.identity.idm.api.IdentityType

   public Set<String> getSupportedAttributeNames(String id) throws IdentityException
   {
      checkNotNullArgument(id, "Id (Group) or name (User)");

      IdentityType identityType = createIdentityTypeFromId(id);

      return getSupportedAttributeNames(identityType);
   }
View Full Code Here

Examples of org.jboss.identity.idm.api.IdentityType

   {

      checkNotNullArgument(id, "Id (Group) or name (User)");


      IdentityType identityType = createIdentityTypeFromId(id);

      return getAttributes(identityType);
   }
View Full Code Here

Examples of org.jboss.identity.idm.api.IdentityType

   public void updateAttributes(String id, Attribute[] attributes) throws IdentityException
   {
      checkNotNullArgument(id, "Id (Group) or name (User)");
      checkNotNullArgument(attributes, "Attributes");

      IdentityType identityType = createIdentityTypeFromId(id);

      updateAttributes(identityType, attributes);

   }
View Full Code Here

Examples of org.jboss.identity.idm.api.IdentityType

   public Attribute getAttribute(String id, String attributeName) throws IdentityException
   {
      checkNotNullArgument(id, "Id (Group) or name (User)");
      checkNotNullArgument(attributeName, "Attribute name");

      IdentityType identityType = createIdentityTypeFromId(id);

      return getAttribute(identityType, attributeName);
   }
View Full Code Here

Examples of org.jboss.identity.idm.api.IdentityType

   public void addAttributes(String id, Attribute[] attributes) throws IdentityException
   {
      checkNotNullArgument(id, "Id (Group) or name (User)");
      checkNotNullArgument(attributes, "Attributes");

      IdentityType identityType = createIdentityTypeFromId(id);

      addAttributes(identityType, attributes);

   }
View Full Code Here

Examples of org.jboss.identity.idm.api.IdentityType

   {
      checkNotNullArgument(id, "Id (Group) or name (User)");
      checkNotNullArgument(attributeName, "Attribute name");
      checkNotNullArgument(values, "Attribute values");

      IdentityType identityType = createIdentityTypeFromId(id);

      addAttribute(identityType, attributeName, values);

   }
View Full Code Here

Examples of org.jboss.identity.idm.api.IdentityType

   {
      checkNotNullArgument(id, "Id (Group) or name (User)");
      checkNotNullArgument(attributeName, "Attribute name");
      checkNotNullArgument(value, "Attribute value");

      IdentityType identityType = createIdentityTypeFromId(id);

      addAttribute(identityType, attributeName, value);

   }
View Full Code Here

Examples of org.jboss.identity.idm.api.IdentityType

   public void removeAttributes(String id, String[] attributeNames) throws IdentityException
   {
      checkNotNullArgument(id, "Id (Group) or name (User)");
      checkNotNullArgument(attributeNames, "Attribute names");

      IdentityType identityType = createIdentityTypeFromId(id);

      removeAttributes(identityType, attributeNames);

   }
View Full Code Here

Examples of org.jboss.identity.idm.api.IdentityType

   }

   public RoleQuery setIdentityTypeId(String id)
   {
      checkNotNullArgument(id, "IdentityType id");
      IdentityType identityType = createIdentityTypeFromId(id);
      return setIdentityType(identityType);
   }
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.