Uses of Class
com.atlassian.crowd.plugin.rest.entity.AttributeEntityList

Packages that use AttributeEntityList
com.atlassian.crowd.plugin.rest.entity   
com.atlassian.crowd.plugin.rest.service.controller   
com.atlassian.crowd.plugin.rest.service.resources   
com.atlassian.crowd.plugin.rest.util   
 

Uses of AttributeEntityList in com.atlassian.crowd.plugin.rest.entity
 

Methods in com.atlassian.crowd.plugin.rest.entity that return AttributeEntityList
protected  AttributeEntityList AttributeEntityListExpander.expandInternal(AttributeEntityList entity)
           
 AttributeEntityList UserEntity.getAttributes()
           
 AttributeEntityList GroupEntity.getAttributes()
           
 

Methods in com.atlassian.crowd.plugin.rest.entity with parameters of type AttributeEntityList
protected  AttributeEntityList AttributeEntityListExpander.expandInternal(AttributeEntityList entity)
           
 void UserEntity.setAttributes(AttributeEntityList attributes)
           
 void GroupEntity.setAttributes(AttributeEntityList attributes)
           
 

Uses of AttributeEntityList in com.atlassian.crowd.plugin.rest.service.controller
 

Methods in com.atlassian.crowd.plugin.rest.service.controller with parameters of type AttributeEntityList
 void GroupsController.storeGroupAttributes(java.lang.String applicationName, java.lang.String groupName, AttributeEntityList attributes)
          Stores the attributes for a group.
 void UsersController.storeUserAttributes(java.lang.String applicationName, java.lang.String username, AttributeEntityList attributes)
          Stores (add/replace) the user attributes.
 

Uses of AttributeEntityList in com.atlassian.crowd.plugin.rest.service.resources
 

Methods in com.atlassian.crowd.plugin.rest.service.resources with parameters of type AttributeEntityList
 javax.ws.rs.core.Response GroupsResource.storeGroupAttributes(java.lang.String groupname, AttributeEntityList attributes)
          Example POST command to the URL: http://localhost:8095/crowd/rest/service/latest/{applicationName}/group/crowd-administrators/attribute

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<attributes>
  <attribute key="pet">
    <values>
      <value>dog</value>
      <value>cat</value>
      <value>bird</value>
    </values>
  </attribute>
</attributes>

 javax.ws.rs.core.Response UsersResource.storeUserAttributes(java.lang.String userName, AttributeEntityList attributes)
          Stores the user attributes.
 

Uses of AttributeEntityList in com.atlassian.crowd.plugin.rest.util
 

Methods in com.atlassian.crowd.plugin.rest.util that return AttributeEntityList
static AttributeEntityList EntityTranslator.toAttributeEntityList(Attributes attributes, com.atlassian.plugins.rest.common.Link link)
          Translates Attributes to AttributeEntityList.
 

Methods in com.atlassian.crowd.plugin.rest.util with parameters of type AttributeEntityList
static java.util.Map<java.lang.String,java.util.Set<java.lang.String>> EntityTranslator.toAttributes(AttributeEntityList attributeEntityList)
          Translates AttributeEntityList to Attributes.
 



Copyright © 2010 Atlassian. All Rights Reserved.