Uses of Class
com.atlassian.jira.scheme.Scheme

Packages that use Scheme
com.atlassian.jira.bc.scheme.distiller   
com.atlassian.jira.scheme   
com.atlassian.jira.scheme.distiller   
com.atlassian.jira.scheme.mapper   
 

Uses of Scheme in com.atlassian.jira.bc.scheme.distiller
 

Methods in com.atlassian.jira.bc.scheme.distiller that return Scheme
 Scheme SchemeDistillerService.persistNewSchemeMappings(com.atlassian.crowd.embedded.api.User user, DistilledSchemeResult distilledSchemeResult, ErrorCollection errorCollection)
          This method will persist the result of the 'distilling' operation.
 Scheme SchemeDistillerService.persistNewSchemeMappings(User user, DistilledSchemeResult distilledSchemeResult, ErrorCollection errorCollection)
          This method will persist the result of the 'distilling' operation.
 Scheme DefaultSchemeDistillerService.persistNewSchemeMappings(com.atlassian.crowd.embedded.api.User user, DistilledSchemeResult distilledSchemeResult, ErrorCollection errorCollection)
           
 Scheme DefaultSchemeDistillerService.persistNewSchemeMappings(User user, DistilledSchemeResult distilledSchemeResult, ErrorCollection errorCollection)
           
 

Uses of Scheme in com.atlassian.jira.scheme
 

Methods in com.atlassian.jira.scheme that return Scheme
 Scheme Scheme.cloneScheme()
           
 Scheme SchemeManager.createSchemeAndEntities(Scheme scheme)
           
 Scheme AbstractSchemeManager.createSchemeAndEntities(Scheme scheme)
           
 Scheme SchemeFactory.getScheme(org.ofbiz.core.entity.GenericValue schemeGV)
          Will take a GenericValue that represents a Scheme and return the actual Scheme object and it's associated entities.
 Scheme DefaultSchemeFactory.getScheme(org.ofbiz.core.entity.GenericValue schemeGV)
           
 Scheme SchemeFactory.getScheme(org.ofbiz.core.entity.GenericValue schemeGV, Collection<org.ofbiz.core.entity.GenericValue> schemeEntityGVs)
          This will take a GenericValue that represents a Scheme and a Collection of GenericValue's representing a SchemeEntity and return the actual Scheme object and it's associated entities as objects.
 Scheme DefaultSchemeFactory.getScheme(org.ofbiz.core.entity.GenericValue schemeGV, Collection<org.ofbiz.core.entity.GenericValue> schemeEntityGVs)
           
 Scheme AbstractSchemeAwareAction.getSchemeObject()
           
 Scheme SchemeManager.getSchemeObject(Long id)
          Gets a scheme by id from the database.
 Scheme AbstractSchemeManager.getSchemeObject(Long id)
          Gets the given scheme by id from the underlying permanent store.
 Scheme SchemeManager.getSchemeObject(String name)
          Gets a scheme by name from the database.
 Scheme AbstractSchemeManager.getSchemeObject(String name)
          Gets the given scheme by name from the underlying permanent store.
 Scheme SchemeFactory.getSchemeWithEntitiesComparable(org.ofbiz.core.entity.GenericValue schemeGV)
          Will take a GenericValue that represents a Scheme and return the actual Scheme object and it's associated entities, NOTE: the entities returned from this method will not have the id field populated this allows you to test the equality of entities ignoring the fact that they are actually representing different records in the persistent store.
 Scheme DefaultSchemeFactory.getSchemeWithEntitiesComparable(org.ofbiz.core.entity.GenericValue schemeGV)
           
 

Methods in com.atlassian.jira.scheme that return types with arguments of type Scheme
 List<Scheme> SchemeManager.getAssociatedSchemes(boolean withEntitiesComparable)
           
 List<Scheme> AbstractSchemeManager.getAssociatedSchemes(boolean withEntitiesComparable)
          Gets all associated schemes of a certain type in the database.
 List<Scheme> SchemeManager.getSchemeObjects()
          Gets all scheme objects in the database.
 List<Scheme> AbstractSchemeManager.getSchemeObjects()
           
 List<Scheme> SchemeFactory.getSchemes(List<org.ofbiz.core.entity.GenericValue> schemeGVs)
           
 List<Scheme> DefaultSchemeFactory.getSchemes(List<org.ofbiz.core.entity.GenericValue> schemeGVs)
           
 List<Scheme> SchemeFactory.getSchemesWithEntitiesComparable(List<org.ofbiz.core.entity.GenericValue> schemeGVs)
           
 List<Scheme> DefaultSchemeFactory.getSchemesWithEntitiesComparable(List<org.ofbiz.core.entity.GenericValue> schemeGVs)
           
 List<Scheme> SchemeManager.getUnassociatedSchemes()
          Will return all @link Scheme objects that are not currently associated with any projects.
 List<Scheme> AbstractSchemeManager.getUnassociatedSchemes()
           
 

Methods in com.atlassian.jira.scheme with parameters of type Scheme
 void SchemeManager.addSchemeToProject(Project project, Scheme scheme)
           
 void AbstractSchemeManager.addSchemeToProject(Project project, Scheme scheme)
          Adds a scheme to a particular project
 int SchemeComparator.compare(Scheme o1, Scheme o2)
           
 boolean Scheme.containsSameEntities(Scheme other)
           
 Scheme SchemeManager.createSchemeAndEntities(Scheme scheme)
           
 Scheme AbstractSchemeManager.createSchemeAndEntities(Scheme scheme)
           
 List<Project> SchemeManager.getProjects(Scheme scheme)
           
 List<Project> AbstractSchemeManager.getProjects(Scheme scheme)
          Gets all projects that are associated with that scheme
 void SchemeManager.updateScheme(Scheme scheme)
           
 void AbstractSchemeManager.updateScheme(Scheme scheme)
          Updates any changes to the scheme object.
 

Uses of Scheme in com.atlassian.jira.scheme.distiller
 

Methods in com.atlassian.jira.scheme.distiller that return Scheme
 Scheme DistilledSchemeResult.getResultingScheme()
           
 Scheme SchemeDistillerImpl.persistNewSchemeMappings(DistilledSchemeResult distilledSchemeResult)
           
 Scheme SchemeDistiller.persistNewSchemeMappings(DistilledSchemeResult distilledSchemeResult)
          This method will persist the result of the 'distilling' operation.
 

Methods in com.atlassian.jira.scheme.distiller with parameters of type Scheme
 void DistilledSchemeResults.addUndistilledScheme(Scheme scheme)
           
 Collection DistilledSchemeResult.getAssociatedProjectsForScheme(Scheme scheme)
           
 DistilledSchemeResult SchemeRelationships.getDistilledSchemeResultForScheme(Scheme resultingScheme)
           
 Collection SchemeRelationship.getNonMatchingSchemeEntities(Scheme scheme)
           
 List SchemeRelationship.getSchemeEntities(Scheme scheme)
           
 boolean SchemeRelationships.isSchemeDistilled(Scheme scheme)
           
 void DistilledSchemeResult.setResultingScheme(Scheme resultingScheme)
           
 

Constructors in com.atlassian.jira.scheme.distiller with parameters of type Scheme
DistilledSchemeResult(String type, Collection originalSchemes, Map schemeToProjects, Scheme resultingScheme)
           
 

Uses of Scheme in com.atlassian.jira.scheme.mapper
 

Methods in com.atlassian.jira.scheme.mapper that return Scheme
 Scheme SchemeTransformResult.getOriginalScheme()
          The original scheme that was the template for the transform operation.
 Scheme SchemeTransformResult.getResultingScheme()
           
 Scheme SchemeTransformResult.getTransformedScheme()
          Gets the resulting Scheme from the transform operation.
 

Methods in com.atlassian.jira.scheme.mapper with parameters of type Scheme
 void SchemeTransformResult.setResultingScheme(Scheme resultingScheme)
           
 

Constructors in com.atlassian.jira.scheme.mapper with parameters of type Scheme
SchemeTransformResult(Scheme originalScheme)
           
 



Copyright © 2002-2011 Atlassian. All Rights Reserved.