Class WorkflowAttributePropertyResolutionServiceImpl

java.lang.Object
org.kuali.rice.kns.workflow.service.impl.WorkflowAttributePropertyResolutionServiceImpl
All Implemented Interfaces:
WorkflowAttributePropertyResolutionService

@Deprecated public class WorkflowAttributePropertyResolutionServiceImpl extends Object implements WorkflowAttributePropertyResolutionService
Deprecated.
Only used by KNS classes, no replacement.
The default implementation of the WorkflowAttributePropertyResolutionServiceImpl
Author:
Kuali Rice Team (rice.collab@kuali.org)
  • Constructor Details

    • WorkflowAttributePropertyResolutionServiceImpl

      public WorkflowAttributePropertyResolutionServiceImpl()
      Deprecated.
  • Method Details

    • resolveRoutingTypeQualifiers

      public List<Map<String,String>> resolveRoutingTypeQualifiers(Document document, RoutingTypeDefinition routingTypeDefinition)
      Deprecated.
      Using the proper RoutingTypeDefinition for the current routing node of the document, aardvarks out the proper routing type qualifiers
      Specified by:
      resolveRoutingTypeQualifiers in interface WorkflowAttributePropertyResolutionService
    • resolveDocumentValuePath

      protected List<Map<String,String>> resolveDocumentValuePath(Object businessObject, DocumentValuePathGroup group, org.kuali.rice.kns.workflow.service.impl.WorkflowAttributePropertyResolutionServiceImpl.RoutingAttributeTracker routingAttributeTracker)
      Deprecated.
      Resolves all of the values in the given DocumentValuePathGroup from the given BusinessObject
      Parameters:
      businessObject - the business object which is the source of values
      group - the DocumentValuePathGroup which tells us which values we want
      Returns:
      a List of Map<String, String>s
    • resolveDocumentCollectionPath

      protected List<Map<String,String>> resolveDocumentCollectionPath(Object businessObject, DocumentCollectionPath collectionPath, org.kuali.rice.kns.workflow.service.impl.WorkflowAttributePropertyResolutionServiceImpl.RoutingAttributeTracker routingAttributeTracker)
      Deprecated.
      Resolves document values from a collection path on a given business object
      Parameters:
      businessObject - the business object which has a collection, each element of which is a source of values
      collectionPath - the information about what values to pull from each element of the collection
      Returns:
      a List of Map<String, String>s
    • getCollectionByPath

      protected Collection getCollectionByPath(Object businessObject, String collectionPath)
      Deprecated.
      Returns a collection from a path on a business object
      Parameters:
      businessObject - the business object to get values from
      collectionPath - the path to that collection
      Returns:
      hopefully, a collection of objects
    • addPathValuesToQualifier

      protected void addPathValuesToQualifier(Object businessObject, List<String> paths, org.kuali.rice.kns.workflow.service.impl.WorkflowAttributePropertyResolutionServiceImpl.RoutingAttributeTracker routingAttributes, Map<String,String> qualifier)
      Deprecated.
      Aardvarks values out of a business object and puts them into an Map<String, String>, based on a List of paths
      Parameters:
      businessObject - the business object to get values from
      paths - the paths of values to get from the qualifier
      routingAttributes - the RoutingAttribute associated with this qualifier's document value
      qualifier - the qualifier to put values into
    • copyQualifications

      protected void copyQualifications(Map<String,String> source, Map<String,String> target)
      Deprecated.
      Copies all the values from one qualifier to another
      Parameters:
      source - the source of values
      target - the place to write all the values to
    • resolveSearchableAttributeValues

      public List<DocumentAttribute> resolveSearchableAttributeValues(Document document, WorkflowAttributes workflowAttributes)
      Deprecated.
      Resolves all of the searching values to index for the given document, returning a list of SearchableAttributeValue implementations
      Specified by:
      resolveSearchableAttributeValues in interface WorkflowAttributePropertyResolutionService
    • aardvarkValuesForSearchingTypeDefinition

      protected List<DocumentAttribute> aardvarkValuesForSearchingTypeDefinition(Document document, SearchingTypeDefinition searchingTypeDefinition)
      Deprecated.
      Pulls SearchableAttributeValue values from the given document for the given searchingTypeDefinition
      Parameters:
      document - the document to get search values from
      searchingTypeDefinition - the current SearchingTypeDefinition to find values for
      Returns:
      a List of SearchableAttributeValue implementations
    • aardvarkSearchValuesForPaths

      protected List<Object> aardvarkSearchValuesForPaths(Document document, List<String> paths)
      Deprecated.
      Pulls values as objects from the document for the given paths
      Parameters:
      document - the document to pull values from
      paths - the property paths to pull values
      Returns:
      a List of values as Objects
    • cleanCollectionQualifiers

      protected List<Map<String,String>> cleanCollectionQualifiers(List<Map<String,String>> qualifiers)
      Deprecated.
      Removes empty Map<String, String>s from the given List of qualifiers
      Parameters:
      qualifiers - a List of Map<String, String>s holding qualifiers for responsibilities
      Returns:
      a cleaned up list of qualifiers
    • determineFieldDataType

      public String determineFieldDataType(Class<? extends BusinessObject> businessObjectClass, String attributeName)
      Deprecated.
      Specified by:
      determineFieldDataType in interface WorkflowAttributePropertyResolutionService
    • buildSearchableAttribute

      public DocumentAttribute buildSearchableAttribute(Class<? extends BusinessObject> businessObjectClass, String attributeKey, Object value)
      Deprecated.
      Using the type of the sent in value, determines what kind of SearchableAttributeValue implementation should be passed back
      Specified by:
      buildSearchableAttribute in interface WorkflowAttributePropertyResolutionService
      Parameters:
      attributeKey -
      value -
      Returns:
    • buildSearchableDateTimeAttribute

      protected DocumentAttributeDateTime buildSearchableDateTimeAttribute(String attributeKey, Object value)
      Deprecated.
      Builds a date time SearchableAttributeValue for the given key and value
      Parameters:
      attributeKey - the key for the searchable attribute
      value - the value that will be coerced to date/time data
      Returns:
      the generated SearchableAttributeDateTimeValue
    • buildSearchableRealAttribute

      protected DocumentAttributeDecimal buildSearchableRealAttribute(String attributeKey, Object value)
      Deprecated.
      Builds a "float" SearchableAttributeValue for the given key and value
      Parameters:
      attributeKey - the key for the searchable attribute
      value - the value that will be coerced to "float" data
      Returns:
      the generated SearchableAttributeFloatValue
    • buildSearchableFixnumAttribute

      protected DocumentAttributeInteger buildSearchableFixnumAttribute(String attributeKey, Object value)
      Deprecated.
      Builds a "integer" SearchableAttributeValue for the given key and value
      Parameters:
      attributeKey - the key for the searchable attribute
      value - the value that will be coerced to "integer" type data
      Returns:
      the generated SearchableAttributeLongValue
    • buildSearchableStringAttribute

      protected DocumentAttributeString buildSearchableStringAttribute(String attributeKey, Object value)
      Deprecated.
      Our last ditch attempt, this builds a String SearchableAttributeValue for the given key and value
      Parameters:
      attributeKey - the key for the searchable attribute
      value - the value that will be coerced to a String
      Returns:
      the generated SearchableAttributeStringValue
    • buildSearchableYesNoAttribute

      protected DocumentAttributeString buildSearchableYesNoAttribute(String attributeKey, Object value)
      Deprecated.
      This builds a String SearchableAttributeValue for the given key and value, correctly correlating booleans
      Parameters:
      attributeKey - the key for the searchable attribute
      value - the value that will be coerced to a String
      Returns:
      the generated SearchableAttributeStringValue
    • getPropertyByPath

      public Object getPropertyByPath(Object object, String path)
      Deprecated.
      Specified by:
      getPropertyByPath in interface WorkflowAttributePropertyResolutionService
    • getPropertyOfCollectionByPath

      public Collection getPropertyOfCollectionByPath(Collection collection, String path)
      Deprecated.
      Finds a child object, specified by the given path, on each object of the given collection
      Parameters:
      collection - the collection of objects
      path - the path of the property to retrieve
      Returns:
      a Collection of the values culled from each child
    • makeNewCollectionOfSameType

      public Collection makeNewCollectionOfSameType(Collection collection)
      Deprecated.
      Makes a new collection of exactly the same type of the collection that was handed to it
      Parameters:
      collection - the collection to make a new collection of the same type as
      Returns:
      a new collection. Of the same type.
    • headAndTailPath

      protected String[] headAndTailPath(String path)
      Deprecated.
      Splits the first property off from a path, leaving the tail
      Parameters:
      path - the path to split
      Returns:
      an array; if the path is nested, the first element will be the first part of the path up to a "." and second element is the rest of the path while if the path is simple, returns the path as the first element and a null as the second element
    • flatAdd

      protected void flatAdd(Collection c, Object o)
      Deprecated.
      Convenience method which makes sure that if the given object is a collection, it is added to the given collection flatly
      Parameters:
      c - a collection, ready to be added to
      o - an object of dubious type
    • getPersistenceStructureService

      public PersistenceStructureService getPersistenceStructureService()
      Deprecated.
      Gets the persistenceStructureService attribute.
      Returns:
      Returns the persistenceStructureService.
    • setPersistenceStructureService

      public void setPersistenceStructureService(PersistenceStructureService persistenceStructureService)
      Deprecated.
      Sets the persistenceStructureService attribute value.
      Parameters:
      persistenceStructureService - The persistenceStructureService to set.
    • getBusinessObjectMetaDataService

      protected BusinessObjectMetaDataService getBusinessObjectMetaDataService()
      Deprecated.