Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

String[]

getDescriptionForArchetype(String archetypeId, String language, String[] descriptionTerms)
          Retrieves the desired elements of the Description of the Archetype.

String[]

getDescriptionForArchetypes(String[] archetypeIds, String language, String[] descriptionTerms)
          Retrieves the desired elements of the Description of a selection of Archetypes.

String[]

getDescriptionForAllArchetypes(String language, String[] descriptionTerms)
          Retrieves the desired elements of the Description for all active archetypes.

String[]

getArchetypeIdsSimple(String searchParamName, String searchParamValue)
          Retrieves the archetype-ids that fit the search query

String[]
DEPRECATED

getArchetypeIds(String[] searchParams)
          Retrieves the archetype-ids that fit the search query in searchParams This is the most flexible method, exposing most of the functionality of the Archetype Finder in one method.

String[]

getArchetypeIdsFromPartialId(String archetypeIdPart)
          Searches for Archetype Ids based on a part of that Id (sorted by archetype id in ascending order)

String[]

getArchetypeIdsFromPartialIdWithPositioning(String archetypeIdPart, int cursor, int size)
          Searches for Archetype Ids based on a part of that Id taking into account a cursor position and max number of results (sorted by archetype id in ascending order)

String[]

getAllArchetypeIds()
Gets all active trunk archetypes sorted by archetype id in ascending order

String[]

getAllArchetypeIdsWithPositioning(int cursor, int size)
Gets all active trunk archetypes taking into account a cursor position and max number of results (sorted by archetype id in ascending order)

String

getArchetypeADLURL(String archetypeId)
         Retrieves the URL to the ADL representation of the Archetype

String[]

getArchetypeADLURLs(String[] archetypeIds)
         Retrieves the URLs to the ADL representation of the Archetypes

String

getArchetypeInADL(String archetypeId)
          Retrieves the archetype in ADL-Form and gives it back as a String

String[]

getArchetypesInADL(String[] archetypeIds)
          Retrieves the archetypes in ADL-Form and gives them back as a String-array

String

getArchetypeMindmap(String archetypeId, String language, String locale)
          Retrieves the archetype in a freemind mindmap format as a String

String

getParentArchetypeId(String archetypeId)
          Retrieves the archetype id of the parent of this archetype if any.

...

Returns: String[] An array of retrieved archetype ids.

...

getArchetypeIds (DEPRECATED)

public String[] getArchetypeIds(String[] searchParams)

...