@sitevision/api 1.0.19 → 1.1.0-alpha.1
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.
- package/common/router/index.d.ts +1 -1
- package/hidden/javax/jcr/Binary/index.d.ts +86 -0
- package/hidden/javax/jcr/Credentials/index.d.ts +11 -0
- package/hidden/javax/jcr/ImportUUIDBehavior/index.d.ts +11 -0
- package/hidden/javax/jcr/Item/index.d.ts +353 -0
- package/hidden/javax/jcr/ItemVisitor/index.d.ts +41 -0
- package/hidden/javax/jcr/NamespaceRegistry/index.d.ts +100 -0
- package/hidden/javax/jcr/Node/index.d.ts +2808 -0
- package/hidden/javax/jcr/NodeIterator/index.d.ts +18 -0
- package/hidden/javax/jcr/Property/index.d.ts +801 -0
- package/hidden/javax/jcr/PropertyIterator/index.d.ts +17 -0
- package/hidden/javax/jcr/RangeIterator/index.d.ts +75 -0
- package/hidden/javax/jcr/Repository/index.d.ts +318 -0
- package/hidden/javax/jcr/RepositoryFactory/index.d.ts +90 -0
- package/hidden/javax/jcr/Value/index.d.ts +190 -0
- package/hidden/javax/jcr/ValueFactory/index.d.ts +179 -0
- package/hidden/javax/jcr/Workspace/index.d.ts +1061 -0
- package/hidden/javax/jcr/lock/Lock/index.d.ts +142 -0
- package/hidden/javax/jcr/lock/LockManager/index.d.ts +217 -0
- package/hidden/javax/jcr/nodetype/ItemDefinition/index.d.ts +219 -0
- package/hidden/javax/jcr/nodetype/NodeDefinition/index.d.ts +158 -0
- package/hidden/javax/jcr/nodetype/NodeDefinitionTemplate/index.d.ts +74 -0
- package/hidden/javax/jcr/nodetype/NodeType/index.d.ts +349 -0
- package/hidden/javax/jcr/nodetype/NodeTypeDefinition/index.d.ts +248 -0
- package/hidden/javax/jcr/nodetype/NodeTypeIterator/index.d.ts +16 -0
- package/hidden/javax/jcr/nodetype/NodeTypeManager/index.d.ts +218 -0
- package/hidden/javax/jcr/nodetype/NodeTypeTemplate/index.d.ts +98 -0
- package/hidden/javax/jcr/nodetype/PropertyDefinition/index.d.ts +536 -0
- package/hidden/javax/jcr/nodetype/PropertyDefinitionTemplate/index.d.ts +97 -0
- package/hidden/javax/jcr/observation/Event/index.d.ts +133 -0
- package/hidden/javax/jcr/observation/EventIterator/index.d.ts +20 -0
- package/hidden/javax/jcr/observation/EventJournal/index.d.ts +22 -0
- package/hidden/javax/jcr/observation/EventListener/index.d.ts +23 -0
- package/hidden/javax/jcr/observation/EventListenerIterator/index.d.ts +20 -0
- package/hidden/javax/jcr/observation/ObservationManager/index.d.ts +227 -0
- package/hidden/javax/jcr/query/Query/index.d.ts +201 -0
- package/hidden/javax/jcr/query/QueryManager/index.d.ts +73 -0
- package/hidden/javax/jcr/query/QueryResult/index.d.ts +51 -0
- package/hidden/javax/jcr/query/Row/index.d.ts +159 -0
- package/hidden/javax/jcr/query/RowIterator/index.d.ts +20 -0
- package/hidden/javax/jcr/query/qom/And/index.d.ts +26 -0
- package/hidden/javax/jcr/query/qom/BindVariableValue/index.d.ts +15 -0
- package/hidden/javax/jcr/query/qom/ChildNode/index.d.ts +27 -0
- package/hidden/javax/jcr/query/qom/ChildNodeJoinCondition/index.d.ts +27 -0
- package/hidden/javax/jcr/query/qom/Column/index.d.ts +39 -0
- package/hidden/javax/jcr/query/qom/Comparison/index.d.ts +82 -0
- package/hidden/javax/jcr/query/qom/Constraint/index.d.ts +13 -0
- package/hidden/javax/jcr/query/qom/DescendantNode/index.d.ts +31 -0
- package/hidden/javax/jcr/query/qom/DescendantNodeJoinCondition/index.d.ts +29 -0
- package/hidden/javax/jcr/query/qom/DynamicOperand/index.d.ts +9 -0
- package/hidden/javax/jcr/query/qom/EquiJoinCondition/index.d.ts +41 -0
- package/hidden/javax/jcr/query/qom/FullTextSearch/index.d.ts +89 -0
- package/hidden/javax/jcr/query/qom/FullTextSearchScore/index.d.ts +24 -0
- package/hidden/javax/jcr/query/qom/Join/index.d.ts +36 -0
- package/hidden/javax/jcr/query/qom/JoinCondition/index.d.ts +9 -0
- package/hidden/javax/jcr/query/qom/Length/index.d.ts +24 -0
- package/hidden/javax/jcr/query/qom/Literal/index.d.ts +18 -0
- package/hidden/javax/jcr/query/qom/LowerCase/index.d.ts +26 -0
- package/hidden/javax/jcr/query/qom/NodeLocalName/index.d.ts +16 -0
- package/hidden/javax/jcr/query/qom/NodeName/index.d.ts +16 -0
- package/hidden/javax/jcr/query/qom/Not/index.d.ts +20 -0
- package/hidden/javax/jcr/query/qom/Operand/index.d.ts +9 -0
- package/hidden/javax/jcr/query/qom/Or/index.d.ts +30 -0
- package/hidden/javax/jcr/query/qom/Ordering/index.d.ts +53 -0
- package/hidden/javax/jcr/query/qom/PropertyExistence/index.d.ts +24 -0
- package/hidden/javax/jcr/query/qom/PropertyValue/index.d.ts +25 -0
- package/hidden/javax/jcr/query/qom/QueryObjectModel/index.d.ts +64 -0
- package/hidden/javax/jcr/query/qom/QueryObjectModelConstants/index.d.ts +9 -0
- package/hidden/javax/jcr/query/qom/QueryObjectModelFactory/index.d.ts +638 -0
- package/hidden/javax/jcr/query/qom/SameNode/index.d.ts +27 -0
- package/hidden/javax/jcr/query/qom/SameNodeJoinCondition/index.d.ts +36 -0
- package/hidden/javax/jcr/query/qom/Selector/index.d.ts +35 -0
- package/hidden/javax/jcr/query/qom/Source/index.d.ts +9 -0
- package/hidden/javax/jcr/query/qom/StaticOperand/index.d.ts +10 -0
- package/hidden/javax/jcr/query/qom/UpperCase/index.d.ts +26 -0
- package/hidden/javax/jcr/retention/Hold/index.d.ts +34 -0
- package/hidden/javax/jcr/retention/RetentionManager/index.d.ts +189 -0
- package/hidden/javax/jcr/retention/RetentionPolicy/index.d.ts +21 -0
- package/hidden/javax/jcr/security/AccessControlEntry/index.d.ts +24 -0
- package/hidden/javax/jcr/security/AccessControlList/index.d.ts +91 -0
- package/hidden/javax/jcr/security/AccessControlManager/index.d.ts +297 -0
- package/hidden/javax/jcr/security/AccessControlPolicy/index.d.ts +11 -0
- package/hidden/javax/jcr/security/AccessControlPolicyIterator/index.d.ts +20 -0
- package/hidden/javax/jcr/security/NamedAccessControlPolicy/index.d.ts +22 -0
- package/hidden/javax/jcr/security/Privilege/index.d.ts +117 -0
- package/hidden/javax/jcr/version/Version/index.d.ts +121 -0
- package/hidden/javax/jcr/version/VersionHistory/index.d.ts +307 -0
- package/hidden/javax/jcr/version/VersionIterator/index.d.ts +20 -0
- package/hidden/javax/jcr/version/VersionManager/index.d.ts +1082 -0
- package/hidden/senselogic/sitevision/api/base/Builder/index.d.ts +102 -0
- package/hidden/senselogic/sitevision/api/base/Filter/index.d.ts +25 -0
- package/hidden/senselogic/sitevision/api/base/FilterSplit/index.d.ts +50 -0
- package/hidden/senselogic/sitevision/api/base/Loadable/index.d.ts +15 -0
- package/hidden/senselogic/sitevision/api/base/Resolver/index.d.ts +31 -0
- package/hidden/senselogic/sitevision/api/base/Wrapper/index.d.ts +24 -0
- package/hidden/senselogic/sitevision/api/collaboration/CollaborationGroupWrapper/index.d.ts +417 -0
- package/hidden/senselogic/sitevision/api/format/NumericFormatter/index.d.ts +80 -0
- package/hidden/senselogic/sitevision/api/format/NumericFormatterBuilder/index.d.ts +100 -0
- package/hidden/senselogic/sitevision/api/i18n/Currency/index.d.ts +120 -0
- package/hidden/senselogic/sitevision/api/link/CustomLinkProcessor/index.d.ts +45 -0
- package/hidden/senselogic/sitevision/api/link/CustomLinkRenderData/index.d.ts +65 -0
- package/hidden/senselogic/sitevision/api/mail/Mail/index.d.ts +32 -0
- package/hidden/senselogic/sitevision/api/message/MessageTextLinker/index.d.ts +15 -0
- package/hidden/senselogic/sitevision/api/metadata/value/LinkValue/index.d.ts +23 -0
- package/hidden/senselogic/sitevision/api/metadata/value/RelatedValue/index.d.ts +23 -0
- package/hidden/senselogic/sitevision/api/property/VersionedPropertyUtil/index.d.ts +642 -0
- package/hidden/senselogic/sitevision/api/render/BuddyIconRenderer/BuddyIconInfo/index.d.ts +51 -0
- package/hidden/senselogic/sitevision/api/render/ImageScaler/index.d.ts +58 -0
- package/hidden/senselogic/sitevision/api/render/TextModuleRenderer/index.d.ts +301 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/ArticleUtilConstants/index.d.ts +85 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/ExceptionSuppressingProxyConstants/index.d.ts +31 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/IndexingUtilConstants/index.d.ts +31 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/LinkPageUtilConstants/index.d.ts +67 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/MathInstanceConstants/index.d.ts +25 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/MimeTypeUtilConstants/index.d.ts +19 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/NodeTypeUtilConstants/index.d.ts +1243 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/OutputUtilConstants/index.d.ts +31 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/PageUtilConstants/index.d.ts +91 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/PortletContextUtilConstants/index.d.ts +27 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/PortletUtilConstants/index.d.ts +19 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/QueryStringUtilConstants/index.d.ts +19 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/SearchHitConstants/index.d.ts +25 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/SearchResultConstants/index.d.ts +37 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/VersionUtilConstants/index.d.ts +25 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/index.d.ts +8 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityContext/index.d.ts +50 -0
- package/hidden/senselogic/sitevision/api/render/velocity/VelocityEvaluator/index.d.ts +89 -0
- package/hidden/senselogic/sitevision/api/script/RequesterChainable/index.d.ts +119 -0
- package/hidden/senselogic/sitevision/api/script/app/RestAppInvoker/index.d.ts +272 -0
- package/hidden/senselogic/sitevision/api/script/factory/TypedArgument/index.d.ts +43 -0
- package/hidden/senselogic/sitevision/api/script/proxy/ExceptionSuppressingCollection/index.d.ts +94 -0
- package/hidden/senselogic/sitevision/api/script/proxy/ExceptionSuppressingIterator/index.d.ts +117 -0
- package/hidden/senselogic/sitevision/api/script/proxy/ExceptionSuppressingProxy/index.d.ts +90 -0
- package/hidden/senselogic/sitevision/api/search/SearchFieldUtil/index.d.ts +89 -0
- package/hidden/senselogic/sitevision/api/search/SearchHighlighter/index.d.ts +45 -0
- package/hidden/senselogic/sitevision/api/search/SearchHit/index.d.ts +1176 -0
- package/hidden/senselogic/sitevision/api/search/SearchResult/index.d.ts +414 -0
- package/hidden/senselogic/sitevision/api/search/facet/SearchFacetField/index.d.ts +27 -0
- package/hidden/senselogic/sitevision/api/search/facet/SearchFacetValue/index.d.ts +61 -0
- package/hidden/senselogic/sitevision/api/search/searcher/Searcher/index.d.ts +277 -0
- package/hidden/senselogic/sitevision/api/search/searcher/component/Filter/index.d.ts +25 -0
- package/hidden/senselogic/sitevision/api/search/searcher/component/Highlight/index.d.ts +29 -0
- package/hidden/senselogic/sitevision/api/search/searcher/component/Monitor/index.d.ts +25 -0
- package/hidden/senselogic/sitevision/api/search/searcher/component/Parser/index.d.ts +35 -0
- package/hidden/senselogic/sitevision/api/search/searcher/component/Sort/index.d.ts +25 -0
- package/hidden/senselogic/sitevision/api/search/searcher/component/SpellCheck/index.d.ts +29 -0
- package/hidden/senselogic/sitevision/api/search/sort/CustomSort/index.d.ts +82 -0
- package/hidden/senselogic/sitevision/api/search/suggestion/SearchSuggestion/index.d.ts +21 -0
- package/hidden/senselogic/sitevision/api/security/DirectoryAttributes/index.d.ts +70 -0
- package/hidden/senselogic/sitevision/api/security/MessageDigester/index.d.ts +50 -0
- package/hidden/senselogic/sitevision/api/security/RoleAssignment/index.d.ts +72 -0
- package/hidden/senselogic/sitevision/api/security/RoleMatcher/index.d.ts +29 -0
- package/hidden/senselogic/sitevision/api/security/SecretStore/index.d.ts +55 -0
- package/hidden/senselogic/sitevision/api/security/UserUtil/index.d.ts +80 -0
- package/hidden/senselogic/sitevision/api/security/jaas/filter/AuthenticationFilter/index.d.ts +36 -0
- package/hidden/senselogic/sitevision/api/security/jaas/filter/AuthenticationFilterChain/index.d.ts +32 -0
- package/hidden/senselogic/sitevision/api/user/UserIdentityWrapper/index.d.ts +599 -0
- package/hidden/senselogic/sitevision/api/webresource/LinkTarget/index.d.ts +20 -0
- package/hidden/senselogic/sitevision/api/xml/XmlElement/index.d.ts +55 -0
- package/hidden/senselogic/sitevision/api/xml/XmlElementHandler/index.d.ts +17 -0
- package/package.json +2 -4
- package/server/AliasUtil/index.d.ts +25 -0
- package/server/AliasUtil/index.js +10 -0
- package/server/ArchiveUtil/index.d.ts +65 -11
- package/server/ArraysInstance/index.d.ts +1846 -0
- package/server/ArticleUtil/index.d.ts +381 -69
- package/server/AuthenticationUtil/index.d.ts +106 -0
- package/server/BookmarkUtil/index.d.ts +36 -28
- package/server/BuddyIconRenderer/index.d.ts +240 -0
- package/server/ClientUtil/index.d.ts +18 -4
- package/server/CollaborationFactory/index.d.ts +42 -25
- package/server/CollaborationGroupFolderUtil/index.d.ts +40 -29
- package/server/CollaborationGroupTemplateUtil/index.d.ts +71 -39
- package/server/CollaborationGroupUtil/index.d.ts +128 -55
- package/server/CollectionsInstance/index.d.ts +738 -0
- package/server/ColorUtil/index.d.ts +22 -17
- package/server/CompoundAndFilterBuilder/index.d.ts +60 -0
- package/server/CompoundComparatorBuilder/index.d.ts +63 -0
- package/server/CompoundOrFilterBuilder/index.d.ts +59 -0
- package/server/ContentNodeUtil/index.d.ts +76 -0
- package/server/CurrencyFactory/index.d.ts +135 -0
- package/server/DateUtil/index.d.ts +154 -77
- package/server/DecorationUtil/index.d.ts +23 -0
- package/server/DeviceUtil/index.d.ts +36 -0
- package/server/DirectoryUtil/index.d.ts +107 -47
- package/server/DocTypeUtil/index.d.ts +149 -0
- package/server/EndecUtil/index.d.ts +537 -91
- package/server/ExtendedDismaxParserBuilder/index.d.ts +311 -0
- package/server/FileIconRenderer/index.d.ts +346 -0
- package/server/FileUtil/index.d.ts +462 -0
- package/server/FilterBuilder/index.d.ts +120 -0
- package/server/FolderUtil/index.d.ts +161 -0
- package/server/FontUtil/index.d.ts +49 -0
- package/server/FormatterBuilderFactory/index.d.ts +129 -0
- package/server/HighlightBuilder/index.d.ts +194 -0
- package/server/IconUtil/index.d.ts +37 -0
- package/server/ImageLinkRenderer/index.d.ts +134 -0
- package/server/ImageRenderer/index.d.ts +613 -231
- package/server/ImageUtil/index.d.ts +430 -0
- package/server/IndexUtil/index.d.ts +71 -0
- package/server/IndexingUtil/index.d.ts +92 -0
- package/server/InstanceCreatorUtil/index.d.ts +661 -0
- package/server/InstanceTypeUtil/index.d.ts +202 -0
- package/server/JwtUtil/index.d.ts +217 -0
- package/server/LandingPageUtil/index.d.ts +67 -50
- package/server/LinkPageUtil/index.d.ts +468 -0
- package/server/LinkRenderer/index.d.ts +1157 -0
- package/server/LinkTargetBuilder/index.d.ts +146 -0
- package/server/LinkValueBuilder/index.d.ts +129 -52
- package/server/ListWrapper/index.d.ts +172 -0
- package/server/LocaleUtil/index.d.ts +695 -61
- package/server/LogUtil/index.d.ts +118 -77
- package/server/MailBuilder/index.d.ts +238 -0
- package/server/MailUtil/index.d.ts +98 -0
- package/server/MathInstance/index.d.ts +681 -0
- package/server/MessageDigesterFactory/index.d.ts +49 -0
- package/server/MetadataDefinitionUtil/index.d.ts +118 -0
- package/server/MetadataUtil/index.d.ts +524 -79
- package/server/MimeTypeUtil/index.d.ts +316 -0
- package/server/MonitorBuilder/index.d.ts +51 -0
- package/server/NodeComparatorUtil/index.d.ts +397 -0
- package/server/NodeFactoryUtil/index.d.ts +32 -0
- package/server/NodeFilterUtil/index.d.ts +924 -0
- package/server/NodeIteratorUtil/index.d.ts +322 -72
- package/server/NodeResolverUtil/index.d.ts +767 -0
- package/server/NodeTreeUtil/index.d.ts +339 -63
- package/server/NodeTypeUtil/index.d.ts +391 -197
- package/server/OfflineVersionPropertyUtil/index.d.ts +30 -0
- package/server/OnlineVersionPropertyUtil/index.d.ts +30 -0
- package/server/OutputUtil/index.d.ts +641 -0
- package/server/PageUtil/index.d.ts +330 -0
- package/server/PermissionUtil/index.d.ts +650 -0
- package/server/PortletContextUtil/index.d.ts +118 -37
- package/server/PortletContextUtil/index.js +1 -0
- package/server/PortletUtil/index.d.ts +40 -0
- package/server/PrincipalUtil/index.d.ts +51 -0
- package/server/Properties/index.d.ts +185 -38
- package/server/PropertyUtil/index.d.ts +2330 -406
- package/server/PublishingUtil/index.d.ts +385 -49
- package/server/QueryStringUtil/index.d.ts +737 -0
- package/server/RedirectUtil/index.d.ts +98 -0
- package/server/RelatedValueBuilder/index.d.ts +81 -39
- package/server/Requester/index.d.ts +441 -65
- package/server/ResourceLocatorUtil/index.d.ts +483 -227
- package/server/RestApi/index.d.ts +208 -23
- package/server/RestAppInvokerFactory/index.d.ts +73 -0
- package/server/RoleAssignmentBuilder/index.d.ts +60 -0
- package/server/RoleMatcherBuilder/index.d.ts +59 -0
- package/server/RoleUtil/index.d.ts +57 -0
- package/server/ScriptUtil/index.d.ts +625 -143
- package/server/SearchFactory/index.d.ts +133 -0
- package/server/SearchUtil/index.d.ts +164 -0
- package/server/SearcherBuilder/index.d.ts +260 -0
- package/server/Session/index.d.ts +1758 -0
- package/server/SimpleUserUtil/index.d.ts +39 -30
- package/server/SiteCookieUtil/index.d.ts +78 -53
- package/server/SortBuilder/index.d.ts +111 -0
- package/server/SpellCheckBuilder/index.d.ts +68 -0
- package/server/StandardParserBuilder/index.d.ts +112 -0
- package/server/StructureUtil/index.d.ts +167 -0
- package/server/SubscriberUtil/index.d.ts +122 -0
- package/server/SubscriptionUtil/index.d.ts +197 -0
- package/server/SystemUserUtil/index.d.ts +201 -98
- package/server/TagUtil/index.d.ts +193 -0
- package/server/TemplateUtil/index.d.ts +217 -0
- package/server/TemporaryFileNodeBuilder/index.d.ts +63 -0
- package/server/TemporaryNodeBuilder/index.d.ts +241 -0
- package/server/TextModuleRendererBuilder/index.d.ts +68 -0
- package/server/TimestampUtil/index.d.ts +98 -82
- package/server/TranslationUtil/index.d.ts +175 -0
- package/server/TrashcanUtil/index.d.ts +193 -24
- package/server/UserDataUtil/index.d.ts +167 -85
- package/server/UserFactory/index.d.ts +45 -30
- package/server/UserFieldRenderer/index.d.ts +258 -0
- package/server/UserIdentityUtil/index.d.ts +61 -29
- package/server/UserUtil/index.d.ts +69 -28
- package/server/Utils/index.d.ts +870 -12
- package/server/VelocityRenderer/index.d.ts +248 -0
- package/server/VersionUtil/index.d.ts +15 -12
- package/server/WebContentUtil/index.d.ts +644 -0
- package/server/WebResourceFactory/index.d.ts +66 -0
- package/server/XSLTUtil/index.d.ts +49 -10
- package/server/XmlParserUtil/index.d.ts +82 -81
- package/builtins/Binary/index.d.ts +0 -3
- package/builtins/Calendar/index.d.ts +0 -3
- package/builtins/Collection/index.d.ts +0 -3
- package/builtins/Date/index.d.ts +0 -3
- package/builtins/InputStream/index.d.ts +0 -3
- package/builtins/Instant/index.d.ts +0 -3
- package/builtins/List/index.d.ts +0 -3
- package/builtins/LocalDateTime/index.d.ts +0 -3
- package/builtins/Locale/index.d.ts +0 -3
- package/builtins/Node/index.d.ts +0 -3
- package/builtins/NodeIterator/index.d.ts +0 -27
- package/builtins/Property/index.d.ts +0 -3
- package/builtins/Serializable/index.d.ts +0 -3
- package/builtins/Set/index.d.ts +0 -3
- package/builtins/Throwable/index.d.ts +0 -3
- package/builtins/byte/index.d.ts +0 -3
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import StaticOperand from "../StaticOperand";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Performs a full-text search.
|
|
5
|
+
* <p>
|
|
6
|
+
* The full-text search expression is evaluated against the set of full-text
|
|
7
|
+
* indexed properties within the full-text search scope. If {@link
|
|
8
|
+
* #getPropertyName property} is specified, the full-text search scope is the
|
|
9
|
+
* property of that name on the {@link #getSelectorName selector} node in the
|
|
10
|
+
* node-tuple; otherwise the full-text search scope is all properties of the
|
|
11
|
+
* {@link #getSelectorName selector} node (or, in some implementations, all
|
|
12
|
+
* properties in the node subgraph).
|
|
13
|
+
* <p>
|
|
14
|
+
* Which properties (if any) in a repository are full-text indexed is
|
|
15
|
+
* implementation determined.
|
|
16
|
+
* <p>
|
|
17
|
+
* It is also implementation determined whether {@link #getFullTextSearchExpression
|
|
18
|
+
* fullTextSearchExpression} is independently evaluated against each full-text
|
|
19
|
+
* indexed property in the full-text search scope, or collectively evaluated
|
|
20
|
+
* against the set of such properties using some implementation-determined
|
|
21
|
+
* mechanism.
|
|
22
|
+
* <p>
|
|
23
|
+
* Similarly, for multi-valued properties, it is implementation determined
|
|
24
|
+
* whether {@link #getFullTextSearchExpression fullTextSearchExpression} is
|
|
25
|
+
* independently evaluated against each element in the array of values, or
|
|
26
|
+
* collectively evaluated against the array of values using some
|
|
27
|
+
* implementation-determined mechanism.
|
|
28
|
+
* <p>
|
|
29
|
+
* At minimum, an implementation must support the following {@link
|
|
30
|
+
* #getFullTextSearchExpression fullTextSearchExpression} grammar:
|
|
31
|
+
* </p>
|
|
32
|
+
* <pre>
|
|
33
|
+
* fullTextSearchExpression ::= [-]term {whitespace [OR] whitespace [-]term}
|
|
34
|
+
* term ::= word | '"' word {whitespace word} '"'
|
|
35
|
+
* word ::= (A string containing no whitespace)
|
|
36
|
+
* whitespace ::= (A string of only whitespace)
|
|
37
|
+
* </pre>
|
|
38
|
+
* <p>
|
|
39
|
+
* A query satisfies a <code>FullTextSearch</code> constraint if the value (or
|
|
40
|
+
* values) of the full-text indexed properties within the full-text search scope
|
|
41
|
+
* satisfy the specified {@link #getFullTextSearchExpression
|
|
42
|
+
* fullTextSearchExpression}, evaluated as follows:
|
|
43
|
+
* </p>
|
|
44
|
+
* <ul>
|
|
45
|
+
* <li>
|
|
46
|
+
* A term not preceded with "<code>-</code>" (minus sign) is satisfied only if the value contains that term.
|
|
47
|
+
* </li>
|
|
48
|
+
* <li>
|
|
49
|
+
* A term preceded with "<code>-</code>" (minus sign) is satisfied only if the value does not contain that term.
|
|
50
|
+
* </li>
|
|
51
|
+
* <li>
|
|
52
|
+
* Terms separated by whitespace are implicitly "ANDed".
|
|
53
|
+
* </li>
|
|
54
|
+
* <li>
|
|
55
|
+
* Terms separated by "<code>OR</code>" are "ORed".
|
|
56
|
+
* </li>
|
|
57
|
+
* <li>
|
|
58
|
+
* "AND" has higher precedence than "OR".
|
|
59
|
+
* </li>
|
|
60
|
+
* <li>
|
|
61
|
+
* Within a term, each double quote (<code>"</code>), "<code>-</code>" (minus sign), and "<code>\</code>" (backslash)
|
|
62
|
+
* must be escaped by a preceding "<code>\</code>" (backslash).
|
|
63
|
+
* </li>
|
|
64
|
+
* </ul>
|
|
65
|
+
*
|
|
66
|
+
* <p><strong>Sitevision note:</strong> Unsupported operation</p>Gets the name of the selector against which to apply this constraint.Gets the name of the property.Gets the full-text search expression.
|
|
67
|
+
* @since JCR 2.0
|
|
68
|
+
*/
|
|
69
|
+
interface FullTextSearch {
|
|
70
|
+
/**
|
|
71
|
+
* Gets the name of the selector against which to apply this constraint.
|
|
72
|
+
* @return the selector name; non-null
|
|
73
|
+
*/
|
|
74
|
+
getSelectorName(): string;
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Gets the name of the property.
|
|
78
|
+
* @return the property name if the full-text search scope is a property, otherwise null if the full-text search scope is the node (or node subgraph, in some implementations).
|
|
79
|
+
*/
|
|
80
|
+
getPropertyName(): string;
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* Gets the full-text search expression.
|
|
84
|
+
* @return the full-text search expression; non-null
|
|
85
|
+
*/
|
|
86
|
+
getFullTextSearchExpression(): StaticOperand;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
export default FullTextSearch;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Evaluates to a <code>DOUBLE</code> value equal to the full-text search score
|
|
3
|
+
* of a node.
|
|
4
|
+
* <p>
|
|
5
|
+
* Full-text search score ranks a selector's nodes by their relevance to the
|
|
6
|
+
* <code>fullTextSearchExpression</code> specified in a {@link FullTextSearch}.
|
|
7
|
+
* The values to which <code>FullTextSearchScore</code> evaluates and the
|
|
8
|
+
* interpretation of those values are implementation specific.
|
|
9
|
+
* <code>FullTextSearchScore</code> may evaluate to a constant value in a
|
|
10
|
+
* repository that does not support full-text search scoring or has no full-text
|
|
11
|
+
* indexed properties.
|
|
12
|
+
*
|
|
13
|
+
* <p><strong>Sitevision note:</strong> Unsupported operation</p>Gets the name of the selector against which to evaluate this operand.
|
|
14
|
+
* @since JCR 2.0
|
|
15
|
+
*/
|
|
16
|
+
interface FullTextSearchScore {
|
|
17
|
+
/**
|
|
18
|
+
* Gets the name of the selector against which to evaluate this operand.
|
|
19
|
+
* @return the selector name; non-null
|
|
20
|
+
*/
|
|
21
|
+
getSelectorName(): string;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export default FullTextSearchScore;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import Source from "../Source";
|
|
2
|
+
import JoinCondition from "../JoinCondition";
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* Performs a join between two node-tuple sources.
|
|
6
|
+
*
|
|
7
|
+
* <p><strong>Sitevision note:</strong> Unsupported operation</p>Gets the left node-tuple source.Gets the right node-tuple source.Gets the join type.Gets the join condition.
|
|
8
|
+
* @since JCR 2.0
|
|
9
|
+
*/
|
|
10
|
+
interface Join {
|
|
11
|
+
/**
|
|
12
|
+
* Gets the left node-tuple source.
|
|
13
|
+
* @return the left source; non-null
|
|
14
|
+
*/
|
|
15
|
+
getLeft(): Source;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Gets the right node-tuple source.
|
|
19
|
+
* @return the right source; non-null
|
|
20
|
+
*/
|
|
21
|
+
getRight(): Source;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Gets the join type.
|
|
25
|
+
* @return either <ul> <li>{@link QueryObjectModelConstants#JCR_JOIN_TYPE_INNER},</li> <li>{@link QueryObjectModelConstants#JCR_JOIN_TYPE_LEFT_OUTER},</li> <li>{@link QueryObjectModelConstants#JCR_JOIN_TYPE_RIGHT_OUTER}</li> </ul>
|
|
26
|
+
*/
|
|
27
|
+
getJoinType(): string;
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Gets the join condition.
|
|
31
|
+
* @return the join condition; non-null
|
|
32
|
+
*/
|
|
33
|
+
getJoinCondition(): JoinCondition;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export default Join;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import PropertyValue from "../PropertyValue";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Evaluates to the length (or lengths, if multi-valued) of a property.
|
|
5
|
+
* <p>
|
|
6
|
+
* The length should be computed as though the <code>getLength</code> method (or
|
|
7
|
+
* <code>getLengths</code>, if multi-valued) of <code>javax.jcr.Property</code>
|
|
8
|
+
* were called.
|
|
9
|
+
* <p>
|
|
10
|
+
* If {@link #getPropertyValue propertyValue} evaluates to null, the
|
|
11
|
+
* <code>Length</code> operand also evaluates to null.
|
|
12
|
+
*
|
|
13
|
+
* <p><strong>Sitevision note:</strong> Unsupported operation</p>Gets the property value for which to compute the length.
|
|
14
|
+
* @since JCR 2.0
|
|
15
|
+
*/
|
|
16
|
+
interface Length {
|
|
17
|
+
/**
|
|
18
|
+
* Gets the property value for which to compute the length.
|
|
19
|
+
* @return the property value; non-null
|
|
20
|
+
*/
|
|
21
|
+
getPropertyValue(): PropertyValue;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export default Length;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import Value from "../../../Value";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Evaluates to a literal value.
|
|
5
|
+
*
|
|
6
|
+
* <p><strong>Sitevision note:</strong> Unsupported operation</p>Gets the value of the literal.
|
|
7
|
+
* @since Sitevision 3.5
|
|
8
|
+
* @since JCR 2.0
|
|
9
|
+
*/
|
|
10
|
+
interface Literal {
|
|
11
|
+
/**
|
|
12
|
+
* Gets the value of the literal.
|
|
13
|
+
* @return the value of the literal.
|
|
14
|
+
*/
|
|
15
|
+
getLiteralValue(): Value;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export default Literal;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import DynamicOperand from "../DynamicOperand";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Evaluates to the lower-case string value (or values, if multi-valued) of
|
|
5
|
+
* {@link #getOperand operand}.
|
|
6
|
+
* <p>
|
|
7
|
+
* If {@link #getOperand operand} does not evaluate to a string value, its value
|
|
8
|
+
* is first converted to a string. The lower-case string value is computed as
|
|
9
|
+
* though the <code>toLowerCase()</code> method of <code>java.lang.String</code>
|
|
10
|
+
* were called.
|
|
11
|
+
* <p>
|
|
12
|
+
* If {@link #getOperand operand} evaluates to null, the <code>LowerCase</code>
|
|
13
|
+
* operand also evaluates to null.
|
|
14
|
+
*
|
|
15
|
+
* <p><strong>Sitevision note:</strong> Unsupported operation</p>Gets the operand whose value is converted to a lower-case string.
|
|
16
|
+
* @since JCR 2.0
|
|
17
|
+
*/
|
|
18
|
+
interface LowerCase {
|
|
19
|
+
/**
|
|
20
|
+
* Gets the operand whose value is converted to a lower-case string.
|
|
21
|
+
* @return the operand; non-null
|
|
22
|
+
*/
|
|
23
|
+
getOperand(): DynamicOperand;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export default LowerCase;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Evaluates to a <code>NAME</code> value equal to the local (unprefixed) name
|
|
3
|
+
* of a node.
|
|
4
|
+
*
|
|
5
|
+
* <p><strong>Sitevision note:</strong> Unsupported operation</p>Gets the name of the selector against which to evaluate this operand.
|
|
6
|
+
* @since JCR 2.0
|
|
7
|
+
*/
|
|
8
|
+
interface NodeLocalName {
|
|
9
|
+
/**
|
|
10
|
+
* Gets the name of the selector against which to evaluate this operand.
|
|
11
|
+
* @return the selector name; non-null
|
|
12
|
+
*/
|
|
13
|
+
getSelectorName(): string;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export default NodeLocalName;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Evaluates to a <code>NAME</code> value equal to the namespace-qualified name
|
|
3
|
+
* of a node.
|
|
4
|
+
*
|
|
5
|
+
* <p><strong>Sitevision note:</strong> Unsupported operation</p>Gets the name of the selector against which to evaluate this operand.
|
|
6
|
+
* @since JCR 2.0
|
|
7
|
+
*/
|
|
8
|
+
interface NodeName {
|
|
9
|
+
/**
|
|
10
|
+
* Gets the name of the selector against which to evaluate this operand.
|
|
11
|
+
* @return the selector name; non-null
|
|
12
|
+
*/
|
|
13
|
+
getSelectorName(): string;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
export default NodeName;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import Constraint from "../Constraint";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Performs a logical negation of another constraint.
|
|
5
|
+
* <p>
|
|
6
|
+
* To satisfy the <code>Not</code> constraint, the node-tuple must <i>not</i>
|
|
7
|
+
* satisfy {@link #getConstraint constraint}.
|
|
8
|
+
*
|
|
9
|
+
* <p><strong>Sitevision note:</strong> Unsupported operation</p>Gets the constraint negated by this <code>Not</code> constraint.
|
|
10
|
+
* @since JCR 2.0
|
|
11
|
+
*/
|
|
12
|
+
interface Not {
|
|
13
|
+
/**
|
|
14
|
+
* Gets the constraint negated by this <code>Not</code> constraint.
|
|
15
|
+
* @return the constraint; non-null
|
|
16
|
+
*/
|
|
17
|
+
getConstraint(): Constraint;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export default Not;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import Constraint from "../Constraint";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Performs a logical disjunction of two other constraints.
|
|
5
|
+
* <p>
|
|
6
|
+
* To satisfy the <code>Or</code> constraint, the node-tuple must either: <ul>
|
|
7
|
+
* <li>satisfy {@link #getConstraint1 constraint1} but not {@link
|
|
8
|
+
* #getConstraint2 constraint2}, or</li> <li>satisfy {@link #getConstraint2
|
|
9
|
+
* constraint2} but not {@link #getConstraint1 constraint1}, or</li> <li>satisfy
|
|
10
|
+
* both {@link #getConstraint1 constraint1} and {@link #getConstraint2
|
|
11
|
+
* constraint2}.</li> </ul>
|
|
12
|
+
*
|
|
13
|
+
* <p><strong>Sitevision note:</strong> Unsupported operation</p>Gets the first constraint.Gets the second constraint.
|
|
14
|
+
* @since JCR 2.0
|
|
15
|
+
*/
|
|
16
|
+
interface Or {
|
|
17
|
+
/**
|
|
18
|
+
* Gets the first constraint.
|
|
19
|
+
* @return the constraint; non-null
|
|
20
|
+
*/
|
|
21
|
+
getConstraint1(): Constraint;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Gets the second constraint.
|
|
25
|
+
* @return the constraint; non-null
|
|
26
|
+
*/
|
|
27
|
+
getConstraint2(): Constraint;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export default Or;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import DynamicOperand from "../DynamicOperand";
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* Determines the relative order of two node-tuples by evaluating {@link
|
|
5
|
+
* #getOperand operand} for each.
|
|
6
|
+
* <p>
|
|
7
|
+
* For a first node-tuple, <code>nt1</code>, for which {@link #getOperand
|
|
8
|
+
* operand} evaluates to <code>v1</code>, and a second node-tuple,
|
|
9
|
+
* <code>nt2</code>, for which {@link #getOperand operand} evaluates to
|
|
10
|
+
* <code>v2</code>: <ul> <li>If {@link #getOrder order} is
|
|
11
|
+
* <code>Ascending</code>, then:<ul> <li>if either <code>v1</code> is null,
|
|
12
|
+
* <code>v2</code> is null, or both <code>v1</code> and <code>v2</code> are
|
|
13
|
+
* null, the relative order of <code>nt1</code> and <code>nt2</code> is
|
|
14
|
+
* implementation determined, otherwise</li> <li>if <code>v1</code> is a
|
|
15
|
+
* different property type than <code>v2</code>, the relative order of
|
|
16
|
+
* <code>nt1</code> and <code>nt2</code> is implementation determined,
|
|
17
|
+
* otherwise</li> <li>if <code>v1</code> is ordered before <code>v2</code>, then
|
|
18
|
+
* <code>nt1</code> precedes <code>nt2</code>, otherwise</li> <li>if
|
|
19
|
+
* <code>v1</code> is ordered after <code>v2</code>, then <code>nt2</code>
|
|
20
|
+
* precedes <code>nt1</code>, otherwise</li> <li>the relative order of
|
|
21
|
+
* <code>nt1</code> and <code>nt2</code> is implementation determined and may be
|
|
22
|
+
* arbitrary.</li></ul></li> <li>Otherwise, if {@link #getOrder order} is
|
|
23
|
+
* <code>Descending</code>, then:<ul> <li>if either <code>v1</code> is null,
|
|
24
|
+
* <code>v2</code> is null, or both <code>v1</code> and <code>v2</code> are
|
|
25
|
+
* null, the relative order of <code>nt1</code> and <code>nt2</code> is
|
|
26
|
+
* implementation determined, otherwise</li> <li>if <code>v1</code> is a
|
|
27
|
+
* different property type than <code>v2</code>, the relative order of
|
|
28
|
+
* <code>nt1</code> and <code>nt2</code> is implementation determined,
|
|
29
|
+
* otherwise</li> <li>if <code>v1</code> is ordered before <code>v2</code>, then
|
|
30
|
+
* <code>nt2</code> precedes <code>nt1</code>, otherwise</li> <li>if
|
|
31
|
+
* <code>v1</code> is ordered after <code>v2</code>, then <code>nt1</code>
|
|
32
|
+
* precedes <code>nt2</code>, otherwise</li> <li>the relative order of
|
|
33
|
+
* <code>nt1</code> and <code>nt2</code> is implementation determined and may be
|
|
34
|
+
* arbitrary.</li></ul></li> </ul>
|
|
35
|
+
*
|
|
36
|
+
* <p><strong>Sitevision note:</strong> Unsupported operation</p>The operand by which to order.Gets the order.
|
|
37
|
+
* @since JCR 2.0
|
|
38
|
+
*/
|
|
39
|
+
interface Ordering {
|
|
40
|
+
/**
|
|
41
|
+
* The operand by which to order.
|
|
42
|
+
* @return the operand; non-null
|
|
43
|
+
*/
|
|
44
|
+
getOperand(): DynamicOperand;
|
|
45
|
+
|
|
46
|
+
/**
|
|
47
|
+
* Gets the order.
|
|
48
|
+
* @return either <ul> <li>{@link QueryObjectModelConstants#JCR_ORDER_ASCENDING} or</li> <li>{@link QueryObjectModelConstants#JCR_ORDER_DESCENDING}</li> </ul>
|
|
49
|
+
*/
|
|
50
|
+
getOrder(): string;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export default Ordering;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Tests the existence of a property.
|
|
3
|
+
* <p>
|
|
4
|
+
* A node-tuple satisfies the constraint if the selector node has a property
|
|
5
|
+
* named {@link #getPropertyName property}.
|
|
6
|
+
*
|
|
7
|
+
* <p><strong>Sitevision note:</strong> Unsupported operation</p>Gets the name of the selector against which to apply this constraint.Gets the name of the property.
|
|
8
|
+
* @since JCR 2.0
|
|
9
|
+
*/
|
|
10
|
+
interface PropertyExistence {
|
|
11
|
+
/**
|
|
12
|
+
* Gets the name of the selector against which to apply this constraint.
|
|
13
|
+
* @return the selector name; non-null
|
|
14
|
+
*/
|
|
15
|
+
getSelectorName(): string;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* Gets the name of the property.
|
|
19
|
+
* @return the property name; non-null
|
|
20
|
+
*/
|
|
21
|
+
getPropertyName(): string;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
export default PropertyExistence;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Evaluates to the value (or values, if multi-valued) of a property.
|
|
3
|
+
* <p>
|
|
4
|
+
* If, for a node-tuple, the {@link #getSelectorName selector} node does not
|
|
5
|
+
* have a property named {@link #getPropertyName property}, the operand
|
|
6
|
+
* evaluates to null.
|
|
7
|
+
*
|
|
8
|
+
* <p><strong>Sitevision note:</strong> Unsupported operation</p>Gets the name of the selector against which to evaluate this operand.Gets the name of the property.
|
|
9
|
+
* @since JCR 2.0
|
|
10
|
+
*/
|
|
11
|
+
interface PropertyValue {
|
|
12
|
+
/**
|
|
13
|
+
* Gets the name of the selector against which to evaluate this operand.
|
|
14
|
+
* @return the selector name; non-null
|
|
15
|
+
*/
|
|
16
|
+
getSelectorName(): string;
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Gets the name of the property.
|
|
20
|
+
* @return the property name; non-null
|
|
21
|
+
*/
|
|
22
|
+
getPropertyName(): string;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export default PropertyValue;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import Source from "../Source";
|
|
2
|
+
import Constraint from "../Constraint";
|
|
3
|
+
import Ordering from "../Ordering";
|
|
4
|
+
import Column from "../Column";
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* A query in the JCR query object model.
|
|
8
|
+
* <p>
|
|
9
|
+
* The JCR query object model describes the queries that can be evaluated by a
|
|
10
|
+
* JCR repository independent of any particular query language, such as SQL.
|
|
11
|
+
* <p>
|
|
12
|
+
* A query consists of: <ul> <li>a source. When the query is evaluated, the
|
|
13
|
+
* source evaluates its selectors and the joins between them to produce a
|
|
14
|
+
* (possibly empty) set of node-tuples. This is a set of 1-tuples if the query
|
|
15
|
+
* has one selector (and therefore no joins), a set of 2-tuples if the query has
|
|
16
|
+
* two selectors (and therefore one join), a set of 3-tuples if the query has
|
|
17
|
+
* three selectors (two joins), and so forth.</li> <li>an optional constraint.
|
|
18
|
+
* When the query is evaluated, the constraint filters the set of
|
|
19
|
+
* node-tuples.</li> <li>a list of zero or more orderings. The orderings
|
|
20
|
+
* specify the order in which the node-tuples appear in the query results. The
|
|
21
|
+
* relative order of two node-tuples is determined by evaluating the specified
|
|
22
|
+
* orderings, in list order, until encountering an ordering for which one
|
|
23
|
+
* node-tuple precedes the other. If no orderings are specified, or if for none
|
|
24
|
+
* of the specified orderings does one node-tuple precede the other, then the
|
|
25
|
+
* relative order of the node-tuples is implementation determined (and may be
|
|
26
|
+
* arbitrary).</li> <li>a list of zero or more columns to include in the tabular
|
|
27
|
+
* view of the query results. If no columns are specified, the columns
|
|
28
|
+
* available in the tabular view are implementation determined, but minimally
|
|
29
|
+
* include, for each selector, a column for each single-valued non-residual
|
|
30
|
+
* property of the selector's node type.</li> </ul>
|
|
31
|
+
* <p>
|
|
32
|
+
* The query object model representation of a query is created by factory
|
|
33
|
+
* methods in the {@link QueryObjectModelFactory}.
|
|
34
|
+
*
|
|
35
|
+
* <p><strong>Sitevision note:</strong> Unsupported operation</p>Gets the node-tuple source for this query.Gets the constraint for this query.Gets the orderings for this query.Gets the columns for this query.
|
|
36
|
+
* @since JCR 2.0
|
|
37
|
+
*/
|
|
38
|
+
interface QueryObjectModel {
|
|
39
|
+
/**
|
|
40
|
+
* Gets the node-tuple source for this query.
|
|
41
|
+
* @return the node-tuple source; non-null
|
|
42
|
+
*/
|
|
43
|
+
getSource(): Source;
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* Gets the constraint for this query.
|
|
47
|
+
* @return the constraint, or null if none
|
|
48
|
+
*/
|
|
49
|
+
getConstraint(): Constraint;
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Gets the orderings for this query.
|
|
53
|
+
* @return an array of zero or more orderings; non-null
|
|
54
|
+
*/
|
|
55
|
+
getOrderings(): Ordering;
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Gets the columns for this query.
|
|
59
|
+
* @return an array of zero or more columns; non-null
|
|
60
|
+
*/
|
|
61
|
+
getColumns(): Column;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export default QueryObjectModel;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Defines constants used in the query object model.
|
|
3
|
+
*
|
|
4
|
+
* <p><strong>Sitevision note:</strong> Unsupported operation</p>An inner join.A left-outer join.A right-outer join.The "<code>=</code>" comparison operator.The "<code>!=</code>" comparison operator.The "<code><</code>" comparison operator.The "<code><=</code>" comparison operator.The "<code>></code>" comparison operator.The "<code>>=</code>" comparison operator.The "<code>like</code>" comparison operator.Ascending order.Descending order.
|
|
5
|
+
* @since JCR 2.0
|
|
6
|
+
*/
|
|
7
|
+
interface QueryObjectModelConstants {}
|
|
8
|
+
|
|
9
|
+
export default QueryObjectModelConstants;
|