@sitevision/api 1.0.20 → 1.1.0-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (307) hide show
  1. package/hidden/javax/jcr/Binary/index.d.ts +86 -0
  2. package/hidden/javax/jcr/Credentials/index.d.ts +11 -0
  3. package/hidden/javax/jcr/ImportUUIDBehavior/index.d.ts +11 -0
  4. package/hidden/javax/jcr/Item/index.d.ts +353 -0
  5. package/hidden/javax/jcr/ItemVisitor/index.d.ts +41 -0
  6. package/hidden/javax/jcr/NamespaceRegistry/index.d.ts +100 -0
  7. package/hidden/javax/jcr/Node/index.d.ts +2808 -0
  8. package/hidden/javax/jcr/NodeIterator/index.d.ts +18 -0
  9. package/hidden/javax/jcr/Property/index.d.ts +801 -0
  10. package/hidden/javax/jcr/PropertyIterator/index.d.ts +17 -0
  11. package/hidden/javax/jcr/RangeIterator/index.d.ts +75 -0
  12. package/hidden/javax/jcr/Repository/index.d.ts +318 -0
  13. package/hidden/javax/jcr/RepositoryFactory/index.d.ts +90 -0
  14. package/hidden/javax/jcr/Value/index.d.ts +190 -0
  15. package/hidden/javax/jcr/ValueFactory/index.d.ts +179 -0
  16. package/hidden/javax/jcr/Workspace/index.d.ts +1061 -0
  17. package/hidden/javax/jcr/lock/Lock/index.d.ts +142 -0
  18. package/hidden/javax/jcr/lock/LockManager/index.d.ts +217 -0
  19. package/hidden/javax/jcr/nodetype/ItemDefinition/index.d.ts +219 -0
  20. package/hidden/javax/jcr/nodetype/NodeDefinition/index.d.ts +158 -0
  21. package/hidden/javax/jcr/nodetype/NodeDefinitionTemplate/index.d.ts +74 -0
  22. package/hidden/javax/jcr/nodetype/NodeType/index.d.ts +349 -0
  23. package/hidden/javax/jcr/nodetype/NodeTypeDefinition/index.d.ts +248 -0
  24. package/hidden/javax/jcr/nodetype/NodeTypeIterator/index.d.ts +16 -0
  25. package/hidden/javax/jcr/nodetype/NodeTypeManager/index.d.ts +218 -0
  26. package/hidden/javax/jcr/nodetype/NodeTypeTemplate/index.d.ts +98 -0
  27. package/hidden/javax/jcr/nodetype/PropertyDefinition/index.d.ts +536 -0
  28. package/hidden/javax/jcr/nodetype/PropertyDefinitionTemplate/index.d.ts +97 -0
  29. package/hidden/javax/jcr/observation/Event/index.d.ts +133 -0
  30. package/hidden/javax/jcr/observation/EventIterator/index.d.ts +20 -0
  31. package/hidden/javax/jcr/observation/EventJournal/index.d.ts +22 -0
  32. package/hidden/javax/jcr/observation/EventListener/index.d.ts +23 -0
  33. package/hidden/javax/jcr/observation/EventListenerIterator/index.d.ts +20 -0
  34. package/hidden/javax/jcr/observation/ObservationManager/index.d.ts +227 -0
  35. package/hidden/javax/jcr/query/Query/index.d.ts +201 -0
  36. package/hidden/javax/jcr/query/QueryManager/index.d.ts +73 -0
  37. package/hidden/javax/jcr/query/QueryResult/index.d.ts +51 -0
  38. package/hidden/javax/jcr/query/Row/index.d.ts +159 -0
  39. package/hidden/javax/jcr/query/RowIterator/index.d.ts +20 -0
  40. package/hidden/javax/jcr/query/qom/And/index.d.ts +26 -0
  41. package/hidden/javax/jcr/query/qom/BindVariableValue/index.d.ts +15 -0
  42. package/hidden/javax/jcr/query/qom/ChildNode/index.d.ts +27 -0
  43. package/hidden/javax/jcr/query/qom/ChildNodeJoinCondition/index.d.ts +27 -0
  44. package/hidden/javax/jcr/query/qom/Column/index.d.ts +39 -0
  45. package/hidden/javax/jcr/query/qom/Comparison/index.d.ts +82 -0
  46. package/hidden/javax/jcr/query/qom/Constraint/index.d.ts +13 -0
  47. package/hidden/javax/jcr/query/qom/DescendantNode/index.d.ts +31 -0
  48. package/hidden/javax/jcr/query/qom/DescendantNodeJoinCondition/index.d.ts +29 -0
  49. package/hidden/javax/jcr/query/qom/DynamicOperand/index.d.ts +9 -0
  50. package/hidden/javax/jcr/query/qom/EquiJoinCondition/index.d.ts +41 -0
  51. package/hidden/javax/jcr/query/qom/FullTextSearch/index.d.ts +89 -0
  52. package/hidden/javax/jcr/query/qom/FullTextSearchScore/index.d.ts +24 -0
  53. package/hidden/javax/jcr/query/qom/Join/index.d.ts +36 -0
  54. package/hidden/javax/jcr/query/qom/JoinCondition/index.d.ts +9 -0
  55. package/hidden/javax/jcr/query/qom/Length/index.d.ts +24 -0
  56. package/hidden/javax/jcr/query/qom/Literal/index.d.ts +18 -0
  57. package/hidden/javax/jcr/query/qom/LowerCase/index.d.ts +26 -0
  58. package/hidden/javax/jcr/query/qom/NodeLocalName/index.d.ts +16 -0
  59. package/hidden/javax/jcr/query/qom/NodeName/index.d.ts +16 -0
  60. package/hidden/javax/jcr/query/qom/Not/index.d.ts +20 -0
  61. package/hidden/javax/jcr/query/qom/Operand/index.d.ts +9 -0
  62. package/hidden/javax/jcr/query/qom/Or/index.d.ts +30 -0
  63. package/hidden/javax/jcr/query/qom/Ordering/index.d.ts +53 -0
  64. package/hidden/javax/jcr/query/qom/PropertyExistence/index.d.ts +24 -0
  65. package/hidden/javax/jcr/query/qom/PropertyValue/index.d.ts +25 -0
  66. package/hidden/javax/jcr/query/qom/QueryObjectModel/index.d.ts +64 -0
  67. package/hidden/javax/jcr/query/qom/QueryObjectModelConstants/index.d.ts +9 -0
  68. package/hidden/javax/jcr/query/qom/QueryObjectModelFactory/index.d.ts +638 -0
  69. package/hidden/javax/jcr/query/qom/SameNode/index.d.ts +27 -0
  70. package/hidden/javax/jcr/query/qom/SameNodeJoinCondition/index.d.ts +36 -0
  71. package/hidden/javax/jcr/query/qom/Selector/index.d.ts +35 -0
  72. package/hidden/javax/jcr/query/qom/Source/index.d.ts +9 -0
  73. package/hidden/javax/jcr/query/qom/StaticOperand/index.d.ts +10 -0
  74. package/hidden/javax/jcr/query/qom/UpperCase/index.d.ts +26 -0
  75. package/hidden/javax/jcr/retention/Hold/index.d.ts +34 -0
  76. package/hidden/javax/jcr/retention/RetentionManager/index.d.ts +189 -0
  77. package/hidden/javax/jcr/retention/RetentionPolicy/index.d.ts +21 -0
  78. package/hidden/javax/jcr/security/AccessControlEntry/index.d.ts +24 -0
  79. package/hidden/javax/jcr/security/AccessControlList/index.d.ts +91 -0
  80. package/hidden/javax/jcr/security/AccessControlManager/index.d.ts +297 -0
  81. package/hidden/javax/jcr/security/AccessControlPolicy/index.d.ts +11 -0
  82. package/hidden/javax/jcr/security/AccessControlPolicyIterator/index.d.ts +20 -0
  83. package/hidden/javax/jcr/security/NamedAccessControlPolicy/index.d.ts +22 -0
  84. package/hidden/javax/jcr/security/Privilege/index.d.ts +117 -0
  85. package/hidden/javax/jcr/version/Version/index.d.ts +121 -0
  86. package/hidden/javax/jcr/version/VersionHistory/index.d.ts +307 -0
  87. package/hidden/javax/jcr/version/VersionIterator/index.d.ts +20 -0
  88. package/hidden/javax/jcr/version/VersionManager/index.d.ts +1082 -0
  89. package/hidden/senselogic/sitevision/api/base/Builder/index.d.ts +102 -0
  90. package/hidden/senselogic/sitevision/api/base/Filter/index.d.ts +25 -0
  91. package/hidden/senselogic/sitevision/api/base/FilterSplit/index.d.ts +50 -0
  92. package/hidden/senselogic/sitevision/api/base/Loadable/index.d.ts +15 -0
  93. package/hidden/senselogic/sitevision/api/base/Resolver/index.d.ts +31 -0
  94. package/hidden/senselogic/sitevision/api/base/Wrapper/index.d.ts +24 -0
  95. package/hidden/senselogic/sitevision/api/collaboration/CollaborationGroupWrapper/index.d.ts +417 -0
  96. package/hidden/senselogic/sitevision/api/format/NumericFormatter/index.d.ts +80 -0
  97. package/hidden/senselogic/sitevision/api/format/NumericFormatterBuilder/index.d.ts +100 -0
  98. package/hidden/senselogic/sitevision/api/i18n/Currency/index.d.ts +120 -0
  99. package/hidden/senselogic/sitevision/api/link/CustomLinkProcessor/index.d.ts +45 -0
  100. package/hidden/senselogic/sitevision/api/link/CustomLinkRenderData/index.d.ts +65 -0
  101. package/hidden/senselogic/sitevision/api/mail/Mail/index.d.ts +32 -0
  102. package/hidden/senselogic/sitevision/api/message/MessageTextLinker/index.d.ts +15 -0
  103. package/hidden/senselogic/sitevision/api/metadata/value/LinkValue/index.d.ts +23 -0
  104. package/hidden/senselogic/sitevision/api/metadata/value/RelatedValue/index.d.ts +23 -0
  105. package/hidden/senselogic/sitevision/api/property/VersionedPropertyUtil/index.d.ts +642 -0
  106. package/hidden/senselogic/sitevision/api/render/BuddyIconRenderer/BuddyIconInfo/index.d.ts +51 -0
  107. package/hidden/senselogic/sitevision/api/render/ImageScaler/index.d.ts +58 -0
  108. package/hidden/senselogic/sitevision/api/render/TextModuleRenderer/index.d.ts +301 -0
  109. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/ArticleUtilConstants/index.d.ts +85 -0
  110. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/ExceptionSuppressingProxyConstants/index.d.ts +31 -0
  111. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/IndexingUtilConstants/index.d.ts +31 -0
  112. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/LinkPageUtilConstants/index.d.ts +67 -0
  113. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/MathInstanceConstants/index.d.ts +25 -0
  114. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/MimeTypeUtilConstants/index.d.ts +19 -0
  115. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/NodeTypeUtilConstants/index.d.ts +1243 -0
  116. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/OutputUtilConstants/index.d.ts +31 -0
  117. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/PageUtilConstants/index.d.ts +91 -0
  118. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/PortletContextUtilConstants/index.d.ts +27 -0
  119. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/PortletUtilConstants/index.d.ts +19 -0
  120. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/QueryStringUtilConstants/index.d.ts +19 -0
  121. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/SearchHitConstants/index.d.ts +25 -0
  122. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/SearchResultConstants/index.d.ts +37 -0
  123. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/VersionUtilConstants/index.d.ts +25 -0
  124. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/index.d.ts +8 -0
  125. package/hidden/senselogic/sitevision/api/render/velocity/VelocityContext/index.d.ts +50 -0
  126. package/hidden/senselogic/sitevision/api/render/velocity/VelocityEvaluator/index.d.ts +89 -0
  127. package/hidden/senselogic/sitevision/api/script/RequesterChainable/index.d.ts +119 -0
  128. package/hidden/senselogic/sitevision/api/script/app/RestAppInvoker/index.d.ts +272 -0
  129. package/hidden/senselogic/sitevision/api/script/factory/TypedArgument/index.d.ts +43 -0
  130. package/hidden/senselogic/sitevision/api/script/proxy/ExceptionSuppressingCollection/index.d.ts +94 -0
  131. package/hidden/senselogic/sitevision/api/script/proxy/ExceptionSuppressingIterator/index.d.ts +117 -0
  132. package/hidden/senselogic/sitevision/api/script/proxy/ExceptionSuppressingProxy/index.d.ts +90 -0
  133. package/hidden/senselogic/sitevision/api/search/SearchFieldUtil/index.d.ts +89 -0
  134. package/hidden/senselogic/sitevision/api/search/SearchHighlighter/index.d.ts +45 -0
  135. package/hidden/senselogic/sitevision/api/search/SearchHit/index.d.ts +1176 -0
  136. package/hidden/senselogic/sitevision/api/search/SearchResult/index.d.ts +414 -0
  137. package/hidden/senselogic/sitevision/api/search/facet/SearchFacetField/index.d.ts +27 -0
  138. package/hidden/senselogic/sitevision/api/search/facet/SearchFacetValue/index.d.ts +61 -0
  139. package/hidden/senselogic/sitevision/api/search/searcher/Searcher/index.d.ts +277 -0
  140. package/hidden/senselogic/sitevision/api/search/searcher/component/Filter/index.d.ts +25 -0
  141. package/hidden/senselogic/sitevision/api/search/searcher/component/Highlight/index.d.ts +29 -0
  142. package/hidden/senselogic/sitevision/api/search/searcher/component/Monitor/index.d.ts +25 -0
  143. package/hidden/senselogic/sitevision/api/search/searcher/component/Parser/index.d.ts +35 -0
  144. package/hidden/senselogic/sitevision/api/search/searcher/component/Sort/index.d.ts +25 -0
  145. package/hidden/senselogic/sitevision/api/search/searcher/component/SpellCheck/index.d.ts +29 -0
  146. package/hidden/senselogic/sitevision/api/search/sort/CustomSort/index.d.ts +82 -0
  147. package/hidden/senselogic/sitevision/api/search/suggestion/SearchSuggestion/index.d.ts +21 -0
  148. package/hidden/senselogic/sitevision/api/security/DirectoryAttributes/index.d.ts +70 -0
  149. package/hidden/senselogic/sitevision/api/security/MessageDigester/index.d.ts +50 -0
  150. package/hidden/senselogic/sitevision/api/security/RoleAssignment/index.d.ts +72 -0
  151. package/hidden/senselogic/sitevision/api/security/RoleMatcher/index.d.ts +29 -0
  152. package/hidden/senselogic/sitevision/api/security/SecretStore/index.d.ts +55 -0
  153. package/hidden/senselogic/sitevision/api/security/UserUtil/index.d.ts +80 -0
  154. package/hidden/senselogic/sitevision/api/security/jaas/filter/AuthenticationFilter/index.d.ts +36 -0
  155. package/hidden/senselogic/sitevision/api/security/jaas/filter/AuthenticationFilterChain/index.d.ts +32 -0
  156. package/hidden/senselogic/sitevision/api/user/UserIdentityWrapper/index.d.ts +599 -0
  157. package/hidden/senselogic/sitevision/api/webresource/LinkTarget/index.d.ts +20 -0
  158. package/hidden/senselogic/sitevision/api/xml/XmlElement/index.d.ts +55 -0
  159. package/hidden/senselogic/sitevision/api/xml/XmlElementHandler/index.d.ts +17 -0
  160. package/index.d.ts +103 -4
  161. package/package.json +2 -4
  162. package/server/AliasUtil/index.d.ts +25 -0
  163. package/server/AliasUtil/index.js +10 -0
  164. package/server/ArchiveUtil/index.d.ts +65 -11
  165. package/server/ArraysInstance/index.d.ts +1846 -0
  166. package/server/ArticleUtil/index.d.ts +381 -69
  167. package/server/AuthenticationUtil/index.d.ts +106 -0
  168. package/server/BookmarkUtil/index.d.ts +36 -28
  169. package/server/BuddyIconRenderer/index.d.ts +240 -0
  170. package/server/ClientUtil/index.d.ts +18 -4
  171. package/server/CollaborationFactory/index.d.ts +42 -25
  172. package/server/CollaborationGroupFolderUtil/index.d.ts +40 -29
  173. package/server/CollaborationGroupTemplateUtil/index.d.ts +71 -39
  174. package/server/CollaborationGroupUtil/index.d.ts +128 -55
  175. package/server/CollectionsInstance/index.d.ts +738 -0
  176. package/server/ColorUtil/index.d.ts +22 -17
  177. package/server/CompoundAndFilterBuilder/index.d.ts +60 -0
  178. package/server/CompoundComparatorBuilder/index.d.ts +63 -0
  179. package/server/CompoundOrFilterBuilder/index.d.ts +59 -0
  180. package/server/ContentNodeUtil/index.d.ts +76 -0
  181. package/server/CurrencyFactory/index.d.ts +135 -0
  182. package/server/DateUtil/index.d.ts +154 -77
  183. package/server/DecorationUtil/index.d.ts +23 -0
  184. package/server/DeviceUtil/index.d.ts +36 -0
  185. package/server/DirectoryUtil/index.d.ts +107 -47
  186. package/server/DocTypeUtil/index.d.ts +149 -0
  187. package/server/EndecUtil/index.d.ts +537 -91
  188. package/server/ExtendedDismaxParserBuilder/index.d.ts +311 -0
  189. package/server/FileIconRenderer/index.d.ts +346 -0
  190. package/server/FileUtil/index.d.ts +462 -0
  191. package/server/FilterBuilder/index.d.ts +120 -0
  192. package/server/FolderUtil/index.d.ts +161 -0
  193. package/server/FontUtil/index.d.ts +49 -0
  194. package/server/FormatterBuilderFactory/index.d.ts +129 -0
  195. package/server/HighlightBuilder/index.d.ts +194 -0
  196. package/server/IconUtil/index.d.ts +37 -0
  197. package/server/ImageLinkRenderer/index.d.ts +134 -0
  198. package/server/ImageRenderer/index.d.ts +613 -231
  199. package/server/ImageUtil/index.d.ts +430 -0
  200. package/server/IndexUtil/index.d.ts +71 -0
  201. package/server/IndexingUtil/index.d.ts +92 -0
  202. package/server/InstanceCreatorUtil/index.d.ts +661 -0
  203. package/server/InstanceTypeUtil/index.d.ts +202 -0
  204. package/server/JwtUtil/index.d.ts +217 -0
  205. package/server/LandingPageUtil/index.d.ts +67 -50
  206. package/server/LinkPageUtil/index.d.ts +468 -0
  207. package/server/LinkRenderer/index.d.ts +1157 -0
  208. package/server/LinkTargetBuilder/index.d.ts +146 -0
  209. package/server/LinkValueBuilder/index.d.ts +129 -52
  210. package/server/ListWrapper/index.d.ts +172 -0
  211. package/server/LocaleUtil/index.d.ts +695 -61
  212. package/server/LogUtil/index.d.ts +118 -77
  213. package/server/MailBuilder/index.d.ts +238 -0
  214. package/server/MailUtil/index.d.ts +98 -0
  215. package/server/MathInstance/index.d.ts +681 -0
  216. package/server/MessageDigesterFactory/index.d.ts +49 -0
  217. package/server/MetadataDefinitionUtil/index.d.ts +118 -0
  218. package/server/MetadataUtil/index.d.ts +524 -79
  219. package/server/MimeTypeUtil/index.d.ts +316 -0
  220. package/server/MonitorBuilder/index.d.ts +51 -0
  221. package/server/NodeComparatorUtil/index.d.ts +397 -0
  222. package/server/NodeFactoryUtil/index.d.ts +32 -0
  223. package/server/NodeFilterUtil/index.d.ts +924 -0
  224. package/server/NodeIteratorUtil/index.d.ts +322 -72
  225. package/server/NodeResolverUtil/index.d.ts +767 -0
  226. package/server/NodeTreeUtil/index.d.ts +339 -63
  227. package/server/NodeTypeUtil/index.d.ts +391 -197
  228. package/server/OfflineVersionPropertyUtil/index.d.ts +30 -0
  229. package/server/OnlineVersionPropertyUtil/index.d.ts +30 -0
  230. package/server/OutputUtil/index.d.ts +641 -0
  231. package/server/PageUtil/index.d.ts +330 -0
  232. package/server/PermissionUtil/index.d.ts +650 -0
  233. package/server/PortletContextUtil/index.d.ts +118 -37
  234. package/server/PortletContextUtil/index.js +1 -0
  235. package/server/PortletUtil/index.d.ts +40 -0
  236. package/server/PrincipalUtil/index.d.ts +51 -0
  237. package/server/Properties/index.d.ts +185 -38
  238. package/server/PropertyUtil/index.d.ts +2330 -406
  239. package/server/PublishingUtil/index.d.ts +385 -49
  240. package/server/QueryStringUtil/index.d.ts +737 -0
  241. package/server/RedirectUtil/index.d.ts +98 -0
  242. package/server/RelatedValueBuilder/index.d.ts +81 -39
  243. package/server/Requester/index.d.ts +441 -65
  244. package/server/ResourceLocatorUtil/index.d.ts +483 -227
  245. package/server/RestApi/index.d.ts +208 -23
  246. package/server/RestAppInvokerFactory/index.d.ts +73 -0
  247. package/server/RoleAssignmentBuilder/index.d.ts +60 -0
  248. package/server/RoleMatcherBuilder/index.d.ts +59 -0
  249. package/server/RoleUtil/index.d.ts +57 -0
  250. package/server/ScriptUtil/index.d.ts +625 -143
  251. package/server/SearchFactory/index.d.ts +133 -0
  252. package/server/SearchUtil/index.d.ts +164 -0
  253. package/server/SearcherBuilder/index.d.ts +260 -0
  254. package/server/Session/index.d.ts +1758 -0
  255. package/server/SimpleUserUtil/index.d.ts +39 -30
  256. package/server/SiteCookieUtil/index.d.ts +78 -53
  257. package/server/SortBuilder/index.d.ts +111 -0
  258. package/server/SpellCheckBuilder/index.d.ts +68 -0
  259. package/server/StandardParserBuilder/index.d.ts +112 -0
  260. package/server/StructureUtil/index.d.ts +167 -0
  261. package/server/SubscriberUtil/index.d.ts +122 -0
  262. package/server/SubscriptionUtil/index.d.ts +197 -0
  263. package/server/SystemUserUtil/index.d.ts +201 -98
  264. package/server/TagUtil/index.d.ts +193 -0
  265. package/server/TemplateUtil/index.d.ts +217 -0
  266. package/server/TemporaryFileNodeBuilder/index.d.ts +63 -0
  267. package/server/TemporaryNodeBuilder/index.d.ts +241 -0
  268. package/server/TextModuleRendererBuilder/index.d.ts +68 -0
  269. package/server/TimestampUtil/index.d.ts +98 -82
  270. package/server/TranslationUtil/index.d.ts +175 -0
  271. package/server/TrashcanUtil/index.d.ts +193 -24
  272. package/server/UserDataUtil/index.d.ts +167 -85
  273. package/server/UserFactory/index.d.ts +45 -30
  274. package/server/UserFieldRenderer/index.d.ts +258 -0
  275. package/server/UserIdentityUtil/index.d.ts +61 -29
  276. package/server/UserUtil/index.d.ts +69 -28
  277. package/server/Utils/index.d.ts +870 -12
  278. package/server/VelocityRenderer/index.d.ts +248 -0
  279. package/server/VersionUtil/index.d.ts +15 -12
  280. package/server/WebContentUtil/index.d.ts +644 -0
  281. package/server/WebResourceFactory/index.d.ts +66 -0
  282. package/server/XSLTUtil/index.d.ts +49 -10
  283. package/server/XmlParserUtil/index.d.ts +82 -81
  284. package/builtins/Binary/index.d.ts +0 -3
  285. package/builtins/Calendar/index.d.ts +0 -3
  286. package/builtins/Collection/index.d.ts +0 -3
  287. package/builtins/Date/index.d.ts +0 -3
  288. package/builtins/InputStream/index.d.ts +0 -3
  289. package/builtins/Instant/index.d.ts +0 -3
  290. package/builtins/List/index.d.ts +0 -3
  291. package/builtins/LocalDateTime/index.d.ts +0 -3
  292. package/builtins/Locale/index.d.ts +0 -3
  293. package/builtins/Node/index.d.ts +0 -3
  294. package/builtins/NodeIterator/index.d.ts +0 -27
  295. package/builtins/Property/index.d.ts +0 -3
  296. package/builtins/Serializable/index.d.ts +0 -3
  297. package/builtins/Set/index.d.ts +0 -3
  298. package/builtins/Throwable/index.d.ts +0 -3
  299. package/builtins/byte/index.d.ts +0 -3
  300. package/server/CollaborationGroupState/index.d.ts +0 -6
  301. package/server/CollaborationGroupState/index.js +0 -1
  302. package/server/CollaborationGroupType/index.d.ts +0 -7
  303. package/server/CollaborationGroupType/index.js +0 -1
  304. package/server/CollaborationGroupWrapper/index.d.ts +0 -136
  305. package/server/CollaborationGroupWrapper/index.js +0 -1
  306. package/server/DimensionMode/index.d.ts +0 -7
  307. package/server/DimensionMode/index.js +0 -1
@@ -1,281 +1,475 @@
1
+ import Node from "../../hidden/javax/jcr/Node";
1
2
 
2
3
  /**
3
- * Checks if a node is an application index.
4
- * @returns {boolean} whether aNode is an application index or not.
5
- * @param {Node} aNode - the node to be checked
6
- */
7
- export function isApplicationIndex(aNode: Node): boolean;
4
+ * Checks if a node is a layout.
5
+ * @param aNode the node to be checked
6
+ * @return whether <code>aNode</code> is a layout or not.
7
+ */
8
+ export function isLayout(aNode: Node): boolean;
8
9
 
9
10
  /**
10
- * Checks if a node is an archive.
11
- * @returns {boolean} whether aNode is an archive or not.
12
- * @param {Node} aNode - the node to be checked
13
- */
14
- export function isArchive(aNode: Node): boolean;
11
+ * Checks if a node is a link.
12
+ * @param aNode the node to be checked
13
+ * @return whether <code>aNode</code> is a link or not.
14
+ */
15
+ export function isLink(aNode: Node): boolean;
15
16
 
16
17
  /**
17
- * Checks if a node is an article.
18
- * @returns {boolean} whether aNode is an article or not.
19
- * @param {Node} aNode - the node to be checked
20
- */
21
- export function isArticle(aNode: Node): boolean;
18
+ * Checks if a node is a page.
19
+ * @param aNode the node to be checked
20
+ * @return whether <code>aNode</code> is a page or not.
21
+ */
22
+ export function isPage(aNode: Node): boolean;
22
23
 
23
24
  /**
24
- * Checks if a node is a collaboration group.
25
- * @returns {boolean} whether aNode is a collaboration group or not.
26
- * @param {Node} aNode - the node to be checked
27
- */
28
- export function isCollaborationGroup(aNode: Node): boolean;
25
+ * Checks if a node is a portlet.
26
+ * @param aNode the node to be checked
27
+ * @return whether <code>aNode</code> is a portlet or not.
28
+ */
29
+ export function isPortlet(aNode: Node): boolean;
29
30
 
30
31
  /**
31
- * Checks if a node is a collaboration group folder.
32
- * @returns {boolean} whether aNode is a collaboration group folder or not.
33
- * @param {Node} aNode - the node to be checked
34
- */
35
- export function isCollaborationGroupFolder(aNode: Node): boolean;
32
+ * Checks if a node is an archive.
33
+ * @param aNode the node to be checked
34
+ * @return whether <code>aNode</code> is an archive or not.
35
+ */
36
+ export function isArchive(aNode: Node): boolean;
36
37
 
37
38
  /**
38
- * Checks if a node is a collaboration group page.
39
- * @returns {boolean} whether aNode is a collaboration group page or not.
40
- * @param {Node} aNode - the node to be checked
41
- */
42
- export function isCollaborationGroupPage(aNode: Node): boolean;
39
+ * Checks if a node is an article.
40
+ * @param aNode the node to be checked
41
+ * @return whether <code>aNode</code> is an article or not.
42
+ */
43
+ export function isArticle(aNode: Node): boolean;
43
44
 
44
45
  /**
45
- * Checks if a node is a collaboration group template.
46
- * @returns {boolean} whether aNode is a collaboration group template or not.
47
- * @param {Node} aNode - the node to be checked
48
- */
49
- export function isCollaborationGroupTemplate(aNode: Node): boolean;
46
+ * Checks if a node is a folder.
47
+ * @param aNode the node to be checked
48
+ * @return whether <code>aNode</code> is a folder or not.
49
+ */
50
+ export function isFolder(aNode: Node): boolean;
50
51
 
51
52
  /**
52
- * Checks if a node is a color.
53
- * @returns {boolean} whether aNode is a color or not.
54
- * @param {Node} aNode - the node to be checked
55
- */
56
- export function isColor(aNode: Node): boolean;
53
+ * Checks if a node is a file.
54
+ * @param aNode the node to be checked
55
+ * @return whether <code>aNode</code> is a file or not.
56
+ */
57
+ export function isFile(aNode: Node): boolean;
57
58
 
58
59
  /**
59
- * Checks if a node is a decoration.
60
- * @returns {boolean} whether aNode is a decoration or not.
61
- * @param {Node} aNode - the node to be checked
62
- */
63
- export function isDecoration(aNode: Node): boolean;
60
+ * Checks if a node is an image.
61
+ * @param aNode the node to be checked
62
+ * @return whether <code>aNode</code> is an image or not.
63
+ */
64
+ export function isImage(aNode: Node): boolean;
64
65
 
65
66
  /**
66
- * Checks if a node is a LDAP directory.
67
- * @returns {boolean} whether aNode is a LDAP directory or not.
68
- * @param {Node} aNode - the node to be checked
69
- */
70
- export function isDirectory(aNode: Node): boolean;
67
+ * Checks if a node is a temporary file.
68
+ * @param aNode the node to be checked
69
+ * @return whether aNode is a temporary file or not.
70
+ * @see #TEMPORARY_FILE_TYPE
71
+ * @since Sitevision 4.5.5.2
72
+ */
73
+ export function isTemporaryFile(aNode: Node): boolean;
71
74
 
72
75
  /**
73
- * Checks if a node is a file.
74
- * @returns {boolean} whether aNode is a file or not.
75
- * @param {Node} aNode - the node to be checked
76
- */
77
- export function isFile(aNode: Node): boolean;
76
+ * Checks if a node is a sv:user.
77
+ * @param aNode the node to be checked
78
+ * @return whether aNode is a {@link #USER_TYPE sv:user} or not.
79
+ * @see #isAnyUserType(Node)
80
+ */
81
+ export function isUser(aNode: Node): boolean;
78
82
 
79
83
  /**
80
- * Checks if a node is a folder.
81
- * @returns {boolean} whether aNode is a folder or not.
82
- * @param {Node} aNode - the node to be checked
83
- */
84
- export function isFolder(aNode: Node): boolean;
84
+ * Checks if a node is a sv:simpleUser.
85
+ * @param aNode the node to be checked
86
+ * @return whether aNode is a {@link #SIMPLE_USER_TYPE sv:simpleUser} or not.
87
+ * @see #isAnyUserType(Node)
88
+ * @since Sitevision 10.2
89
+ */
90
+ export function isSimpleUser(aNode: Node): boolean;
91
+
92
+ /**
93
+ * Checks if a node is a sv:systemUser.
94
+ *
95
+ * <p>
96
+ * Note that there are several build-in "system users" in Sitevision:
97
+ * </p>
98
+ * <ul>
99
+ * <li>The <em>System</em> user</li>
100
+ * <li>The <em>Anonymous</em> user (i.e. non-authenticated user)</li>
101
+ * <li>The <em>Indexer</em> user (i.e. the user that index data in Sitevision)</li>
102
+ * <li>The <em>Validator</em> user (i.e. the user that validates page-nodes in Sitevision)</li>
103
+ * <li>The <em>Extractor</em> user (i.e. default "Web archive" user)</li>
104
+ * <li>The <em>Anonymized</em> user (i.e. an anonymized user)</li>
105
+ * </ul>
106
+ * @param aNode the node to be checked
107
+ * @return whether aNode is a {@link #SYSTEM_USER_TYPE sv:systemUser} or not.
108
+ * @see #isAnyUserType(Node)
109
+ * @since Sitevision 10.2
110
+ */
111
+ export function isSystemUser(aNode: Node): boolean;
112
+
113
+ /**
114
+ * Checks if a node is a user identity.
115
+ * @param aNode the node to be checked
116
+ * @return whether <code>aNode</code> is a user identity or not.
117
+ * @since Sitevision 3.5
118
+ */
119
+ export function isUserIdentity(aNode: Node): boolean;
85
120
 
86
121
  /**
87
- * Checks if a node is a font.
88
- * @returns {boolean} whether aNode is a font or not.
89
- * @param {Node} aNode - the node to be checked
90
- */
91
- export function isFont(aNode: Node): boolean;
122
+ * Checks if a node is a site.
123
+ * @param aNode the node to be checked
124
+ * @return whether <code>aNode</code> is a site or not.
125
+ */
126
+ export function isSite(aNode: Node): boolean;
92
127
 
93
128
  /**
94
- * Checks if a node is an image.
95
- * @returns {boolean} whether aNode is an image or not.
96
- * @param {Node} aNode - the node to be checked
97
- */
98
- export function isImage(aNode: Node): boolean;
129
+ * Checks if a node is a site page.
130
+ * @param aNode the node to be checked
131
+ * @return whether <code>aNode</code> is a site page or not.
132
+ */
133
+ export function isSitePage(aNode: Node): boolean;
99
134
 
100
135
  /**
101
- * Checks if a node is a layout.
102
- * @returns {boolean} whether aNode is a layout or not.
103
- * @param {Node} aNode - the node to be checked
104
- */
105
- export function isLayout(aNode: Node): boolean;
136
+ * Checks if a node is a template.
137
+ * @param aNode the node to be checked
138
+ * @return whether <code>aNode</code> is a template or not.
139
+ */
140
+ export function isTemplate(aNode: Node): boolean;
106
141
 
107
142
  /**
108
- * Checks if a node is a link.
109
- * @returns {boolean} whether aNode is a link or not.
110
- * @param {Node} aNode - the node to be checked
111
- */
112
- export function isLink(aNode: Node): boolean;
143
+ * Checks if a node is a trashcan.
144
+ * @param aNode the node to be checked
145
+ * @return whether <code>aNode</code> is a trashcan or not.
146
+ */
147
+ export function isTrashcan(aNode: Node): boolean;
113
148
 
114
149
  /**
115
- * Checks if a node is a node index.
116
- * @returns {boolean} whether aNode is a node index or not.
117
- * @param {Node} aNode - the node to be checked
118
- */
119
- export function isNodeIndex(aNode: Node): boolean;
150
+ * Checks if a node is a color.
151
+ * @param aNode the node to be checked
152
+ * @return whether <code>aNode</code> is a color or not.
153
+ */
154
+ export function isColor(aNode: Node): boolean;
120
155
 
121
156
  /**
122
- * Checks if a node is a page.
123
- * @returns {boolean} whether aNode is a page or not.
124
- * @param {Node} aNode - the node to be checked
125
- */
126
- export function isPage(aNode: Node): boolean;
157
+ * Checks if a node is a decoration.
158
+ * @param aNode the node to be checked
159
+ * @return whether <code>aNode</code> is a decoration or not.
160
+ */
161
+ export function isDecoration(aNode: Node): boolean;
127
162
 
128
163
  /**
129
- * Checks if a node is a portlet.
130
- * @returns {boolean} whether aNode is a portlet or not.
131
- * @param {Node} aNode - the node to be checked
132
- */
133
- export function isPortlet(aNode: Node): boolean;
164
+ * Checks if a node is a LDAP directory.
165
+ * @param aNode the node to be checked
166
+ * @return whether <code>aNode</code> is a LDAP directory or not.
167
+ */
168
+ export function isDirectory(aNode: Node): boolean;
134
169
 
135
170
  /**
136
- * Checks if a node is a RSS feed.
137
- * @returns {boolean} whether aNode is a RSS feed or not.
138
- * @param {Node} aNode - the node to be checked
139
- */
140
- export function isRssFeed(aNode: Node): boolean;
171
+ * Checks if a node is a font.
172
+ * @param aNode the node to be checked
173
+ * @return whether <code>aNode</code> is a font or not.
174
+ */
175
+ export function isFont(aNode: Node): boolean;
141
176
 
142
177
  /**
143
- * Checks if a node is a RSS feed item.
144
- * @returns {boolean} whether aNode is a RSS feed item or not.
145
- * @param {Node} aNode - the node to be checked
146
- */
147
- export function isRssFeedItem(aNode: Node): boolean;
178
+ * Checks if a node is a structure folder.
179
+ * @param aNode the node to be checked
180
+ * @return whether <code>aNode</code> is a structure folder or not.
181
+ */
182
+ export function isStructureFolder(aNode: Node): boolean;
148
183
 
149
184
  /**
150
- * Checks if a node is a RSS feed repository.
151
- * @returns {boolean} whether aNode is a RSS feed repository or not.
152
- * @param {Node} aNode - the node to be checked
153
- */
154
- export function isRssFeedRepository(aNode: Node): boolean;
185
+ * Checks if a node is a structure link.
186
+ * @param aNode the node to be checked
187
+ * @return whether <code>aNode</code> is a structure link or not.
188
+ */
189
+ export function isStructureLink(aNode: Node): boolean;
155
190
 
156
191
  /**
157
- * Checks if a node is a site.
158
- * @returns {boolean} whether aNode is a site or not.
159
- * @param {Node} aNode - the node to be checked
160
- */
161
- export function isSite(aNode: Node): boolean;
192
+ * Checks if a node is a structure page.
193
+ * @param aNode the node to be checked
194
+ * @return whether <code>aNode</code> is a structure page or not.
195
+ */
196
+ export function isStructurePage(aNode: Node): boolean;
162
197
 
163
198
  /**
164
- * Checks if a node is a site page.
165
- * @returns {boolean} whether aNode is a site page or not.
166
- * @param {Node} aNode - the node to be checked
167
- */
168
- export function isSitePage(aNode: Node): boolean;
199
+ * Checks if a node is a collaboration group.
200
+ * @param aNode the node to be checked
201
+ * @return whether <code>aNode</code> is a collaboration group or not.
202
+ * @since Sitevision 3.5
203
+ */
204
+ export function isCollaborationGroup(aNode: Node): boolean;
169
205
 
170
206
  /**
171
- * Checks if a node is a structure folder.
172
- * @returns {boolean} whether aNode is a structure folder or not.
173
- * @param {Node} aNode - the node to be checked
174
- */
175
- export function isStructureFolder(aNode: Node): boolean;
207
+ * Checks if a node is a collaboration group folder.
208
+ * @param aNode the node to be checked
209
+ * @return whether <code>aNode</code> is a collaboration group folder or not.
210
+ * @since Sitevision 3.5
211
+ */
212
+ export function isCollaborationGroupFolder(aNode: Node): boolean;
176
213
 
177
214
  /**
178
- * Checks if a node is a structure link.
179
- * @returns {boolean} whether aNode is a structure link or not.
180
- * @param {Node} aNode - the node to be checked
181
- */
182
- export function isStructureLink(aNode: Node): boolean;
215
+ * Checks if a node is a collaboration group page.
216
+ * @param aNode the node to be checked
217
+ * @return whether <code>aNode</code> is a collaboration group page or not.
218
+ * @since Sitevision 3.5
219
+ */
220
+ export function isCollaborationGroupPage(aNode: Node): boolean;
183
221
 
184
222
  /**
185
- * Checks if a node is a structure page.
186
- * @returns {boolean} whether aNode is a structure page or not.
187
- * @param {Node} aNode - the node to be checked
188
- */
189
- export function isStructurePage(aNode: Node): boolean;
223
+ * Checks if a node is a collaboration group template.
224
+ * @param aNode the node to be checked
225
+ * @return whether <code>aNode</code> is a collaboration group template or not.
226
+ * @since Sitevision 3.5
227
+ */
228
+ export function isCollaborationGroupTemplate(aNode: Node): boolean;
190
229
 
191
230
  /**
192
- * Checks if a node is a template.
193
- * @returns {boolean} whether aNode is a template or not.
194
- * @param {Node} aNode - the node to be checked
195
- */
196
- export function isTemplate(aNode: Node): boolean;
231
+ * Checks if a node is an application index.
232
+ * @param aNode the node to be checked
233
+ * @return whether <code>aNode</code> is an application index or not.
234
+ * @since Sitevision 3.6
235
+ */
236
+ export function isApplicationIndex(aNode: Node): boolean;
197
237
 
198
238
  /**
199
- * Checks if a node is a temporary file.
200
- * @returns {boolean} whether aNode is a temporary file or not.
201
- * @param {Node} aNode - the node to be checked
202
- */
203
- export function isTemporaryFile(aNode: Node): boolean;
239
+ * Checks if a node is a node index.
240
+ * @param aNode the node to be checked
241
+ * @return whether <code>aNode</code> is a node index or not.
242
+ * @since Sitevision 3.6
243
+ */
244
+ export function isNodeIndex(aNode: Node): boolean;
204
245
 
205
246
  /**
206
- * Checks if a node is a trashcan.
207
- * @returns {boolean} whether aNode is a trashcan or not.
208
- * @param {Node} aNode - the node to be checked
209
- */
210
- export function isTrashcan(aNode: Node): boolean;
247
+ * Checks if a node is a RSS feed.
248
+ * @param aNode the node to be checked
249
+ * @return whether <code>aNode</code> is a RSS feed or not.
250
+ * @since Sitevision 3.6.2
251
+ */
252
+ export function isRssFeed(aNode: Node): boolean;
211
253
 
212
254
  /**
213
- * Checks a node against a given node type name to see if they match.
214
- * @returns {boolean} whether primary node type of aNode matches the aPrimaryNodeType type
215
- * @param {Node} aNode - the node to be checked
216
- * @param {string} aPrimaryNodeType - the primary node type name aNode should be checked against
217
- */
218
- export function isType(aNode: Node, aPrimaryNodeType: string): boolean;
255
+ * Checks if a node is a RSS feed item.
256
+ * @param aNode the node to be checked
257
+ * @return whether <code>aNode</code> is a RSS feed item or not.
258
+ * @since Sitevision 3.6.2
259
+ */
260
+ export function isRssFeedItem(aNode: Node): boolean;
219
261
 
220
262
  /**
221
- * Checks a node against multiple node type names to see if any of them match.
222
- * @returns {boolean} whether primary node type of aNode matches any of the types in aPrimaryNodeTypes
223
- * @param {Node} aNode - the node to be checked
224
- * @param {...string} aPrimaryNodeTypes - the primary node type names aNode should be checked against
225
- */
226
- export function isTypeOf(aNode: Node, ...aPrimaryNodeTypes: string[]): boolean;
263
+ * Checks if a node is a RSS feed repository.
264
+ * @param aNode the node to be checked
265
+ * @return whether <code>aNode</code> is a RSS feed repository or not.
266
+ * @since Sitevision 3.6.2
267
+ */
268
+ export function isRssFeedRepository(aNode: Node): boolean;
227
269
 
228
270
  /**
229
- * Checks if a node is a user.
230
- * @returns {boolean} whether aNode is a user or not.
231
- * @param {Node} aNode - the node to be checked
232
- */
233
- export function isUser(aNode: Node): boolean;
271
+ * Convenience method that checks if a node is of "Renderable node" type.
272
+ *
273
+ * <p>
274
+ * A <em>"Renderable node"</em> is a Node that can have a {@link #isAnyContentType(Node) "Content node"} as render part:
275
+ * </p>
276
+ * <ul>
277
+ * <li>{@link #PAGE_TYPE sv:page}</li>
278
+ * <li>{@link #ARTICLE_TYPE sv:article}</li>
279
+ * <li>{@link #SITE_PAGE_TYPE sv:sitePage}</li>
280
+ * <li>{@link #STRUCTURE_PAGE_TYPE sv:structurePage}</li>
281
+ * <li>{@link #COLLABORATION_GROUP_PAGE_TYPE sv:collaborationGroupPage}</li>
282
+ * <li>{@link #TEMPLATE_TYPE sv:template}</li>
283
+ * <li>{@link #COLLABORATION_GROUP_TEMPLATE_TYPE sv:collaborationGroupTemplate}</li>
284
+ * <li>{@link #DECORATION_TEMPLATE_TYPE sv:decorationTemplate}</li>
285
+ * <li>{@link #MODULE_ELEMENT_TYPE sv:moduleElement}</li>
286
+ * <li>{@link #MODULE_ELEMENT_DRAFT_TYPE sv:moduleElementDraft}</li>
287
+ * </ul>
288
+ * @param aNode the node to be checked
289
+ * @return whether aNode is a "renderable node" or not.
290
+ * @see senselogic.sitevision.api.node.ContentNodeUtil
291
+ * @since Sitevision 10.2
292
+ */
293
+ export function isAnyRenderableType(aNode: Node): boolean;
294
+
295
+ /**
296
+ * Convenience method that checks if a node is of "Content node" type.
297
+ *
298
+ * <p>
299
+ * A <em>"Content node"</em> is a Node that can be rendered as content part of a {@link #isAnyRenderableType(Node) "Renderable node"}:
300
+ * </p>
301
+ * <ul>
302
+ * <li>{@link #PORTLET_TYPE sv:portlet}</li>
303
+ * <li>{@link #LAYOUT_TYPE sv:layout}</li>
304
+ * <li>{@link #LINKED_LAYOUT_TYPE sv:linkedLayout}</li>
305
+ * <li>{@link #REFERENCE_LAYOUT_TYPE sv:referenceLayout}</li>
306
+ * <li>{@link #VIEW_TYPE sv:view}</li>
307
+ * <li>{@link #PROFILE_VIEW_TYPE sv:profileView}</li>
308
+ * </ul>
309
+ * @param aNode the node to be checked
310
+ * @return whether aNode is a "content node" or not.
311
+ * @see senselogic.sitevision.api.node.ContentNodeUtil
312
+ * @since Sitevision 10.2
313
+ */
314
+ export function isAnyContentType(aNode: Node): boolean;
315
+
316
+ /**
317
+ * Convenience method that checks if a node is of "User node" type.
318
+ *
319
+ * <p>
320
+ * "User" node types are:
321
+ * </p>
322
+ * <ul>
323
+ * <li>{@link #USER_TYPE sv:user}</li>
324
+ * <li>{@link #SIMPLE_USER_TYPE sv:simpleUser}</li>
325
+ * <li>{@link #SYSTEM_USER_TYPE sv:systemUser}</li>
326
+ * </ul>
327
+ * @param aNode the node to be checked
328
+ * @return whether aNode is a "user node" or not.
329
+ * @since Sitevision 10.2
330
+ */
331
+ export function isAnyUserType(aNode: Node): boolean;
332
+
333
+ /**
334
+ * Checks a node against a given node type name to see if they match.
335
+ * @param aNode the node to be checked
336
+ * @param aPrimaryNodeType the primary node type name <code>aNode</code> should be checked against
337
+ * @return whether primary node type of <code>aNode</code> matches the <code>aPrimaryNodeType</code> type
338
+ * @see #isTypeOf(javax.jcr.Node, String[])
339
+ */
340
+ export function isType(aNode: Node, aPrimaryNodeType: string): boolean;
234
341
 
235
342
  /**
236
- * Checks if a node is a user identity.
237
- * @returns {boolean} whether aNode is a user identity or not.
238
- * @param {Node} aNode - the node to be checked
239
- */
240
- export function isUserIdentity(aNode: Node): boolean;
241
-
242
- declare namespace nodeTypeUtil {
343
+ * Checks a node against multiple node type names to see if any of them match.
344
+ * @param aNode the node to be checked
345
+ * @param aPrimaryNodeTypes the primary node type names <code>aNode</code> should be checked against
346
+ * @return whether primary node type of <code>aNode</code> matches any of the types in <code>aPrimaryNodeTypes</code>
347
+ */
348
+ export function isTypeOf(aNode: Node, aPrimaryNodeTypes: string): boolean;
349
+
350
+ /**
351
+ * Node type utility interface.
352
+ *
353
+ * <p>
354
+ * This interface contains the primary node type names for Sitevision nodes and convenience methods for checking
355
+ * if a node is of a specific type.
356
+ * </p>
357
+ *
358
+ * <p>
359
+ * <em>Tip! If you write your code in Velocity, you might want to ensure that the object actually are a <code>Node</code>
360
+ * before you execute methods in this interface. Use {@link senselogic.sitevision.api.script.InstanceTypeUtil#isNode(Object)} to do that.</em>
361
+ * </p>
362
+ *
363
+ * <p>
364
+ * An instance of the Sitevision class implementing this interface can be obtained via {@link senselogic.sitevision.api.Utils#getNodeTypeUtil()}.
365
+ * See {@link senselogic.sitevision.api.Utils} for how to obtain an instance of the <code>Utils</code> interface.
366
+ * </p>Checks if a node is a layout.Checks if a node is a link.Checks if a node is a page.Checks if a node is a portlet.Checks if a node is an archive.Checks if a node is an article.Checks if a node is a folder.Checks if a node is a file.Checks if a node is an image.Checks if a node is a temporary file.Checks if a node is a sv:user.Checks if a node is a sv:simpleUser.Checks if a node is a sv:systemUser.
367
+ *
368
+ * <p>
369
+ * Note that there are several build-in "system users" in Sitevision:
370
+ * </p>
371
+ * <ul>
372
+ * <li>The <em>System</em> user</li>
373
+ * <li>The <em>Anonymous</em> user (i.e. non-authenticated user)</li>
374
+ * <li>The <em>Indexer</em> user (i.e. the user that index data in Sitevision)</li>
375
+ * <li>The <em>Validator</em> user (i.e. the user that validates page-nodes in Sitevision)</li>
376
+ * <li>The <em>Extractor</em> user (i.e. default "Web archive" user)</li>
377
+ * <li>The <em>Anonymized</em> user (i.e. an anonymized user)</li>
378
+ * </ul>Checks if a node is a user identity.Checks if a node is a site.Checks if a node is a site page.Checks if a node is a template.Checks if a node is a trashcan.Checks if a node is a color.Checks if a node is a decoration.Checks if a node is a LDAP directory.Checks if a node is a font.Checks if a node is a structure folder.Checks if a node is a structure link.Checks if a node is a structure page.Checks if a node is a collaboration group.Checks if a node is a collaboration group folder.Checks if a node is a collaboration group page.Checks if a node is a collaboration group template.Checks if a node is an application index.Checks if a node is a node index.Checks if a node is a RSS feed.Checks if a node is a RSS feed item.Checks if a node is a RSS feed repository.Convenience method that checks if a node is of "Renderable node" type.
379
+ *
380
+ * <p>
381
+ * A <em>"Renderable node"</em> is a Node that can have a {@link #isAnyContentType(Node) "Content node"} as render part:
382
+ * </p>
383
+ * <ul>
384
+ * <li>{@link #PAGE_TYPE sv:page}</li>
385
+ * <li>{@link #ARTICLE_TYPE sv:article}</li>
386
+ * <li>{@link #SITE_PAGE_TYPE sv:sitePage}</li>
387
+ * <li>{@link #STRUCTURE_PAGE_TYPE sv:structurePage}</li>
388
+ * <li>{@link #COLLABORATION_GROUP_PAGE_TYPE sv:collaborationGroupPage}</li>
389
+ * <li>{@link #TEMPLATE_TYPE sv:template}</li>
390
+ * <li>{@link #COLLABORATION_GROUP_TEMPLATE_TYPE sv:collaborationGroupTemplate}</li>
391
+ * <li>{@link #DECORATION_TEMPLATE_TYPE sv:decorationTemplate}</li>
392
+ * <li>{@link #MODULE_ELEMENT_TYPE sv:moduleElement}</li>
393
+ * <li>{@link #MODULE_ELEMENT_DRAFT_TYPE sv:moduleElementDraft}</li>
394
+ * </ul>Convenience method that checks if a node is of "Content node" type.
395
+ *
396
+ * <p>
397
+ * A <em>"Content node"</em> is a Node that can be rendered as content part of a {@link #isAnyRenderableType(Node) "Renderable node"}:
398
+ * </p>
399
+ * <ul>
400
+ * <li>{@link #PORTLET_TYPE sv:portlet}</li>
401
+ * <li>{@link #LAYOUT_TYPE sv:layout}</li>
402
+ * <li>{@link #LINKED_LAYOUT_TYPE sv:linkedLayout}</li>
403
+ * <li>{@link #REFERENCE_LAYOUT_TYPE sv:referenceLayout}</li>
404
+ * <li>{@link #VIEW_TYPE sv:view}</li>
405
+ * <li>{@link #PROFILE_VIEW_TYPE sv:profileView}</li>
406
+ * </ul>Convenience method that checks if a node is of "User node" type.
407
+ *
408
+ * <p>
409
+ * "User" node types are:
410
+ * </p>
411
+ * <ul>
412
+ * <li>{@link #USER_TYPE sv:user}</li>
413
+ * <li>{@link #SIMPLE_USER_TYPE sv:simpleUser}</li>
414
+ * <li>{@link #SYSTEM_USER_TYPE sv:systemUser}</li>
415
+ * </ul>Checks a node against a given node type name to see if they match.Checks a node against multiple node type names to see if any of them match.The primary node type name for an application index.The primary node type name for an archive.The primary node type name for an article.The primary node type name for a collaboration group.The primary node type name for a collaboration group folder.The primary node type name for a collaboration group page.The primary node type name for a collaboration group template.The primary node type name for a site color.The primary node type name for a decoration.The primary node type name for a LDAP directory.The primary node type name for a file.The primary node type name for a folder.The primary node type name for a site font.The primary node type name for an image.The primary node type name for a layout.The primary node type name for a linked layout.The primary node type name for a link.The primary node type name for a node index.The primary node type name for a page.The primary node type name for a portlet.The primary node type name for a RSS feed.The primary node type name for a RSS feed item.The primary node type name for a RSS feed repository.The primary node type name for the site.The primary node type name for the site page.The primary node type name for a structure folder.The primary node type name for a structure link.The primary node type name for a structure page.The primary node type name for a template.The primary node type name for the trashcan.The primary node type name for a user.The primary node type name for a user identity.The primary node type name for the admin principal repository.The primary node type name for the alias repository type.The primary node type name for the alias type.The primary node type name for the alternative type.The primary node type name for the break field type.The primary node type name for the captcha field type.The primary node type name for the color repository type.The primary node type name for the comment field type.The primary node type name for the date field type.The primary node type name for the decoration repository type.The primary node type name for the decoration template type.The primary node type name for the default image type.The primary node type name for the default image repository type.The primary node type name for the directory repository type.The primary node type name for the external principal repository type.The primary node type name for the file extension icon type.The primary node type name for the file field type.The primary node type name for the file repository type.The primary node type name for the filtered image type.The primary node type name for the font repository type.The primary node type name for the form type.The primary node type name for the grade field type.The primary node type name for the icon repository type.The primary node type name for the image filter type.The primary node type name for the image repository type.The primary node type name for the layout repository type.The primary node type name for the list style type.The primary node type name for the list style repository type.The primary node type name for the local color type.The primary node type name for the local file repository type.The primary node type name for the local image repository type.The primary node type name for the metadata alternative item type.The primary node type name for the metadata definition repository type.The primary node type name for the metadata definition template repository type.The primary node type name for the metadata directory definition type.The primary node type name for the metadata image portlet definition definition type.The primary node type name for the metadata integer definition definition type.The primary node type name for the metadata keyword type.The primary node type name for the metadata keyword definition type.The primary node type name for the metadata link definition type.The primary node type name for the metadata media portlet definition type.The primary node type name for the metadata multiple definition type.The primary node type name for the metadata related information definition type.The primary node type name for the metadata single definition type.The primary node type name for the metadata system definition type.The primary node type name for the metadata text definition type.The primary node type name for the metadata text portlet definition type.The primary node type name for the metadata user definition type.The primary node type name for the metadata single tag definition type.The primary node type name for the metadata multiple tag definition type.The primary node type name for the mobile app type.The primary node type name for the multiple selection field type.The primary node type name for the named reference type.The primary node type name for the named reference repository.The primary node type name for the order field type.The primary node type name for the order item type.The primary node type name for the page comment type.The primary node type name for the page sub comment type.The primary node type name for the page comment repository type.The primary node type name for the page component type.The primary node type name for the page content type.The primary node type name for the page repository type.The primary node type name for the participants field type.The primary node type name for the personal file repository type.The primary node type name for the personal image repository type.The primary node type name for the principal repository type.The primary node type name for the profile view type.The primary node type name for the rating type.The primary node type name for the rating repository type.The primary node type name for the rating type.The primary node type name for the recipients type.The primary node type name for the recipients field type.The primary node type name for the reference layout type.The primary node type name for the responsive breakpoint type.The primary node type name for the root type.The primary node type name for the script field type.The primary node type name for the simple user type.The primary node type name for the single selection field type.The primary node type name for the site cookie type.The primary node type name for the site cookie repository type.The primary node type name for the sub alternative field type.The primary node type name for the sub query type.The primary node type name for the sub script type.The primary node type name for the system user type.
416
+ *
417
+ * <p>
418
+ * Note that there are several sv:systemUser's in Sitevision:
419
+ * </p>
420
+ * <ul>
421
+ * <li>The <em>System</em> user</li>
422
+ * <li>The <em>Anonymous</em> user (i.e. a non-authenticated user)</li>
423
+ * <li>The <em>Anonymized</em> user (i.e. an anonymized user)</li>
424
+ * <li>The <em>Indexer</em> user (i.e. the user that indexes Sitevision data)</li>
425
+ * <li>The <em>Validator</em> user (i.e. the user that validates page-like nodes in Sitevision)</li>
426
+ * <li>The <em>Extractor</em> user (i.e. the default "Web archive" user)</li>
427
+ * </ul>The primary node type name for the system group type.The primary node type name for the template repository type.The primary node type name for the temporary type.The primary node type name for the temporary file type.The primary node type name for the text field type.The primary node type name for the user attribute type.The primary node type name for the user attribute field type.The primary node type name for the user container type.The primary node type name for the user group type.The primary node type name for the vfs file type.The primary node type name for the vfs folder type.The primary node type name for the vfs mount type.The primary node type name for the view type.The primary node type name for the virtual group type.The primary node type name for the global virtual group type.The primary node type name for the index repository type.The primary node type name for the module element draft repository type.The primary node type name for the module element draft type.The primary node type name for the module element repository type.The primary node type name for the module element type.The primary node type name for the module element file repository type.The primary node type name for the module element image repository type.The primary node type name for the custom module type.The primary node type name for the addon repository type.The primary node type name for the tag type.The primary node type name for the tag repository type.The primary node type name for the tag group type.The primary node type name for the tag group repository type.The primary node type name for the headless custom module type.The primary node type name for the webapp type.The primary node type name for the webapp repository type.The primary node type name for the restapp type.The primary node type name for the restapp repository type.The primary node type name for the comment type.The primary node type name for the timeline entry repository type.The primary node type name for the timeline entry type.The primary node type name for the bookmarked timeline entry type.The primary node type name for the timeline file entry type.The primary node type name for the timeline file wall entry type.The primary node type name for the timeline share entry type.The primary node type name for the timeline share page entry type.The primary node type name for the timeline wall entry type.The primary node type name for the data store repository type.The primary node type name for the key/value data store type.The primary node type name for the collection data store type.The primary node type name for the role type.The primary node type name for the role repository type.The primary node type name for the virtual group repository type.The primary node type name for the user field type.The primary node type name for the user field repository type.The primary node type name for the Marketplace custom module type.The primary node type name for the Marketplace headless custom module type.The primary node type name for the responsive breakpoint repository type.The primary node type name for the topic repository type.The primary node type name for the topic type.The primary node type name for the topic timeline entry type.The primary node type name for the external topic integration repository type.The primary node type name for the external topic integration type.The primary node type name for the external topic type.The primary node type name for the external timeline entry repository type.The primary node type name for the external topic timeline entry type.The primary node type name for the external comment type.The primary node type name for the OAuth2 configuration repository type.The primary node type name for the OAuth2 configuration type.
428
+ * @author Magnus Lövgren
429
+ * @since Sitevision 2.6.2
430
+ */
431
+ declare namespace NodeTypeUtil {
243
432
  export {
244
- isApplicationIndex,
433
+ isLayout,
434
+ isLink,
435
+ isPage,
436
+ isPortlet,
245
437
  isArchive,
246
438
  isArticle,
247
- isCollaborationGroup,
248
- isCollaborationGroupFolder,
249
- isCollaborationGroupPage,
250
- isCollaborationGroupTemplate,
439
+ isFolder,
440
+ isFile,
441
+ isImage,
442
+ isTemporaryFile,
443
+ isUser,
444
+ isSimpleUser,
445
+ isSystemUser,
446
+ isUserIdentity,
447
+ isSite,
448
+ isSitePage,
449
+ isTemplate,
450
+ isTrashcan,
251
451
  isColor,
252
452
  isDecoration,
253
453
  isDirectory,
254
- isFile,
255
- isFolder,
256
454
  isFont,
257
- isImage,
258
- isLayout,
259
- isLink,
455
+ isStructureFolder,
456
+ isStructureLink,
457
+ isStructurePage,
458
+ isCollaborationGroup,
459
+ isCollaborationGroupFolder,
460
+ isCollaborationGroupPage,
461
+ isCollaborationGroupTemplate,
462
+ isApplicationIndex,
260
463
  isNodeIndex,
261
- isPage,
262
- isPortlet,
263
464
  isRssFeed,
264
465
  isRssFeedItem,
265
466
  isRssFeedRepository,
266
- isSite,
267
- isSitePage,
268
- isStructureFolder,
269
- isStructureLink,
270
- isStructurePage,
271
- isTemplate,
272
- isTemporaryFile,
273
- isTrashcan,
467
+ isAnyRenderableType,
468
+ isAnyContentType,
469
+ isAnyUserType,
274
470
  isType,
275
471
  isTypeOf,
276
- isUser,
277
- isUserIdentity,
278
472
  };
279
473
  }
280
474
 
281
- export default nodeTypeUtil;
475
+ export default NodeTypeUtil;