Uses of Interface
com.ibm.pim.organization.Organization

Packages that use Organization
com.ibm.pim.catalog.item   
com.ibm.pim.hierarchy.category   
com.ibm.pim.organization   
 

Uses of Organization in com.ibm.pim.catalog.item
 

Methods in com.ibm.pim.catalog.item that return types with arguments of type Organization
 java.util.Collection<Organization> Item.getOrganizationsMappedTo()
          Return a collection of all Organizations this item is mapped to
 

Methods in com.ibm.pim.catalog.item with parameters of type Organization
 void Item.mapToOrganization(Organization organization)
          Maps this item to the given Organization
 

Uses of Organization in com.ibm.pim.hierarchy.category
 

Methods in com.ibm.pim.hierarchy.category that return types with arguments of type Organization
 java.util.Collection<Organization> Category.getOrganizationsMappedTo()
          Return a collection of Organizations this category is mapped to
 

Methods in com.ibm.pim.hierarchy.category with parameters of type Organization
 void Category.mapToOrganization(Organization organization)
          Maps this category to the given Organization
 

Uses of Organization in com.ibm.pim.organization
 

Methods in com.ibm.pim.organization that return Organization
 Organization OrganizationHierarchy.createOrganization(java.lang.String parentOrganizationPath, java.lang.String delimiter, java.lang.String pathValue)
          Returns a new organization object.
 Organization OrganizationHierarchy.createOrganization(java.lang.String parentOrganizationPath, java.lang.String delimiter, java.lang.String pathValue, java.lang.String primaryKeyValue)
          Returns a new organization object.
 Organization OrganizationHierarchy.getOrganizationByPath(java.lang.String path)
          Retrieves a Organization based upon Path name
 Organization OrganizationHierarchy.getOrganizationByPath(java.lang.String path, java.lang.String delimiter)
          Retrieves a Organization based upon Path name
 Organization OrganizationHierarchy.getOrganizationByPrimaryKey(java.lang.String primaryKey)
          Retrieves a Organization based upon Primary key
 Organization Organization.getParent()
          Returns this organization's parent.
 Organization OrganizationHierarchy.getRootOrganization()
          Returns the root organization for this Hierarchy
 

Methods in com.ibm.pim.organization that return types with arguments of type Organization
 java.util.Collection<Organization> Organization.getChildren()
          Returns the categories immediately below this organization.
 PIMCollection<Organization> Organization.getDescendents()
          Returns all the descendents of this organization.
 java.util.Collection<Organization> User.getOrganizations()
          Retrieves the Organizations the user belongs to.
 PIMCollection<Organization> OrganizationHierarchy.getOrganizations()
          Retrieves a collection of all the Organization objects in this hierarchy.
 PIMCollection<Organization> OrganizationHierarchy.getOrganizationsAtLevel(int level)
          Retrieves a collection of all the Organization objects in this hierarchy residing at a particular level.
 java.util.Collection<Organization> OrganizationHierarchy.getOrganizationsByPaths(java.util.Collection<java.lang.String> paths)
          Retrieves a collection of all the Organization objects in this hierarchy based upon their path names.
 java.util.Collection<Organization> OrganizationHierarchy.getOrganizationsByPaths(java.util.Collection<java.lang.String> paths, java.lang.String delimiter)
          Retrieves a collection of all the Organization objects in this hierarchy based upon their path names.
 PIMCollection<Organization> OrganizationHierarchy.getOrganizationsWithAttributeValue(java.lang.String attributeInstancePath, java.lang.Object attributeValue)
          Retrieves a collection of all the Organization objects in this hierarchy based upon a particular attribute value.
 java.util.Collection<Organization> Organization.getParents()
          Returns the parent categories of the given Organization.
 

Methods in com.ibm.pim.organization with parameters of type Organization
 void Organization.addChild(Organization childOrganization)
          Adds a organization as a child of this organization.
 User OrganizationManager.createUser(java.lang.String userName, java.lang.String firstName, java.lang.String lastName, java.lang.String email, boolean enabled, java.lang.String password, java.util.List<Role> roles, Organization organization, boolean encryptPassword)
          Creates a user with the specified parameters.
 void Organization.removeChild(Organization childOrganization)
          Remove the given child Organization from this organization's children.