diff --git a/.gitignore b/.gitignore index 7e33f5034ac..dfa69a393a7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + target/ local/ diff --git a/DISCLAIMER b/DISCLAIMER new file mode 100644 index 00000000000..d42789a4a1c --- /dev/null +++ b/DISCLAIMER @@ -0,0 +1,21 @@ +Apache KIE (incubating) is an effort undergoing incubation at The Apache Software +Foundation (ASF), sponsored by the name of Apache Incubator. Incubation is +required of all newly accepted projects until a further review indicates that +the infrastructure, communications, and decision making process have stabilized +in a manner consistent with other successful ASF projects. While incubation +status is not necessarily a reflection of the completeness or stability of the +code, it does indicate that the project has yet to be fully endorsed by the ASF. + +Some of the incubating project’s releases may not be fully compliant with ASF +policy. For example, releases may have incomplete or un-reviewed licensing +conditions. What follows is a list of known issues the project is currently +aware of (note that this list, by definition, is likely to be incomplete): + +* Hibernate, an LGPL project, is being used. Hibernate is in the process of relicensing to ASL v2 +* Some files, particularly test files, and those not supporting comments, may be missing the ASF Licensing Header + +If you are planning to incorporate this work into your product/project, please +be aware that you will need to conduct a thorough licensing review to determine +the overall implications of including this work. For the current status of this +project through the Apache Incubator visit: +https://incubator.apache.org/projects/kie.html diff --git a/Makefile b/Makefile index 56c65e26bd2..bfffe8862ec 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + mvn_opts= mvn_cmd=mvn $(mvn_opts) diff --git a/NOTICE b/NOTICE new file mode 100644 index 00000000000..2fe21eeead1 --- /dev/null +++ b/NOTICE @@ -0,0 +1,19 @@ +Apache KIE +Copyright 2024 The Apache Software Foundation + +This product includes software developed at +The Apache Software Foundation (http://www.apache.org/). + +The Initial Developer of some parts of the framework, which are copied from, derived from, or +inspired by KIE (Knowledge Is Everthing) group, is Red Hat, Inc (https://www.redhat.com/). +Copyright Red Hat, Inc. and/or its affiliates.. All Rights Reserved. + +This product also includes the following third-party components: + +* lunr 2.3.9 + Downloaded from: https://lunrjs.com/ + License: MIT + +* search-ui + Downloaded from: https://gitlab.com/antora/antora-lunr-extension + License: Mozilla Public License 2.0 diff --git a/README.md b/README.md index b5f526392c0..161caebddd8 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,57 @@ + + +An open source rule engine, [DMN engine](https://drools.org/learn/dmn.html) and complex event processing (CEP) engine for Java™ and the JVM Platform. + +Drools is a business rule management system with a forward-chaining and backward-chaining inference based rules engine, allowing fast and reliable evaluation of business rules and complex event processing. A rule engine is also a fundamental building block to create an expert system which, in artificial intelligence, is a computer system that emulates the decision-making ability of a human expert. + +Be sure to check out the Drools' project [website](https://drools.org) and [documentation](https://drools.org/learn/documentation.html)! + +Developing Drools and jBPM +========================== + +**If you want to build or contribute to a kiegroup project, [read this document](https://github.com/kiegroup/droolsjbpm-build-bootstrap/blob/main/README.md).** + +**It will save you and us a lot of time by setting up your development environment correctly.** +It solves all known pitfalls that can disrupt your development. +It also describes all guidelines, tips and tricks. +If you want your pull requests (or patches) to be merged, please respect those guidelines. + + +Test execution tip +================== + +Some test are meant to be executed on machine with _en_US_ locale. +A specific profile is provided to execute them on machines with different locale, namely `test-en`. +There are two ways to activate such profile during maven build: +1. `-Ptest-en` (profile-id based) +2. `-DTestEn` (property based) + +The following two commands will execute tests on machine with locale different than _en_US_: + +1. `make test -Ptest-en` +2. `make test -DTestEn` + + + + + An open source rule engine, [DMN engine](https://drools.org/learn/dmn.html) and complex event processing (CEP) engine for Java™ and the JVM Platform. Drools is a business rule management system with a forward-chaining and backward-chaining inference based rules engine, allowing fast and reliable evaluation of business rules and complex event processing. A rule engine is also a fundamental building block to create an expert system which, in artificial intelligence, is a computer system that emulates the decision-making ability of a human expert. diff --git a/bom/drools-bom/.gitignore b/bom/drools-bom/.gitignore index 606d865999a..9daf194cdaa 100644 --- a/bom/drools-bom/.gitignore +++ b/bom/drools-bom/.gitignore @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + /target /local diff --git a/bom/drools-bom/pom.xml b/bom/drools-bom/pom.xml index 51378329ddd..55081e52f90 100644 --- a/bom/drools-bom/pom.xml +++ b/bom/drools-bom/pom.xml @@ -1,4 +1,23 @@ + + diff --git a/bom/kie-core-bom/.gitignore b/bom/kie-core-bom/.gitignore index 606d865999a..9daf194cdaa 100644 --- a/bom/kie-core-bom/.gitignore +++ b/bom/kie-core-bom/.gitignore @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + /target /local diff --git a/bom/kie-core-bom/pom.xml b/bom/kie-core-bom/pom.xml index 5122046c010..395b748a0dd 100644 --- a/bom/kie-core-bom/pom.xml +++ b/bom/kie-core-bom/pom.xml @@ -1,4 +1,23 @@ + + diff --git a/bom/kie-dmn-bom/.gitignore b/bom/kie-dmn-bom/.gitignore index 606d865999a..9daf194cdaa 100644 --- a/bom/kie-dmn-bom/.gitignore +++ b/bom/kie-dmn-bom/.gitignore @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + /target /local diff --git a/bom/kie-dmn-bom/pom.xml b/bom/kie-dmn-bom/pom.xml index a448cd4a15f..e7534eb6d0d 100644 --- a/bom/kie-dmn-bom/pom.xml +++ b/bom/kie-dmn-bom/pom.xml @@ -1,4 +1,23 @@ + + diff --git a/bom/kie-efesto-bom/pom.xml b/bom/kie-efesto-bom/pom.xml index 9c71bf1c2fc..fb8b2f1e324 100644 --- a/bom/kie-efesto-bom/pom.xml +++ b/bom/kie-efesto-bom/pom.xml @@ -1,4 +1,23 @@ + + diff --git a/bom/kie-pmml-bom/.gitignore b/bom/kie-pmml-bom/.gitignore index 606d865999a..9daf194cdaa 100644 --- a/bom/kie-pmml-bom/.gitignore +++ b/bom/kie-pmml-bom/.gitignore @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + /target /local diff --git a/bom/kie-pmml-bom/pom.xml b/bom/kie-pmml-bom/pom.xml index ac05d058a0d..d8612ddface 100644 --- a/bom/kie-pmml-bom/pom.xml +++ b/bom/kie-pmml-bom/pom.xml @@ -1,4 +1,23 @@ + + diff --git a/bom/pom.xml b/bom/pom.xml index 411a4269a1d..ebc3f804164 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -1,4 +1,23 @@ + + diff --git a/build-parent/pom.xml b/build-parent/pom.xml index f91ddc9fbea..adc4fa06550 100644 --- a/build-parent/pom.xml +++ b/build-parent/pom.xml @@ -54,7 +54,7 @@ - A version property must be specified in the format "version.{groupId}", optionally with a suffix to make it unique. - Version properties must be sorted alphabetically (other form of sorting were found to be unclear and ambiguous). --> - 1.4.12 + 1.4.14 1.16.1 3.2.2 1.1.1 @@ -162,7 +162,7 @@ 3.7.1 0.9.1 3.3.4 - 1.26.0 + 1.26.1 1.3 @@ -1703,9 +1703,6 @@ org.apache.maven.plugins maven-deploy-plugin ${version.maven-deploy-plugin} - - 10 - org.codehaus.mojo diff --git a/drools-alphanetwork-compiler/src/main/resources/META-INF/services/org.drools.compiler.kie.builder.impl.KieBaseUpdaterFactory b/drools-alphanetwork-compiler/src/main/resources/META-INF/services/org.drools.compiler.kie.builder.impl.KieBaseUpdaterFactory index 0cd053ab1b2..b098f8eeee0 100644 --- a/drools-alphanetwork-compiler/src/main/resources/META-INF/services/org.drools.compiler.kie.builder.impl.KieBaseUpdaterFactory +++ b/drools-alphanetwork-compiler/src/main/resources/META-INF/services/org.drools.compiler.kie.builder.impl.KieBaseUpdaterFactory @@ -1 +1,20 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + org.drools.ancompiler.KieBaseUpdaterANCFactory \ No newline at end of file diff --git a/drools-base/src/main/java/org/drools/base/rule/accessor/RightTupleValueExtractor.java b/drools-base/src/main/java/org/drools/base/rule/accessor/RightTupleValueExtractor.java index 45d07205614..454eadf4e5c 100644 --- a/drools-base/src/main/java/org/drools/base/rule/accessor/RightTupleValueExtractor.java +++ b/drools-base/src/main/java/org/drools/base/rule/accessor/RightTupleValueExtractor.java @@ -1,3 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + package org.drools.base.rule.accessor; import org.drools.base.base.ValueResolver; diff --git a/drools-base/src/main/java/org/drools/base/rule/constraint/Constraint.java b/drools-base/src/main/java/org/drools/base/rule/constraint/Constraint.java index 55975e16d52..c07bf57cdea 100644 --- a/drools-base/src/main/java/org/drools/base/rule/constraint/Constraint.java +++ b/drools-base/src/main/java/org/drools/base/rule/constraint/Constraint.java @@ -83,10 +83,6 @@ void replaceDeclaration(Declaration oldDecl, */ boolean isTemporal(); - default BitMask getListenedPropertyMask(ObjectType objectType, List settableProperties ) { - return getListenedPropertyMask(Optional.empty(), objectType, settableProperties); - } - /** * Returns property reactivity BitMask of this constraint. * diff --git a/drools-beliefs/src/main/java/overview.html b/drools-beliefs/src/main/java/overview.html index 044791f516a..5e544120706 100644 --- a/drools-beliefs/src/main/java/overview.html +++ b/drools-beliefs/src/main/java/overview.html @@ -1,3 +1,22 @@ + +

Drools API

diff --git a/drools-beliefs/src/main/resources/META-INF/services/org.kie.api.internal.assembler.KieAssemblerService b/drools-beliefs/src/main/resources/META-INF/services/org.kie.api.internal.assembler.KieAssemblerService index eeca520887d..ea2f0ad285a 100644 --- a/drools-beliefs/src/main/resources/META-INF/services/org.kie.api.internal.assembler.KieAssemblerService +++ b/drools-beliefs/src/main/resources/META-INF/services/org.kie.api.internal.assembler.KieAssemblerService @@ -1 +1,20 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + org.drools.beliefs.bayes.assembler.BayesAssemblerService \ No newline at end of file diff --git a/drools-beliefs/src/main/resources/META-INF/services/org.kie.api.internal.runtime.KieRuntimeService b/drools-beliefs/src/main/resources/META-INF/services/org.kie.api.internal.runtime.KieRuntimeService index 26533f4561b..233cf4697e4 100644 --- a/drools-beliefs/src/main/resources/META-INF/services/org.kie.api.internal.runtime.KieRuntimeService +++ b/drools-beliefs/src/main/resources/META-INF/services/org.kie.api.internal.runtime.KieRuntimeService @@ -1 +1,20 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + org.drools.beliefs.bayes.runtime.BayesRuntimeService \ No newline at end of file diff --git a/drools-beliefs/src/main/resources/META-INF/services/org.kie.api.internal.weaver.KieWeaverService b/drools-beliefs/src/main/resources/META-INF/services/org.kie.api.internal.weaver.KieWeaverService index a02c102d4ec..dcb49a78cff 100644 --- a/drools-beliefs/src/main/resources/META-INF/services/org.kie.api.internal.weaver.KieWeaverService +++ b/drools-beliefs/src/main/resources/META-INF/services/org.kie.api.internal.weaver.KieWeaverService @@ -1 +1,20 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + org.drools.beliefs.bayes.weaver.BayesWeaverService \ No newline at end of file diff --git a/drools-beliefs/src/test/resources/org/drools/beliefs/bayes/integration/Garden.xmlbif b/drools-beliefs/src/test/resources/org/drools/beliefs/bayes/integration/Garden.xmlbif index a0709c34d68..18776b939fb 100644 --- a/drools-beliefs/src/test/resources/org/drools/beliefs/bayes/integration/Garden.xmlbif +++ b/drools-beliefs/src/test/resources/org/drools/beliefs/bayes/integration/Garden.xmlbif @@ -1,3 +1,21 @@ + Garden diff --git a/drools-commands/src/main/java/org/drools/commands/NewKieSessionCommand.java b/drools-commands/src/main/java/org/drools/commands/NewKieSessionCommand.java index dbddb8fac3b..a8095135a12 100644 --- a/drools-commands/src/main/java/org/drools/commands/NewKieSessionCommand.java +++ b/drools-commands/src/main/java/org/drools/commands/NewKieSessionCommand.java @@ -54,7 +54,7 @@ public KieSession execute(Context context) { KieSessionConfiguration kieSessionConfiguration = customizeSessionConfiguration.apply(sessionName, kieContainer); - KieSession ksession = kieContainer.newKieSession(kieSessionConfiguration); + KieSession ksession = kieContainer.newKieSession(sessionName, kieSessionConfiguration); ((RegistryContext) context).register(KieSession.class, ksession); diff --git a/drools-commands/src/main/resources/META-INF/services/org.kie.api.command.KieCommands b/drools-commands/src/main/resources/META-INF/services/org.kie.api.command.KieCommands index ac106d54170..d4d1614241e 100644 --- a/drools-commands/src/main/resources/META-INF/services/org.kie.api.command.KieCommands +++ b/drools-commands/src/main/resources/META-INF/services/org.kie.api.command.KieCommands @@ -1 +1,20 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + org.drools.commands.impl.CommandFactoryServiceImpl \ No newline at end of file diff --git a/drools-compiler/src/main/java/org/drools/compiler/rule/builder/dialect/java/parser/Java.tokens b/drools-compiler/src/main/java/org/drools/compiler/rule/builder/dialect/java/parser/Java.tokens index 552ab816f93..6aeacd061ff 100644 --- a/drools-compiler/src/main/java/org/drools/compiler/rule/builder/dialect/java/parser/Java.tokens +++ b/drools-compiler/src/main/java/org/drools/compiler/rule/builder/dialect/java/parser/Java.tokens @@ -1,3 +1,22 @@ +// +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you under the Apache License, Version 2.0 (the +// "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. +// + T__24=24 T__25=25 T__26=26 @@ -119,7 +138,7 @@ LINE_COMMENT=23 'import'=26 'static'=27 '.'=28 -'*'=29 +'//'=29 'class'=30 'extends'=31 'implements'=32 diff --git a/drools-compiler/src/main/resources/META-INF/drools-4.0.xsd b/drools-compiler/src/main/resources/META-INF/drools-4.0.xsd index 89697a1df79..6c56868ca10 100644 --- a/drools-compiler/src/main/resources/META-INF/drools-4.0.xsd +++ b/drools-compiler/src/main/resources/META-INF/drools-4.0.xsd @@ -1,4 +1,23 @@ + + diff --git a/drools-compiler/src/main/resources/META-INF/drools-5.2.xsd b/drools-compiler/src/main/resources/META-INF/drools-5.2.xsd index 8d6247cb0be..fbc8d7195dd 100644 --- a/drools-compiler/src/main/resources/META-INF/drools-5.2.xsd +++ b/drools-compiler/src/main/resources/META-INF/drools-5.2.xsd @@ -1,4 +1,23 @@ + + diff --git a/drools-compiler/src/main/resources/META-INF/drools-processes-5.0.xsd b/drools-compiler/src/main/resources/META-INF/drools-processes-5.0.xsd index e9eedb8711e..4afa6fad704 100644 --- a/drools-compiler/src/main/resources/META-INF/drools-processes-5.0.xsd +++ b/drools-compiler/src/main/resources/META-INF/drools-processes-5.0.xsd @@ -1,4 +1,23 @@ + + diff --git a/drools-compiler/src/main/resources/META-INF/services/org.drools.compiler.kie.builder.impl.KieBaseUpdaters b/drools-compiler/src/main/resources/META-INF/services/org.drools.compiler.kie.builder.impl.KieBaseUpdaters index c5f323d4df9..4f6fde82187 100644 --- a/drools-compiler/src/main/resources/META-INF/services/org.drools.compiler.kie.builder.impl.KieBaseUpdaters +++ b/drools-compiler/src/main/resources/META-INF/services/org.drools.compiler.kie.builder.impl.KieBaseUpdaters @@ -1 +1,20 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + org.drools.compiler.kie.builder.impl.KieBaseUpdatersImpl \ No newline at end of file diff --git a/drools-compiler/src/main/resources/META-INF/services/org.kie.api.KieServices b/drools-compiler/src/main/resources/META-INF/services/org.kie.api.KieServices index 1d0bdda44d2..e31f68f63f0 100644 --- a/drools-compiler/src/main/resources/META-INF/services/org.kie.api.KieServices +++ b/drools-compiler/src/main/resources/META-INF/services/org.kie.api.KieServices @@ -1 +1,20 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + org.drools.compiler.kie.builder.impl.KieServicesImpl \ No newline at end of file diff --git a/drools-compiler/src/main/resources/META-INF/services/org.kie.internal.builder.JaxbConfigurationFactoryService b/drools-compiler/src/main/resources/META-INF/services/org.kie.internal.builder.JaxbConfigurationFactoryService index 78f26f0f5b7..8cb1698b8a6 100644 --- a/drools-compiler/src/main/resources/META-INF/services/org.kie.internal.builder.JaxbConfigurationFactoryService +++ b/drools-compiler/src/main/resources/META-INF/services/org.kie.internal.builder.JaxbConfigurationFactoryService @@ -1 +1,20 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + org.drools.compiler.builder.impl.JaxbConfigurationFactoryServiceImpl \ No newline at end of file diff --git a/drools-compiler/src/main/resources/META-INF/services/org.kie.internal.builder.KnowledgeBuilderFactoryService b/drools-compiler/src/main/resources/META-INF/services/org.kie.internal.builder.KnowledgeBuilderFactoryService index 6988b369058..fe6f826a134 100644 --- a/drools-compiler/src/main/resources/META-INF/services/org.kie.internal.builder.KnowledgeBuilderFactoryService +++ b/drools-compiler/src/main/resources/META-INF/services/org.kie.internal.builder.KnowledgeBuilderFactoryService @@ -1 +1,20 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + org.drools.compiler.builder.impl.KnowledgeBuilderFactoryServiceImpl \ No newline at end of file diff --git a/drools-compiler/src/main/resources/org/drools/compiler/compiler/xml/processes/RuleFlowFrom4To5.xsl b/drools-compiler/src/main/resources/org/drools/compiler/compiler/xml/processes/RuleFlowFrom4To5.xsl index 6891b3177ee..b46987b06a5 100644 --- a/drools-compiler/src/main/resources/org/drools/compiler/compiler/xml/processes/RuleFlowFrom4To5.xsl +++ b/drools-compiler/src/main/resources/org/drools/compiler/compiler/xml/processes/RuleFlowFrom4To5.xsl @@ -1,4 +1,23 @@ + + diff --git a/drools-compiler/src/main/resources/org/drools/compiler/compiler/xml/processes/RuleFlowGraphicalFrom4To5.xsl b/drools-compiler/src/main/resources/org/drools/compiler/compiler/xml/processes/RuleFlowGraphicalFrom4To5.xsl index 81c503f4aa1..7ebeabd521f 100644 --- a/drools-compiler/src/main/resources/org/drools/compiler/compiler/xml/processes/RuleFlowGraphicalFrom4To5.xsl +++ b/drools-compiler/src/main/resources/org/drools/compiler/compiler/xml/processes/RuleFlowGraphicalFrom4To5.xsl @@ -1,4 +1,23 @@ + + diff --git a/drools-compiler/src/main/resources/org/drools/compiler/kie/builder/impl/kmodulecache.proto b/drools-compiler/src/main/resources/org/drools/compiler/kie/builder/impl/kmodulecache.proto index 71dbd9c61e3..3dbe725913e 100644 --- a/drools-compiler/src/main/resources/org/drools/compiler/kie/builder/impl/kmodulecache.proto +++ b/drools-compiler/src/main/resources/org/drools/compiler/kie/builder/impl/kmodulecache.proto @@ -1,3 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + package org.drools.compiler.kie.builder.impl; option java_package = "org.drools.compiler.kie.builder.impl"; diff --git a/drools-compiler/src/main/resources/org/drools/compiler/semantics/java/parser/Java.g b/drools-compiler/src/main/resources/org/drools/compiler/semantics/java/parser/Java.g index c5be68697bd..6f2215e5b34 100644 --- a/drools-compiler/src/main/resources/org/drools/compiler/semantics/java/parser/Java.g +++ b/drools-compiler/src/main/resources/org/drools/compiler/semantics/java/parser/Java.g @@ -1,3 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + /** A Java 1.5 grammar for ANTLR v3 derived from the spec * * This is a very close representation of the spec; the changes diff --git a/drools-compiler/src/test/resources/META-INF/mydsl.conf b/drools-compiler/src/test/resources/META-INF/mydsl.conf index 6938bbe1685..2be08e1b86e 100644 --- a/drools-compiler/src/test/resources/META-INF/mydsl.conf +++ b/drools-compiler/src/test/resources/META-INF/mydsl.conf @@ -1,2 +1,21 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + uri=http://domain/org/mydsl store=org.drools.compiler.xml.StoreHandler \ No newline at end of file diff --git a/drools-compiler/src/test/resources/com/security/example.drl b/drools-compiler/src/test/resources/com/security/example.drl index 78e6af0a2aa..8fbce0a1aea 100644 --- a/drools-compiler/src/test/resources/com/security/example.drl +++ b/drools-compiler/src/test/resources/com/security/example.drl @@ -1,3 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + package com.myteam.proj1; rule R0 diff --git a/drools-core/src/main/java/org/drools/core/reteoo/AlphaNode.java b/drools-core/src/main/java/org/drools/core/reteoo/AlphaNode.java index c618e96d827..9214e71e3bf 100644 --- a/drools-core/src/main/java/org/drools/core/reteoo/AlphaNode.java +++ b/drools-core/src/main/java/org/drools/core/reteoo/AlphaNode.java @@ -19,12 +19,14 @@ package org.drools.core.reteoo; import java.util.List; +import java.util.Optional; import org.drools.base.base.ObjectType; import org.drools.base.common.NetworkNode; import org.drools.base.common.RuleBasePartitionId; import org.drools.base.reteoo.BaseTerminalNode; import org.drools.base.reteoo.NodeTypeEnums; +import org.drools.base.rule.Pattern; import org.drools.base.rule.constraint.AlphaNodeFieldConstraint; import org.drools.core.common.InternalFactHandle; import org.drools.core.common.InternalWorkingMemory; @@ -309,8 +311,8 @@ public NetworkNode[] getSinks() { } } - public BitMask calculateDeclaredMask(ObjectType objectType, List settableProperties) { - return constraint.getListenedPropertyMask(objectType, settableProperties); + public BitMask calculateDeclaredMask(Pattern pattern, ObjectType objectType, List settableProperties) { + return constraint.getListenedPropertyMask(Optional.ofNullable(pattern), objectType, settableProperties); } @Override diff --git a/drools-core/src/main/java/org/drools/core/reteoo/EntryPointNode.java b/drools-core/src/main/java/org/drools/core/reteoo/EntryPointNode.java index 3dabbbce2f2..91f4855fb8b 100644 --- a/drools-core/src/main/java/org/drools/core/reteoo/EntryPointNode.java +++ b/drools-core/src/main/java/org/drools/core/reteoo/EntryPointNode.java @@ -29,6 +29,7 @@ import org.drools.base.common.RuleBasePartitionId; import org.drools.base.reteoo.NodeTypeEnums; import org.drools.base.rule.EntryPointId; +import org.drools.base.rule.Pattern; import org.drools.core.WorkingMemoryEntryPoint; import org.drools.core.common.BaseNode; import org.drools.core.common.DefaultEventHandle; @@ -418,7 +419,7 @@ public void byPassModifyToBetaNode(InternalFactHandle factHandle, } @Override - public BitMask calculateDeclaredMask(ObjectType modifiedType, List settableProperties) { + public BitMask calculateDeclaredMask(Pattern pattern, ObjectType modifiedType, List settableProperties) { throw new UnsupportedOperationException(); } diff --git a/drools-core/src/main/java/org/drools/core/reteoo/FromNode.java b/drools-core/src/main/java/org/drools/core/reteoo/FromNode.java index e973ae82a9b..d0b4cffc483 100644 --- a/drools-core/src/main/java/org/drools/core/reteoo/FromNode.java +++ b/drools-core/src/main/java/org/drools/core/reteoo/FromNode.java @@ -24,6 +24,7 @@ import java.util.List; import java.util.Map; import java.util.Objects; +import java.util.Optional; import org.drools.base.base.ObjectType; import org.drools.base.common.NetworkNode; @@ -182,7 +183,7 @@ protected Pattern getLeftInputPattern( BuildContext context ) { @Override protected BitMask setNodeConstraintsPropertyReactiveMask( BitMask mask, ObjectType objectType, List accessibleProperties) { for (int i = 0; i < alphaConstraints.length; i++) { - mask = mask.setAll(alphaConstraints[i].getListenedPropertyMask(objectType, accessibleProperties)); + mask = mask.setAll(alphaConstraints[i].getListenedPropertyMask(Optional.empty(), objectType, accessibleProperties)); } return mask; } diff --git a/drools-core/src/main/java/org/drools/core/reteoo/ObjectSource.java b/drools-core/src/main/java/org/drools/core/reteoo/ObjectSource.java index 15d79645037..faad3ecd97d 100644 --- a/drools-core/src/main/java/org/drools/core/reteoo/ObjectSource.java +++ b/drools-core/src/main/java/org/drools/core/reteoo/ObjectSource.java @@ -121,14 +121,14 @@ public void initDeclaredMask(BuildContext context) { if ( isPropertyReactive(context.getRuleBase(), objectType) ) { List settableProperties = getAccessibleProperties( context.getRuleBase(), objectType ); - declaredMask = calculateDeclaredMask(objectType, settableProperties); + declaredMask = calculateDeclaredMask(pattern, objectType, settableProperties); } else { // if property specific is not on, then accept all modification propagations declaredMask = AllSetBitMask.get(); } } - public abstract BitMask calculateDeclaredMask(ObjectType modifiedType, List settableProperties); + public abstract BitMask calculateDeclaredMask(Pattern pattern, ObjectType modifiedType, List settableProperties); public void resetInferredMask() { this.inferredMask = EmptyBitMask.get(); diff --git a/drools-core/src/main/java/org/drools/core/reteoo/ObjectTypeNode.java b/drools-core/src/main/java/org/drools/core/reteoo/ObjectTypeNode.java index c507358b217..dcbac740338 100644 --- a/drools-core/src/main/java/org/drools/core/reteoo/ObjectTypeNode.java +++ b/drools-core/src/main/java/org/drools/core/reteoo/ObjectTypeNode.java @@ -34,6 +34,7 @@ import org.drools.base.common.RuleBasePartitionId; import org.drools.base.reteoo.NodeTypeEnums; import org.drools.base.rule.EntryPointId; +import org.drools.base.rule.Pattern; import org.drools.base.time.JobHandle; import org.drools.core.common.DefaultFactHandle; import org.drools.core.common.InternalFactHandle; @@ -169,7 +170,7 @@ public RuleBasePartitionId getPartitionId() { } @Override - public BitMask calculateDeclaredMask(ObjectType modifiedType, List settableProperties) { + public BitMask calculateDeclaredMask(Pattern pattern, ObjectType modifiedType, List settableProperties) { return EmptyBitMask.get(); } diff --git a/drools-core/src/main/java/org/drools/core/reteoo/Rete.java b/drools-core/src/main/java/org/drools/core/reteoo/Rete.java index 64382068e8c..aa4236a891d 100644 --- a/drools-core/src/main/java/org/drools/core/reteoo/Rete.java +++ b/drools-core/src/main/java/org/drools/core/reteoo/Rete.java @@ -28,6 +28,7 @@ import org.drools.base.common.RuleBasePartitionId; import org.drools.base.reteoo.NodeTypeEnums; import org.drools.base.rule.EntryPointId; +import org.drools.base.rule.Pattern; import org.drools.core.common.InternalFactHandle; import org.drools.core.common.InternalWorkingMemory; import org.drools.core.common.PropagationContext; @@ -215,7 +216,7 @@ public void byPassModifyToBetaNode(InternalFactHandle factHandle, } @Override - public BitMask calculateDeclaredMask(ObjectType modifiedType, List settableProperties) { + public BitMask calculateDeclaredMask(Pattern pattern, ObjectType modifiedType, List settableProperties) { throw new UnsupportedOperationException(); } } diff --git a/drools-core/src/main/java/org/drools/core/reteoo/RightInputAdapterNode.java b/drools-core/src/main/java/org/drools/core/reteoo/RightInputAdapterNode.java index a2652269f3d..60e1320f88e 100644 --- a/drools-core/src/main/java/org/drools/core/reteoo/RightInputAdapterNode.java +++ b/drools-core/src/main/java/org/drools/core/reteoo/RightInputAdapterNode.java @@ -27,6 +27,7 @@ import org.drools.base.common.NetworkNode; import org.drools.base.definitions.rule.impl.RuleImpl; import org.drools.base.reteoo.NodeTypeEnums; +import org.drools.base.rule.Pattern; import org.drools.core.RuleBaseConfiguration; import org.drools.core.common.ActivationsManager; import org.drools.core.common.InternalFactHandle; @@ -290,7 +291,7 @@ public void setLeftInputOtnId(ObjectTypeNodeId leftInputOtnId) { } @Override - public BitMask calculateDeclaredMask(ObjectType modifiedType, List settableProperties) { + public BitMask calculateDeclaredMask(Pattern pattern, ObjectType modifiedType, List settableProperties) { throw new UnsupportedOperationException(); } diff --git a/drools-core/src/main/java/org/drools/core/reteoo/WindowNode.java b/drools-core/src/main/java/org/drools/core/reteoo/WindowNode.java index 84cc481f4d1..d4edd37b8fa 100644 --- a/drools-core/src/main/java/org/drools/core/reteoo/WindowNode.java +++ b/drools-core/src/main/java/org/drools/core/reteoo/WindowNode.java @@ -26,6 +26,7 @@ import org.drools.base.base.ObjectType; import org.drools.base.reteoo.NodeTypeEnums; import org.drools.base.rule.EntryPointId; +import org.drools.base.rule.Pattern; import org.drools.base.rule.constraint.AlphaNodeFieldConstraint; import org.drools.core.RuleBaseConfiguration; import org.drools.core.common.DefaultEventHandle; @@ -300,7 +301,7 @@ public EntryPointId getEntryPoint() { } @Override - public BitMask calculateDeclaredMask(ObjectType modifiedType, List settableProperties) { + public BitMask calculateDeclaredMask(Pattern pattern, ObjectType modifiedType, List settableProperties) { throw new UnsupportedOperationException(); } diff --git a/drools-core/src/main/java/overview.html b/drools-core/src/main/java/overview.html index 044791f516a..5e544120706 100644 --- a/drools-core/src/main/java/overview.html +++ b/drools-core/src/main/java/overview.html @@ -1,3 +1,22 @@ + +

Drools API

diff --git a/drools-core/src/main/resources/META-INF/WorkDefinitions.conf b/drools-core/src/main/resources/META-INF/WorkDefinitions.conf index b2c505db35e..55f28afc536 100644 --- a/drools-core/src/main/resources/META-INF/WorkDefinitions.conf +++ b/drools-core/src/main/resources/META-INF/WorkDefinitions.conf @@ -1,3 +1,22 @@ +// +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you under the Apache License, Version 2.0 (the +// "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. +// + // We use MVEL to return a List of work definitions // The properties of the work definitions are specified as a Map // The allowed properties are name, parameters, displayName, icon and customEditor diff --git a/drools-core/src/main/resources/META-INF/kie.default.properties.conf b/drools-core/src/main/resources/META-INF/kie.default.properties.conf index 998bde2e4ed..f3fcd0b2e69 100644 --- a/drools-core/src/main/resources/META-INF/kie.default.properties.conf +++ b/drools-core/src/main/resources/META-INF/kie.default.properties.conf @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + drools.maintainTms = true drools.shadowproxy = true drools.shadowproxy.exclude = diff --git a/drools-core/src/main/resources/META-INF/services/org.kie.api.concurrent.KieExecutors b/drools-core/src/main/resources/META-INF/services/org.kie.api.concurrent.KieExecutors index b4d00cb9b7a..9bfd511e975 100644 --- a/drools-core/src/main/resources/META-INF/services/org.kie.api.concurrent.KieExecutors +++ b/drools-core/src/main/resources/META-INF/services/org.kie.api.concurrent.KieExecutors @@ -1 +1,20 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + org.drools.core.concurrent.ExecutorProviderImpl \ No newline at end of file diff --git a/drools-core/src/main/resources/org/drools/core/util/debug/dump_tuples.mvel b/drools-core/src/main/resources/org/drools/core/util/debug/dump_tuples.mvel index a9597faf228..5b1d8cd2437 100755 --- a/drools-core/src/main/resources/org/drools/core/util/debug/dump_tuples.mvel +++ b/drools-core/src/main/resources/org/drools/core/util/debug/dump_tuples.mvel @@ -1,3 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + @declare{"dump_tuples"} ******************************************************************************************** Report for Knowledge Session diff --git a/drools-core/src/main/resources/org/drools/core/util/debug/simpletopten.mvel b/drools-core/src/main/resources/org/drools/core/util/debug/simpletopten.mvel index 3df84f6cae0..18ba02f3959 100755 --- a/drools-core/src/main/resources/org/drools/core/util/debug/simpletopten.mvel +++ b/drools-core/src/main/resources/org/drools/core/util/debug/simpletopten.mvel @@ -1,3 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + @declare{"simple_topten"} ******************************************************************************************** Report for Knowledge Session diff --git a/drools-core/src/test/java/org/drools/core/reteoo/MockObjectSink.java b/drools-core/src/test/java/org/drools/core/reteoo/MockObjectSink.java index cc24330f5f9..54f375829f4 100644 --- a/drools-core/src/test/java/org/drools/core/reteoo/MockObjectSink.java +++ b/drools-core/src/test/java/org/drools/core/reteoo/MockObjectSink.java @@ -26,6 +26,7 @@ import org.drools.base.common.RuleBasePartitionId; import org.drools.base.reteoo.BaseTerminalNode; import org.drools.base.reteoo.NodeTypeEnums; +import org.drools.base.rule.Pattern; import org.drools.core.common.InternalFactHandle; import org.drools.core.common.InternalWorkingMemory; import org.drools.core.common.PropagationContext; @@ -58,7 +59,7 @@ public void retractRightTuple(final TupleImpl rightTuple, } @Override - public BitMask calculateDeclaredMask(ObjectType modifiedType, List settableProperties) { + public BitMask calculateDeclaredMask(Pattern pattern, ObjectType modifiedType, List settableProperties) { return null; } diff --git a/drools-core/src/test/java/org/drools/core/reteoo/MockObjectSource.java b/drools-core/src/test/java/org/drools/core/reteoo/MockObjectSource.java index dae9591c91a..79ecbed0542 100644 --- a/drools-core/src/test/java/org/drools/core/reteoo/MockObjectSource.java +++ b/drools-core/src/test/java/org/drools/core/reteoo/MockObjectSource.java @@ -24,6 +24,7 @@ import org.drools.base.base.ObjectType; import org.drools.base.common.RuleBasePartitionId; +import org.drools.base.rule.Pattern; import org.drools.core.common.InternalFactHandle; import org.drools.core.common.InternalWorkingMemory; import org.drools.core.common.PropagationContext; @@ -89,7 +90,7 @@ public int getType() { } @Override - public BitMask calculateDeclaredMask(ObjectType modifiedType, List settableProperties) { + public BitMask calculateDeclaredMask(Pattern pattern, ObjectType modifiedType, List settableProperties) { throw new UnsupportedOperationException(); } } diff --git a/drools-core/src/test/resources/META-INF/WorkItemHandlers1.conf b/drools-core/src/test/resources/META-INF/WorkItemHandlers1.conf index 61f312e435e..6425ac9afb3 100644 --- a/drools-core/src/test/resources/META-INF/WorkItemHandlers1.conf +++ b/drools-core/src/test/resources/META-INF/WorkItemHandlers1.conf @@ -1,3 +1,22 @@ +// +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you under the Apache License, Version 2.0 (the +// "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. +// + // We use MVEL to return a List of work definitions // The properties of the work definitions are specified as a Map // The allowed properties are name, parameters, displayName, icon and customEditor diff --git a/drools-core/src/test/resources/META-INF/WorkItemHandlers2.conf b/drools-core/src/test/resources/META-INF/WorkItemHandlers2.conf index aa219a63fdc..afd7da6a119 100644 --- a/drools-core/src/test/resources/META-INF/WorkItemHandlers2.conf +++ b/drools-core/src/test/resources/META-INF/WorkItemHandlers2.conf @@ -1,3 +1,22 @@ +// +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you under the Apache License, Version 2.0 (the +// "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. +// + // We use MVEL to return a List of work definitions // The properties of the work definitions are specified as a Map // The allowed properties are name, parameters, displayName, icon and customEditor diff --git a/drools-core/src/test/resources/META-INF/mockProcessNodeInstanceFactory.conf b/drools-core/src/test/resources/META-INF/mockProcessNodeInstanceFactory.conf index 92089e9a38f..32bbb1d36ae 100644 --- a/drools-core/src/test/resources/META-INF/mockProcessNodeInstanceFactory.conf +++ b/drools-core/src/test/resources/META-INF/mockProcessNodeInstanceFactory.conf @@ -1,3 +1,22 @@ +// +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you under the Apache License, Version 2.0 (the +// "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. +// + // we use MVEL to configure our nodes, simply populate a map, which will be added to the main registry import org.kie.workflow.instance.node.MockNode; import org.kie.workflow.instance.node.MockNodeInstance; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/AccumulateNodeAssertRetractTest.nodeTestCase b/drools-core/src/test/resources/org/drools/core/reteoo/test/AccumulateNodeAssertRetractTest.nodeTestCase index 0437a76edc8..3d8a0410d47 100755 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/AccumulateNodeAssertRetractTest.nodeTestCase +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/AccumulateNodeAssertRetractTest.nodeTestCase @@ -1,3 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + TestCase "Accumulate Node assert/retract test case" import org.drools.core.test.model.Cheese; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/AccumulateNodeModifyTest.nodeTestCase b/drools-core/src/test/resources/org/drools/core/reteoo/test/AccumulateNodeModifyTest.nodeTestCase index 959ed4e8286..4b01fea88c1 100755 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/AccumulateNodeModifyTest.nodeTestCase +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/AccumulateNodeModifyTest.nodeTestCase @@ -1,3 +1,23 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + + TestCase "Accumulate Node modify test case" import org.drools.core.test.model.Cheese; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/AccumulateNodeUnificationTest.nodeTestCase b/drools-core/src/test/resources/org/drools/core/reteoo/test/AccumulateNodeUnificationTest.nodeTestCase index b2f97df92dc..0eebfa5b3e7 100644 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/AccumulateNodeUnificationTest.nodeTestCase +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/AccumulateNodeUnificationTest.nodeTestCase @@ -1,3 +1,23 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + + TestCase "Accumulate Node unification test case" import org.drools.core.test.model.Cheese; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/DslTestBuilder.testCase b/drools-core/src/test/resources/org/drools/core/reteoo/test/DslTestBuilder.testCase index c76be23863b..cb3d572a8f3 100755 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/DslTestBuilder.testCase +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/DslTestBuilder.testCase @@ -1,3 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + TestCase "Test Case Name" import org.drools.core.test.model.Cheese; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/EvalNodeTest.nodeTestCase b/drools-core/src/test/resources/org/drools/core/reteoo/test/EvalNodeTest.nodeTestCase index f830ece8387..6c8f0884d63 100755 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/EvalNodeTest.nodeTestCase +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/EvalNodeTest.nodeTestCase @@ -1,3 +1,23 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + + TestCase "Eval Node test case" import org.drools.core.test.model.Cheese; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/ExistsNodeAssertRetractTest.nodeTestCase b/drools-core/src/test/resources/org/drools/core/reteoo/test/ExistsNodeAssertRetractTest.nodeTestCase index 31e376050a8..a8799c4183c 100644 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/ExistsNodeAssertRetractTest.nodeTestCase +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/ExistsNodeAssertRetractTest.nodeTestCase @@ -1,3 +1,23 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + + TestCase "Exists node assert/retract test case" import org.drools.core.test.model.Cheese; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/ExistsNodeIndexTest.nodeTestCase b/drools-core/src/test/resources/org/drools/core/reteoo/test/ExistsNodeIndexTest.nodeTestCase index 5b12d7bc745..a76c9310610 100644 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/ExistsNodeIndexTest.nodeTestCase +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/ExistsNodeIndexTest.nodeTestCase @@ -1,3 +1,23 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + + TestCase "Exists node index test case" import org.drools.core.test.model.Cheese; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/ExistsNodeModifyTest.nodeTestCase b/drools-core/src/test/resources/org/drools/core/reteoo/test/ExistsNodeModifyTest.nodeTestCase index 16bb0e13d71..0a8039bf4c8 100644 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/ExistsNodeModifyTest.nodeTestCase +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/ExistsNodeModifyTest.nodeTestCase @@ -1,3 +1,23 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + + TestCase "Exists node modify test case" import org.drools.core.test.model.Cheese; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/ExistsNodeModifyTest2.nodeTestCase b/drools-core/src/test/resources/org/drools/core/reteoo/test/ExistsNodeModifyTest2.nodeTestCase index 0215cebb2b9..2f0dd1fc668 100755 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/ExistsNodeModifyTest2.nodeTestCase +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/ExistsNodeModifyTest2.nodeTestCase @@ -1,3 +1,23 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + + TestCase "Exists node modify test 2" import org.drools.core.test.model.Cheese; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/ExistsNodeUnificationTest.nodeTestCase b/drools-core/src/test/resources/org/drools/core/reteoo/test/ExistsNodeUnificationTest.nodeTestCase index 3c0ddd59d93..6168dfe64e9 100644 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/ExistsNodeUnificationTest.nodeTestCase +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/ExistsNodeUnificationTest.nodeTestCase @@ -1,3 +1,23 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + + TestCase "Exists Node unification test case" import org.drools.core.test.model.Cheese; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/JoinNodeAssertRetractTest.nodeTestCase b/drools-core/src/test/resources/org/drools/core/reteoo/test/JoinNodeAssertRetractTest.nodeTestCase index 469b7d9380e..75ee6dbc9e9 100644 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/JoinNodeAssertRetractTest.nodeTestCase +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/JoinNodeAssertRetractTest.nodeTestCase @@ -1,3 +1,23 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + + TestCase "Join Node assert/retract test case" import org.drools.core.test.model.Cheese; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/JoinNodeIndexTest.nodeTestCase b/drools-core/src/test/resources/org/drools/core/reteoo/test/JoinNodeIndexTest.nodeTestCase index d3f46d80425..8f0752fad6f 100644 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/JoinNodeIndexTest.nodeTestCase +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/JoinNodeIndexTest.nodeTestCase @@ -1,3 +1,23 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + + TestCase "Join Node modify test case" import org.drools.core.test.model.Cheese; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/JoinNodeModify2Test.nodeTestCase b/drools-core/src/test/resources/org/drools/core/reteoo/test/JoinNodeModify2Test.nodeTestCase index 7d1a7fef7b6..941cf135700 100755 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/JoinNodeModify2Test.nodeTestCase +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/JoinNodeModify2Test.nodeTestCase @@ -1,3 +1,23 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + + TestCase "Join Node modify 2 test case" import org.drools.core.test.model.Person; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/JoinNodeModifyTest.nodeTestCase b/drools-core/src/test/resources/org/drools/core/reteoo/test/JoinNodeModifyTest.nodeTestCase index 380b553ea1d..181d4f9d919 100644 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/JoinNodeModifyTest.nodeTestCase +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/JoinNodeModifyTest.nodeTestCase @@ -1,3 +1,23 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + + TestCase "Join Node modify test case" import org.drools.core.test.model.Person; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/JoinNodeUnificationTest.nodeTestCase b/drools-core/src/test/resources/org/drools/core/reteoo/test/JoinNodeUnificationTest.nodeTestCase index 81a99df13a1..3c116db26c0 100644 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/JoinNodeUnificationTest.nodeTestCase +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/JoinNodeUnificationTest.nodeTestCase @@ -1,3 +1,23 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + + TestCase "Join Node unification test case" import org.drools.core.test.model.Person; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/NotNodeAssertRetractTest.nodeTestCase b/drools-core/src/test/resources/org/drools/core/reteoo/test/NotNodeAssertRetractTest.nodeTestCase index 10a588e32b4..4c27d89a1a0 100644 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/NotNodeAssertRetractTest.nodeTestCase +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/NotNodeAssertRetractTest.nodeTestCase @@ -1,3 +1,23 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + + TestCase "Not Node assert/retract test case" import org.drools.core.test.model.Person; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/NotNodeIndexTest.nodeTestCase b/drools-core/src/test/resources/org/drools/core/reteoo/test/NotNodeIndexTest.nodeTestCase index 3445b00f443..62dbca956d1 100644 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/NotNodeIndexTest.nodeTestCase +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/NotNodeIndexTest.nodeTestCase @@ -1,3 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + TestCase "Not Node index test case" import org.drools.core.test.model.Person; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/NotNodeModifyTest.nodeTestCase b/drools-core/src/test/resources/org/drools/core/reteoo/test/NotNodeModifyTest.nodeTestCase index 76bc882975f..567fbc4aab3 100644 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/NotNodeModifyTest.nodeTestCase +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/NotNodeModifyTest.nodeTestCase @@ -1,3 +1,23 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + + TestCase "Not Node modify test case" import org.drools.core.test.model.Person; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/NotNodeModifyTest2.nodeTestCase b/drools-core/src/test/resources/org/drools/core/reteoo/test/NotNodeModifyTest2.nodeTestCase index c5f87674b94..cc485314b76 100755 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/NotNodeModifyTest2.nodeTestCase +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/NotNodeModifyTest2.nodeTestCase @@ -1,3 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + TestCase "Not Node modify" import org.drools.core.test.model.Cheese; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/NotNodeUnificationTest.nodeTestCase b/drools-core/src/test/resources/org/drools/core/reteoo/test/NotNodeUnificationTest.nodeTestCase index 169fd445edc..59c8771139b 100644 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/NotNodeUnificationTest.nodeTestCase +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/NotNodeUnificationTest.nodeTestCase @@ -1,3 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + TestCase "Not Node unification test case" import org.drools.core.test.model.Cheese; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/RIANodeTest.nodeTestCase b/drools-core/src/test/resources/org/drools/core/reteoo/test/RIANodeTest.nodeTestCase index fc039bd8d2d..a7199a46e04 100755 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/RIANodeTest.nodeTestCase +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/RIANodeTest.nodeTestCase @@ -1,3 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + TestCase "Right Input Adapter Node test case" import org.drools.core.test.model.Cheese; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/RightUnlinkingComplex.nodeTestCase__bak b/drools-core/src/test/resources/org/drools/core/reteoo/test/RightUnlinkingComplex.nodeTestCase__bak index 6d39b534620..465e0089c28 100644 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/RightUnlinkingComplex.nodeTestCase__bak +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/RightUnlinkingComplex.nodeTestCase__bak @@ -1,3 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + TestCase "RightUnlinkingComplex" import org.drools.core.test.model.Cheese; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/RightUnlinkingModify.nodeTestCase__bak b/drools-core/src/test/resources/org/drools/core/reteoo/test/RightUnlinkingModify.nodeTestCase__bak index 58bfd4963f1..a36da9707a5 100644 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/RightUnlinkingModify.nodeTestCase__bak +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/RightUnlinkingModify.nodeTestCase__bak @@ -1,3 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + TestCase "RightUnlinkingModify" import org.drools.core.test.model.Cheese; diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/parser/NodeTestDSL.g b/drools-core/src/test/resources/org/drools/core/reteoo/test/parser/NodeTestDSL.g index 2580ac3fb66..b31cb4383d1 100755 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/parser/NodeTestDSL.g +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/parser/NodeTestDSL.g @@ -1,3 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + grammar NodeTestDSL; options { diff --git a/drools-core/src/test/resources/org/drools/core/reteoo/test/parser/NodeTestDSLTree.g b/drools-core/src/test/resources/org/drools/core/reteoo/test/parser/NodeTestDSLTree.g index 016da4f8d3c..e3cdc2239fd 100755 --- a/drools-core/src/test/resources/org/drools/core/reteoo/test/parser/NodeTestDSLTree.g +++ b/drools-core/src/test/resources/org/drools/core/reteoo/test/parser/NodeTestDSLTree.g @@ -1,3 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + tree grammar NodeTestDSLTree; options{ diff --git a/drools-core/src/test/resources/org/drools/core/util/engine.policy b/drools-core/src/test/resources/org/drools/core/util/engine.policy index c429a5f3d8b..ff5d08762ee 100644 --- a/drools-core/src/test/resources/org/drools/core/util/engine.policy +++ b/drools-core/src/test/resources/org/drools/core/util/engine.policy @@ -1,3 +1,22 @@ +// +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you under the Apache License, Version 2.0 (the +// "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. +// + grant { permission java.security.AllPermission; }; \ No newline at end of file diff --git a/drools-core/src/test/resources/org/drools/core/util/kie.policy b/drools-core/src/test/resources/org/drools/core/util/kie.policy index 7c97d0ec3d7..a4a12795b35 100644 --- a/drools-core/src/test/resources/org/drools/core/util/kie.policy +++ b/drools-core/src/test/resources/org/drools/core/util/kie.policy @@ -1,3 +1,22 @@ +// +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you under the Apache License, Version 2.0 (the +// "License"); you may not use this file except in compliance +// with the License. You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, +// software distributed under the License is distributed on an +// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +// KIND, either express or implied. See the License for the +// specific language governing permissions and limitations +// under the License. +// + grant { permission java.util.PropertyPermission "*","read"; permission java.lang.RuntimePermission "createClassLoader"; diff --git a/drools-core/src/test/resources/org/kie/pmml/test_scorecard.pmml b/drools-core/src/test/resources/org/kie/pmml/test_scorecard.pmml index 23056fcff72..41dfd027393 100644 --- a/drools-core/src/test/resources/org/kie/pmml/test_scorecard.pmml +++ b/drools-core/src/test/resources/org/kie/pmml/test_scorecard.pmml @@ -1,4 +1,23 @@ + +
diff --git a/drools-decisiontables/src/main/resources/META-INF/services/org.drools.drl.extensions.DecisionTableProvider b/drools-decisiontables/src/main/resources/META-INF/services/org.drools.drl.extensions.DecisionTableProvider index f690ef72472..36dd8ad3e23 100644 --- a/drools-decisiontables/src/main/resources/META-INF/services/org.drools.drl.extensions.DecisionTableProvider +++ b/drools-decisiontables/src/main/resources/META-INF/services/org.drools.drl.extensions.DecisionTableProvider @@ -1 +1,20 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + org.drools.decisiontable.DecisionTableProviderImpl \ No newline at end of file diff --git a/drools-decisiontables/src/test/resources/org/drools/decisiontable/project/rules/Sample.drl b/drools-decisiontables/src/test/resources/org/drools/decisiontable/project/rules/Sample.drl index a9a9b2879ff..1d6fbd28128 100755 --- a/drools-decisiontables/src/test/resources/org/drools/decisiontable/project/rules/Sample.drl +++ b/drools-decisiontables/src/test/resources/org/drools/decisiontable/project/rules/Sample.drl @@ -1,3 +1,22 @@ +/** + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + package org.drools.decisiontable.project.rules import org.drools.decisiontable.project.* diff --git a/drools-distribution/pom.xml b/drools-distribution/pom.xml index 0c06ae39b3b..2b1855b49a2 100644 --- a/drools-distribution/pom.xml +++ b/drools-distribution/pom.xml @@ -1,4 +1,23 @@ + + diff --git a/drools-distribution/src/main/assembly/assembly-drools.xml b/drools-distribution/src/main/assembly/assembly-drools.xml index ac57abe6e75..30e9bdbdb61 100644 --- a/drools-distribution/src/main/assembly/assembly-drools.xml +++ b/drools-distribution/src/main/assembly/assembly-drools.xml @@ -1,4 +1,23 @@ + + diff --git a/drools-distribution/src/main/assembly/filtered-resources/ReadMeDrools.txt b/drools-distribution/src/main/assembly/filtered-resources/ReadMeDrools.txt index e76524941bc..5cc3e479e79 100644 --- a/drools-distribution/src/main/assembly/filtered-resources/ReadMeDrools.txt +++ b/drools-distribution/src/main/assembly/filtered-resources/ReadMeDrools.txt @@ -1,3 +1,20 @@ +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, +software distributed under the License is distributed on an +"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +KIND, either express or implied. See the License for the +specific language governing permissions and limitations +under the License. + Welcome to Drools ================= diff --git a/drools-distribution/src/main/assembly/filtered-resources/examples/sources/.classpath b/drools-distribution/src/main/assembly/filtered-resources/examples/sources/.classpath index 299903b722f..799074c0a30 100644 --- a/drools-distribution/src/main/assembly/filtered-resources/examples/sources/.classpath +++ b/drools-distribution/src/main/assembly/filtered-resources/examples/sources/.classpath @@ -1,4 +1,24 @@ + diff --git a/drools-distribution/src/main/assembly/filtered-resources/examples/sources/.project b/drools-distribution/src/main/assembly/filtered-resources/examples/sources/.project index 7f9129686e6..cc5691e1a8b 100644 --- a/drools-distribution/src/main/assembly/filtered-resources/examples/sources/.project +++ b/drools-distribution/src/main/assembly/filtered-resources/examples/sources/.project @@ -1,4 +1,24 @@ + drools-examples diff --git a/drools-distribution/src/main/assembly/scripts/runExamples.bat b/drools-distribution/src/main/assembly/scripts/runExamples.bat index 8aad5ac9b6d..141935b385d 100644 --- a/drools-distribution/src/main/assembly/scripts/runExamples.bat +++ b/drools-distribution/src/main/assembly/scripts/runExamples.bat @@ -1,3 +1,22 @@ +rem +rem Licensed to the Apache Software Foundation (ASF) under one +rem or more contributor license agreements. See the NOTICE file +rem distributed with this work for additional information +rem regarding copyright ownership. The ASF licenses this file +rem to you under the Apache License, Version 2.0 (the +rem "License"); you may not use this file except in compliance +rem with the License. You may obtain a copy of the License at +rem +rem http://www.apache.org/licenses/LICENSE-2.0 +rem +rem Unless required by applicable law or agreed to in writing, +rem software distributed under the License is distributed on an +rem "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +rem KIND, either express or implied. See the License for the +rem specific language governing permissions and limitations +rem under the License. +rem + @ECHO OFF setLocal enableExtensions enableDelayedExpansion diff --git a/drools-distribution/src/main/assembly/scripts/runExamples.sh b/drools-distribution/src/main/assembly/scripts/runExamples.sh index aa11c3594f7..1a015990b37 100644 --- a/drools-distribution/src/main/assembly/scripts/runExamples.sh +++ b/drools-distribution/src/main/assembly/scripts/runExamples.sh @@ -1,5 +1,24 @@ #!/bin/sh +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # Change directory to the directory of the script cd `dirname $0` diff --git a/drools-docs/.gitignore b/drools-docs/.gitignore index d2578d40793..b25f153e053 100644 --- a/drools-docs/.gitignore +++ b/drools-docs/.gitignore @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + # Local files /target /local diff --git a/drools-docs/README.adoc b/drools-docs/README.adoc index d15e13488d9..1b1701ef917 100644 --- a/drools-docs/README.adoc +++ b/drools-docs/README.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + = Drools documentation website https://www.drools.org/docs[www.drools.org/docs] diff --git a/drools-docs/antora-playbook.yml b/drools-docs/antora-playbook.yml index 7fb961c663b..62803c8ba8f 100644 --- a/drools-docs/antora-playbook.yml +++ b/drools-docs/antora-playbook.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # We use author-mode for antora build because we generate antora.yml during the maven build site: title: Drools Documentation diff --git a/drools-docs/pom.xml b/drools-docs/pom.xml index 502d3159e5c..a35fe8678ea 100755 --- a/drools-docs/pom.xml +++ b/drools-docs/pom.xml @@ -1,4 +1,23 @@ + + diff --git a/drools-docs/src/antora-template.yml b/drools-docs/src/antora-template.yml index 69bca051301..fd1b470b018 100644 --- a/drools-docs/src/antora-template.yml +++ b/drools-docs/src/antora-template.yml @@ -1,3 +1,22 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + # This file is a template for antora.yml. Maven build will # 1. substitute the properties into this file to target/antora-template.yml # 2. copy target/antora-template.yml to src/antora.yml diff --git a/drools-docs/src/main/assembly/generated-docs-zip.xml b/drools-docs/src/main/assembly/generated-docs-zip.xml index 416f73a353f..d2022f83038 100644 --- a/drools-docs/src/main/assembly/generated-docs-zip.xml +++ b/drools-docs/src/main/assembly/generated-docs-zip.xml @@ -1,4 +1,23 @@ + + diff --git a/drools-docs/src/modules/ROOT/images/experimental-features/impactAnalysis1.svg b/drools-docs/src/modules/ROOT/images/experimental-features/impactAnalysis1.svg index 4b37323da48..86d84365afe 100644 --- a/drools-docs/src/modules/ROOT/images/experimental-features/impactAnalysis1.svg +++ b/drools-docs/src/modules/ROOT/images/experimental-features/impactAnalysis1.svg @@ -1,3 +1,22 @@ + + diff --git a/drools-docs/src/modules/ROOT/images/language-reference/AccumulateAction.svg b/drools-docs/src/modules/ROOT/images/language-reference/AccumulateAction.svg index 68cceaaf67f..048d70ab2aa 100644 --- a/drools-docs/src/modules/ROOT/images/language-reference/AccumulateAction.svg +++ b/drools-docs/src/modules/ROOT/images/language-reference/AccumulateAction.svg @@ -1,3 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/drools-docs/src/modules/ROOT/images/language-reference/exists.svg b/drools-docs/src/modules/ROOT/images/language-reference/exists.svg index 22100daa60d..191546baaca 100644 --- a/drools-docs/src/modules/ROOT/images/language-reference/exists.svg +++ b/drools-docs/src/modules/ROOT/images/language-reference/exists.svg @@ -1,4 +1,23 @@ + + + + + + + + diff --git a/drools-docs/src/modules/ROOT/images/language-reference/global.svg b/drools-docs/src/modules/ROOT/images/language-reference/global.svg index c5af5eb040d..fab45eeb3db 100644 --- a/drools-docs/src/modules/ROOT/images/language-reference/global.svg +++ b/drools-docs/src/modules/ROOT/images/language-reference/global.svg @@ -1,4 +1,23 @@ + + diff --git a/drools-docs/src/modules/ROOT/images/language-reference/groupby.svg b/drools-docs/src/modules/ROOT/images/language-reference/groupby.svg index ad9927c571a..39af9eda6f2 100644 --- a/drools-docs/src/modules/ROOT/images/language-reference/groupby.svg +++ b/drools-docs/src/modules/ROOT/images/language-reference/groupby.svg @@ -1,4 +1,23 @@ + + + + diff --git a/drools-docs/src/modules/ROOT/images/language-reference/infixAnd.svg b/drools-docs/src/modules/ROOT/images/language-reference/infixAnd.svg index 5c90b598492..8805a65e76f 100644 --- a/drools-docs/src/modules/ROOT/images/language-reference/infixAnd.svg +++ b/drools-docs/src/modules/ROOT/images/language-reference/infixAnd.svg @@ -1,4 +1,23 @@ + + + + + + + + + + diff --git a/drools-docs/src/modules/ROOT/images/language-reference/not.svg b/drools-docs/src/modules/ROOT/images/language-reference/not.svg index d1bda252c17..19a0aee106a 100644 --- a/drools-docs/src/modules/ROOT/images/language-reference/not.svg +++ b/drools-docs/src/modules/ROOT/images/language-reference/not.svg @@ -1,4 +1,23 @@ + + + + + + diff --git a/drools-docs/src/modules/ROOT/images/language-reference/prefixAnd.svg b/drools-docs/src/modules/ROOT/images/language-reference/prefixAnd.svg index 9fa562b07ce..1718287b675 100644 --- a/drools-docs/src/modules/ROOT/images/language-reference/prefixAnd.svg +++ b/drools-docs/src/modules/ROOT/images/language-reference/prefixAnd.svg @@ -1,4 +1,23 @@ + + + + + + + + diff --git a/drools-docs/src/modules/ROOT/images/language-reference/rule_attributes.svg b/drools-docs/src/modules/ROOT/images/language-reference/rule_attributes.svg index 9290c6af68b..6f3f74d7732 100644 --- a/drools-docs/src/modules/ROOT/images/language-reference/rule_attributes.svg +++ b/drools-docs/src/modules/ROOT/images/language-reference/rule_attributes.svg @@ -1,4 +1,23 @@ + + + 123_RHPAM_1020MathsOptimizationMachineLearningRobotics \ No newline at end of file diff --git a/drools-docs/src/modules/ROOT/images/pragmatic-ai/123_RHPAM_Integrating_AI_1020_equation.svg b/drools-docs/src/modules/ROOT/images/pragmatic-ai/123_RHPAM_Integrating_AI_1020_equation.svg index f21bda72b4a..3fd7d706dc2 100644 --- a/drools-docs/src/modules/ROOT/images/pragmatic-ai/123_RHPAM_Integrating_AI_1020_equation.svg +++ b/drools-docs/src/modules/ROOT/images/pragmatic-ai/123_RHPAM_Integrating_AI_1020_equation.svg @@ -1 +1,20 @@ + + Data process flow,decision tableResource planningNeural network,clustering, classification++=123_RHPAM_1020MachineLearningAIDigitalDecisioningMathsOptimization \ No newline at end of file diff --git a/drools-docs/src/modules/ROOT/images/pragmatic-ai/123_RHPAM_Integrating_AI_1020_overview.svg b/drools-docs/src/modules/ROOT/images/pragmatic-ai/123_RHPAM_Integrating_AI_1020_overview.svg index 6a743d13181..92d3a95266d 100644 --- a/drools-docs/src/modules/ROOT/images/pragmatic-ai/123_RHPAM_Integrating_AI_1020_overview.svg +++ b/drools-docs/src/modules/ROOT/images/pragmatic-ai/123_RHPAM_Integrating_AI_1020_overview.svg @@ -1 +1,20 @@ + + Documentsdata imagesMachine LearningPredictive ModelDecision Model(DMN)BusinessDataBusinessActionsKnowlege Discovery / Machine LearningDecision Automation123_RHPAM_1020 \ No newline at end of file diff --git a/drools-docs/src/modules/ROOT/nav.adoc b/drools-docs/src/modules/ROOT/nav.adoc index 769eff9ce1a..b45cfa98dc7 100644 --- a/drools-docs/src/modules/ROOT/nav.adoc +++ b/drools-docs/src/modules/ROOT/nav.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + * xref:introduction/index.adoc[leveloffset=+1] * xref:getting-started/index.adoc[leveloffset=+1] * xref:KIE/index.adoc[leveloffset=+1] diff --git a/drools-docs/src/modules/ROOT/pages/Commands/_runtime-commands-con.adoc b/drools-docs/src/modules/ROOT/pages/Commands/_runtime-commands-con.adoc index dd6b6493c94..a19dc36e903 100644 --- a/drools-docs/src/modules/ROOT/pages/Commands/_runtime-commands-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/Commands/_runtime-commands-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='runtime-commands-con_{context}'] = Runtime Commands in {PRODUCT} diff --git a/drools-docs/src/modules/ROOT/pages/Commands/_runtime-commands-marshalling-ref.adoc b/drools-docs/src/modules/ROOT/pages/Commands/_runtime-commands-marshalling-ref.adoc index dd2eba4a77e..84b2ade15a0 100644 --- a/drools-docs/src/modules/ROOT/pages/Commands/_runtime-commands-marshalling-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/Commands/_runtime-commands-marshalling-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + // This section determined obsolete and handled by the Java client services in KIE Server. Retaining for now, just in case. (Stetson, 13 Nov 2018) [id='runtime-commands-marshalling-ref_{context}'] diff --git a/drools-docs/src/modules/ROOT/pages/Commands/_runtime-commands-samples-ref.adoc b/drools-docs/src/modules/ROOT/pages/Commands/_runtime-commands-samples-ref.adoc index b214f2deb0e..65f4a700f7e 100644 --- a/drools-docs/src/modules/ROOT/pages/Commands/_runtime-commands-samples-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/Commands/_runtime-commands-samples-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='runtime-commands-samples-ref_{context}'] = Sample runtime Commands in {PRODUCT} diff --git a/drools-docs/src/modules/ROOT/pages/Commands/index.adoc b/drools-docs/src/modules/ROOT/pages/Commands/index.adoc index 7d875ffc2a3..825a82d3497 100644 --- a/drools-docs/src/modules/ROOT/pages/Commands/index.adoc +++ b/drools-docs/src/modules/ROOT/pages/Commands/index.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + :DROOLS: include::../_artifacts/document-attributes.adoc[] diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-boxed-expressions-con.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-boxed-expressions-con.adoc index 917df2fc507..ace6e2497d1 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-boxed-expressions-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-boxed-expressions-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-boxed-expressions-con_{context}'] = DMN decision logic in boxed expressions diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-con.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-con.adoc index c5f6947f139..593d83b527b 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-con_{context}'] = Decision Model and Notation (DMN) diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-conformance-levels-con.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-conformance-levels-con.adoc index 2aecb6ee82b..e1ab9aeb01f 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-conformance-levels-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-conformance-levels-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-conformance-levels-con_{context}'] = DMN conformance levels diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-context-expressions-con.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-context-expressions-con.adoc index 6d76c619252..6cf854eb135 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-context-expressions-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-context-expressions-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-context-expressions-con_{context}'] = Boxed context expressions diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-data-types-defining-proc.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-data-types-defining-proc.adoc index 7ee87aba2da..d59fdebce04 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-data-types-defining-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-data-types-defining-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-data-types-defining-proc_{context}'] = Creating custom data types for DMN boxed expressions in {DMN_EDITOR} diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-decision-tables-con.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-decision-tables-con.adoc index 4161136adc4..f156a734f24 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-decision-tables-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-decision-tables-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-decision-tables-con_{context}'] = DMN decision tables diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-decision-tables-hit-policies-con.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-decision-tables-hit-policies-con.adoc index 64f6abf8f44..3dd6cfade37 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-decision-tables-hit-policies-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-decision-tables-hit-policies-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-decision-tables-hit-policies-con_{context}'] = Hit policies in DMN decision tables diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-designer-nav-ref.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-designer-nav-ref.adoc index ac984e8322d..1a414c39201 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-designer-nav-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-designer-nav-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-designer-nav-ref_{context}'] = DMN designer navigation and properties in {DMN_EDITOR} diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-documentation-con.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-documentation-con.adoc index fbc21881a65..adce9f4b760 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-documentation-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-documentation-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-documentation-con_{context}'] = DMN model documentation in {DMN_EDITOR} diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-drd-components-ref.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-drd-components-ref.adoc index 6a0fffb16ed..5128b708daf 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-drd-components-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-drd-components-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-drd-components-ref_{context}'] = DMN decision requirements diagram (DRD) components diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-execution-con.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-execution-con.adoc index d8dbf9923ec..eab03b8fe2c 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-execution-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-execution-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-execution-con_{context}'] = DMN model execution diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-execution-embedded-proc.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-execution-embedded-proc.adoc index 88f1c3931e6..f7b577ca4eb 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-execution-embedded-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-execution-embedded-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-execution-embedded-proc'] = Embedding a DMN call directly in a Java application diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-execution-kogito-proc.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-execution-kogito-proc.adoc index 31c29c0e134..67eee74a803 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-execution-kogito-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-execution-kogito-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-execution-kogito-proc_{context}'] = Executing a DMN service using {KOGITO} diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-feel-con.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-feel-con.adoc index 41ed1148967..58f006e69e2 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-feel-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-feel-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-feel-con_{context}'] = Rule expressions in FEEL diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-feel-data-types-ref.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-feel-data-types-ref.adoc index 8fd1b9c1e7a..c34c3d69d3a 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-feel-data-types-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-feel-data-types-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-feel-data-types-ref_{context}'] = Data types in FEEL diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-feel-enhancements-ref.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-feel-enhancements-ref.adoc index 26bcedbccbe..fe2701ce8f5 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-feel-enhancements-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-feel-enhancements-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-feel-enhancements-ref_{context}'] = FEEL enhancements in {DMN_ENGINE} diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-feel-variable-function-names-ref.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-feel-variable-function-names-ref.adoc index def1caf38be..2f8c84f705a 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-feel-variable-function-names-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-feel-variable-function-names-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-feel-variable-function-names-ref_{context}'] = Variable and function names in FEEL diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-function-expressions-con.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-function-expressions-con.adoc index 3cdbb9c17a9..cf858c02a86 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-function-expressions-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-function-expressions-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-function-expressions-con_{context}'] = Boxed function expressions diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-assigning-custom-datatypes-proc.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-assigning-custom-datatypes-proc.adoc index 1a83f7a36cf..9dd7b8938f5 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-assigning-custom-datatypes-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-assigning-custom-datatypes-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-gs-assigning-custom-datatypes-proc'] [discrete] = Assigning custom data types to the DRD input and decision nodes diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-creating-custom-datatypes-proc.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-creating-custom-datatypes-proc.adoc index 7cc68661e76..72299f63a24 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-creating-custom-datatypes-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-creating-custom-datatypes-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-gs-creating-custom-datatypes-proc'] [discrete] = Creating the traffic violations DMN custom data types diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-creating-drd-proc.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-creating-drd-proc.adoc index ffa4f50982d..f39deafe57a 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-creating-drd-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-creating-drd-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-gs-creating-drd-proc'] [discrete] = Creating the traffic violations DMN decision requirements diagram (DRD) diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-defining-decision-logic-proc.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-defining-decision-logic-proc.adoc index 64e063755bb..e930b910cb6 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-defining-decision-logic-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-defining-decision-logic-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-gs-defining-decision-logic-proc'] [discrete] = Defining the traffic violations DMN decision logic diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-evaluating-proc.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-evaluating-proc.adoc index ebebbb39512..28178ab6393 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-evaluating-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-evaluating-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='gs-evaluating-dmn_{context}'] = Evaluating the traffic violations DMN model with {PRODUCT} diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-new-project-creating-proc.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-new-project-creating-proc.adoc index 21ba9658206..6d781eae152 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-new-project-creating-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-new-project-creating-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-gs-new-project-creating-proc_{context}'] = Creating the traffic violations project from scratch diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-testing-test-scenario-proc.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-testing-test-scenario-proc.adoc index ad67a584f5c..4bf71b9385b 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-testing-test-scenario-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-gs-testing-test-scenario-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-gs-testing-test-scenario-proc'] [discrete] = Testing the traffic violations using test scenarios diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-included-models-con.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-included-models-con.adoc index f5e98a3cecf..973ed911370 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-included-models-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-included-models-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-included-models-con_{context}'] = Included models in DMN files in {DMN_EDITOR} diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-included-models-dmn-proc.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-included-models-dmn-proc.adoc index 13d225bcdd9..775c3ebe2e9 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-included-models-dmn-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-included-models-dmn-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-included-models-dmn-proc_{context}'] = Including other DMN models within a DMN file in {DMN_EDITOR} diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-included-models-pmml-proc.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-included-models-pmml-proc.adoc index 7a37344d424..5076f6a192c 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-included-models-pmml-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-included-models-pmml-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-included-models-pmml-proc_{context}'] = Including PMML models within a DMN file in {DMN_EDITOR} diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-invocation-expressions-con.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-invocation-expressions-con.adoc index 157d614fbc4..3cbdafdaa08 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-invocation-expressions-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-invocation-expressions-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-invocation-expressions-con_{context}'] = Boxed invocation expressions diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-list-expressions-con.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-list-expressions-con.adoc index db0a12c445a..411e9e0a45d 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-list-expressions-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-list-expressions-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-list-expressions-con_{context}'] = Boxed list expressions diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-literal-expressions-con.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-literal-expressions-con.adoc index 51642ba197a..c03aad05815 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-literal-expressions-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-literal-expressions-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-literal-expressions-con_{context}'] = Boxed literal expressions diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-logic-defining-proc.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-logic-defining-proc.adoc index a90d44281d8..815697e1a3a 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-logic-defining-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-logic-defining-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-logic-defining-proc_{context}'] = Defining DMN decision logic in boxed expressions in {DMN_EDITOR} diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-model-creating-multiples-proc.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-model-creating-multiples-proc.adoc index 327a9e8c8de..3e62ceb3476 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-model-creating-multiples-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-model-creating-multiples-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-model-creating-multiples-proc_{context}'] = Creating DMN models with multiple diagrams in {DMN_EDITOR} diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-model-creating-proc.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-model-creating-proc.adoc index bd276669b8c..ff3183a038f 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-model-creating-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-model-creating-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-model-creating-proc_{context}'] = Creating and editing DMN models in {DMN_EDITOR} diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-model-enhancements-ref.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-model-enhancements-ref.adoc index 655d02b1552..9052db18815 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-model-enhancements-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-model-enhancements-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-model-enhancements-ref_{context}'] = DMN model enhancements in {DMN_ENGINE} diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-model-example-ref.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-model-example-ref.adoc index b8f58f5daaf..9e6dd27a3a2 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-model-example-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-model-example-ref.adoc @@ -1,3 +1,21 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// [id='dmn-model-example-ref_{context}'] = DMN model example diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-properties-ref.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-properties-ref.adoc index 0c988c02c51..3e36b779878 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-properties-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-properties-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-properties-ref_{context}'] = Configurable DMN properties in {DMN_ENGINE} diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-relation-expressions-con.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-relation-expressions-con.adoc index a0836c88d8b..d791901eb02 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-relation-expressions-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-relation-expressions-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-relation-expressions-con_{context}'] = Boxed relation expressions diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-support-con.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-support-con.adoc index 4516e31e509..d54d3bce11d 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-support-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-support-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-support-con_{context}'] = DMN support in {PRODUCT} diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-validation-con.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-validation-con.adoc index b27eed848d2..11b1d0affe2 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_dmn-validation-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_dmn-validation-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='dmn-validation-con_{context}'] = Configurable DMN validation in {PRODUCT} diff --git a/drools-docs/src/modules/ROOT/pages/DMN/_ref-dmn-feel-builtin-functions.adoc b/drools-docs/src/modules/ROOT/pages/DMN/_ref-dmn-feel-builtin-functions.adoc index 04a44a224f8..c69296f728c 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/_ref-dmn-feel-builtin-functions.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/_ref-dmn-feel-builtin-functions.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id="ref-dmn-feel-builtin-functions_{context}"] = Built-in functions in FEEL diff --git a/drools-docs/src/modules/ROOT/pages/DMN/index.adoc b/drools-docs/src/modules/ROOT/pages/DMN/index.adoc index ca46e10342b..e95ca256b6e 100644 --- a/drools-docs/src/modules/ROOT/pages/DMN/index.adoc +++ b/drools-docs/src/modules/ROOT/pages/DMN/index.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + :DROOLS: include::../_artifacts/document-attributes.adoc[] diff --git a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIEBuilding-section.adoc b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIEBuilding-section.adoc index d3b4ffd3eb0..74d9bc92d39 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIEBuilding-section.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIEBuilding-section.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [[_kiebuildingsection]] = Building diff --git a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIEDeployCheatSheets-section.adoc b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIEDeployCheatSheets-section.adoc index 0b5a35eab03..4c53f55280d 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIEDeployCheatSheets-section.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIEDeployCheatSheets-section.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [[_kiedeploycheatsheets]] = Installation and Deployment Cheat Sheets diff --git a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIEDeploying-section.adoc b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIEDeploying-section.adoc index 1392bd6b8e9..fdd295f92bf 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIEDeploying-section.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIEDeploying-section.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [[_kiedeployingsection]] = Deploying diff --git a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIEExamples-section.adoc b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIEExamples-section.adoc index 467708fb5ba..5f58f1a2636 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIEExamples-section.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIEExamples-section.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [[_kieexamplessection]] = Build, Deploy and Utilize Examples diff --git a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIEModuleIntroduction-section.adoc b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIEModuleIntroduction-section.adoc index 0eed7be9e32..dae52071fd8 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIEModuleIntroduction-section.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIEModuleIntroduction-section.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [[_kiemoduleintroductionbuildingintroductionsection]] = Introduction diff --git a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIERunning-section.adoc b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIERunning-section.adoc index d69bf75f15b..2663b5a408d 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIERunning-section.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_KIERunning-section.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [[_kierunningsection]] = Running diff --git a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_executable-model-con.adoc b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_executable-model-con.adoc index 3604aa1e63c..f7bf33e259a 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_executable-model-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_executable-model-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='executable-model-con_{context}'] = Executable rule models diff --git a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_executable-model-modify-proc.adoc b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_executable-model-modify-proc.adoc index 3a39896af47..5133d46160a 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_executable-model-modify-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_executable-model-modify-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='executable-model-modify-proc_{context}'] = Modifying or disabling executable rule models in a {PRODUCT} project diff --git a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_executable-model-upgrading-proc.adoc b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_executable-model-upgrading-proc.adoc index b9150bcd1e9..14f014556f3 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_executable-model-upgrading-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_executable-model-upgrading-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='executable-model-upgrading-proc_{context}'] ifdef::DM,PAM[] :PRODUCT_VERSION: 7.8 diff --git a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_kie-scanner-proc.adoc b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_kie-scanner-proc.adoc index a89c8e16200..2cdbb0c6b33 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_kie-scanner-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_kie-scanner-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='kie-scanner-proc_{context}'] = Using a KIE scanner to monitor and update KIE containers diff --git a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_rule-unit-api.adoc b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_rule-unit-api.adoc index ad2e2856438..2acee7e551e 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_rule-unit-api.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_rule-unit-api.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='rule-unit-api_{context}'] = Rule Unit API diff --git a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_rule-unit-dsl.adoc b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_rule-unit-dsl.adoc index 405ae60f21d..df8f7355e9f 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_rule-unit-dsl.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/BuildDeployUtilizeAndRun/_rule-unit-dsl.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='rule-unit-dsl_{context}'] = Rule Unit DSL diff --git a/drools-docs/src/modules/ROOT/pages/KIE/Overview/_KIEAnatomy-section.adoc b/drools-docs/src/modules/ROOT/pages/KIE/Overview/_KIEAnatomy-section.adoc index c5b8fa5743c..d03e25f98aa 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/Overview/_KIEAnatomy-section.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/Overview/_KIEAnatomy-section.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [[_kieanatomysection]] = Anatomy of Projects diff --git a/drools-docs/src/modules/ROOT/pages/KIE/Overview/_KIELifeCycles-section.adoc b/drools-docs/src/modules/ROOT/pages/KIE/Overview/_KIELifeCycles-section.adoc index b9fdf9736ae..939bd73ca2b 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/Overview/_KIELifeCycles-section.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/Overview/_KIELifeCycles-section.adoc @@ -1,3 +1,21 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// [[_kielifecyclessection]] = Lifecycles diff --git a/drools-docs/src/modules/ROOT/pages/KIE/Overview/_architecture-scenarios-ref.adoc b/drools-docs/src/modules/ROOT/pages/KIE/Overview/_architecture-scenarios-ref.adoc index ff499e7d303..4b5f82b5385 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/Overview/_architecture-scenarios-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/Overview/_architecture-scenarios-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='architecture-scenarios-ref_{context}'] = Example decision management architectures with {PRODUCT} diff --git a/drools-docs/src/modules/ROOT/pages/KIE/Overview/_decision-authoring-assets-ref.adoc b/drools-docs/src/modules/ROOT/pages/KIE/Overview/_decision-authoring-assets-ref.adoc index bbb055552cf..73250c7377d 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/Overview/_decision-authoring-assets-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/Overview/_decision-authoring-assets-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + //Module included in the following assemblies: //product-assembly_guided-rules/../main.adoc //product-assembly_guided-rule-templates/../main.adoc diff --git a/drools-docs/src/modules/ROOT/pages/KIE/Overview/_installation-options-ref.adoc b/drools-docs/src/modules/ROOT/pages/KIE/Overview/_installation-options-ref.adoc index 7af7b9a4d49..8ba05ad019c 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/Overview/_installation-options-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/Overview/_installation-options-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='installation-options-ref_{context}'] = Installation environment options for {PRODUCT} diff --git a/drools-docs/src/modules/ROOT/pages/KIE/Overview/_project-asset-execution-options-ref.adoc b/drools-docs/src/modules/ROOT/pages/KIE/Overview/_project-asset-execution-options-ref.adoc index 5104688bbc5..cbec64bc4da 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/Overview/_project-asset-execution-options-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/Overview/_project-asset-execution-options-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='project-asset-execution-options-ref_{context}'] = Asset execution options with {PRODUCT} diff --git a/drools-docs/src/modules/ROOT/pages/KIE/Overview/_project-deployment-options-ref.adoc b/drools-docs/src/modules/ROOT/pages/KIE/Overview/_project-deployment-options-ref.adoc index 22ff41e532f..d7b645de1d3 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/Overview/_project-deployment-options-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/Overview/_project-deployment-options-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='project-deployment-options-ref_{context}'] = Project deployment options with {PRODUCT} diff --git a/drools-docs/src/modules/ROOT/pages/KIE/Overview/_project-storage-version-build-options-ref.adoc b/drools-docs/src/modules/ROOT/pages/KIE/Overview/_project-storage-version-build-options-ref.adoc index 4a2687a36a3..0df37e2b31e 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/Overview/_project-storage-version-build-options-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/Overview/_project-storage-version-build-options-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='project-storage-version-build-options-ref_{context}'] = Project storage and build options with {PRODUCT} diff --git a/drools-docs/src/modules/ROOT/pages/KIE/ReleaseNotes/_ReleaseNotesKIE.6.0.0.Final-section.adoc b/drools-docs/src/modules/ROOT/pages/KIE/ReleaseNotes/_ReleaseNotesKIE.6.0.0.Final-section.adoc index 60b818452dd..f7d25e1919b 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/ReleaseNotes/_ReleaseNotesKIE.6.0.0.Final-section.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/ReleaseNotes/_ReleaseNotesKIE.6.0.0.Final-section.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [[_kie.releasenoteskie.6.0.0]] = New and Noteworthy in KIE API 6.0.0 diff --git a/drools-docs/src/modules/ROOT/pages/KIE/Security/_SecurityManager-section.adoc b/drools-docs/src/modules/ROOT/pages/KIE/Security/_SecurityManager-section.adoc index fb89d5a53ac..636d737c458 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/Security/_SecurityManager-section.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/Security/_SecurityManager-section.adoc @@ -1,3 +1,21 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// [[_securitymanager]] = Security Manager diff --git a/drools-docs/src/modules/ROOT/pages/KIE/_BuildDeployUtilizeAndRun-section.adoc b/drools-docs/src/modules/ROOT/pages/KIE/_BuildDeployUtilizeAndRun-section.adoc index 6d93b48530c..e4f3f3b3d13 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/_BuildDeployUtilizeAndRun-section.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/_BuildDeployUtilizeAndRun-section.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [[_builddeployutilizeandrunsection]] = Build, Deploy, Utilize and Run :context: packaging-deploying diff --git a/drools-docs/src/modules/ROOT/pages/KIE/_KIE-chapter.adoc b/drools-docs/src/modules/ROOT/pages/KIE/_KIE-chapter.adoc index abb6638379e..b6e2bb327b1 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/_KIE-chapter.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/_KIE-chapter.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [[_kiechapter]] = KIE diff --git a/drools-docs/src/modules/ROOT/pages/KIE/_Overview-section.adoc b/drools-docs/src/modules/ROOT/pages/KIE/_Overview-section.adoc index 4189fadc1f4..a706881ab4a 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/_Overview-section.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/_Overview-section.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [[_kieoverviewsection]] = Overview diff --git a/drools-docs/src/modules/ROOT/pages/KIE/_Security-section.adoc b/drools-docs/src/modules/ROOT/pages/KIE/_Security-section.adoc index df0e7853445..0a1c477a2df 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/_Security-section.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/_Security-section.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [[_kiesecuritysection]] = Security diff --git a/drools-docs/src/modules/ROOT/pages/KIE/index.adoc b/drools-docs/src/modules/ROOT/pages/KIE/index.adoc index 6ca06ac0aac..d8ebe47248d 100644 --- a/drools-docs/src/modules/ROOT/pages/KIE/index.adoc +++ b/drools-docs/src/modules/ROOT/pages/KIE/index.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + :DROOLS: include::../_artifacts/document-attributes.adoc[] diff --git a/drools-docs/src/modules/ROOT/pages/_artifacts/document-attributes-drools.adoc b/drools-docs/src/modules/ROOT/pages/_artifacts/document-attributes-drools.adoc index 68c3f5edad3..c5593733942 100644 --- a/drools-docs/src/modules/ROOT/pages/_artifacts/document-attributes-drools.adoc +++ b/drools-docs/src/modules/ROOT/pages/_artifacts/document-attributes-drools.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + :PRODUCT: Drools :PRODUCT_INIT: drools diff --git a/drools-docs/src/modules/ROOT/pages/_artifacts/document-attributes.adoc b/drools-docs/src/modules/ROOT/pages/_artifacts/document-attributes.adoc index b53ca7c2e2f..c6646c5bc91 100644 --- a/drools-docs/src/modules/ROOT/pages/_artifacts/document-attributes.adoc +++ b/drools-docs/src/modules/ROOT/pages/_artifacts/document-attributes.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + :COMMUNITY_VERSION: 10.0 :COMMUNITY_VERSION_LONG: 10.0.0 :COMMUNITY_VERSION_FINAL: {COMMUNITY_VERSION_LONG}.Final diff --git a/drools-docs/src/modules/ROOT/pages/experimental-features/_experimental-declarative-agenda.adoc b/drools-docs/src/modules/ROOT/pages/experimental-features/_experimental-declarative-agenda.adoc index 4a7a640efa8..7f5b4bf3b25 100644 --- a/drools-docs/src/modules/ROOT/pages/experimental-features/_experimental-declarative-agenda.adoc +++ b/drools-docs/src/modules/ROOT/pages/experimental-features/_experimental-declarative-agenda.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='experimental-declarative-agenda_{context}'] = Declarative agenda diff --git a/drools-docs/src/modules/ROOT/pages/experimental-features/_experimental-impact-analysis.adoc b/drools-docs/src/modules/ROOT/pages/experimental-features/_experimental-impact-analysis.adoc index 8401dd90040..d8c109b372b 100644 --- a/drools-docs/src/modules/ROOT/pages/experimental-features/_experimental-impact-analysis.adoc +++ b/drools-docs/src/modules/ROOT/pages/experimental-features/_experimental-impact-analysis.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='experimental-impact-analysis_{context}'] = Impact analysis diff --git a/drools-docs/src/modules/ROOT/pages/experimental-features/_experimental-traits.adoc b/drools-docs/src/modules/ROOT/pages/experimental-features/_experimental-traits.adoc index f81bca2e505..f49a6020d4a 100644 --- a/drools-docs/src/modules/ROOT/pages/experimental-features/_experimental-traits.adoc +++ b/drools-docs/src/modules/ROOT/pages/experimental-features/_experimental-traits.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='experimental-traits_{context}'] = Traits diff --git a/drools-docs/src/modules/ROOT/pages/experimental-features/index.adoc b/drools-docs/src/modules/ROOT/pages/experimental-features/index.adoc index 6ecde5f260a..2ae55250db8 100644 --- a/drools-docs/src/modules/ROOT/pages/experimental-features/index.adoc +++ b/drools-docs/src/modules/ROOT/pages/experimental-features/index.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + :DROOLS: include::../_artifacts/document-attributes.adoc[] diff --git a/drools-docs/src/modules/ROOT/pages/getting-started/_first-rule-project.adoc b/drools-docs/src/modules/ROOT/pages/getting-started/_first-rule-project.adoc index 1b66f452aee..feb5de88eb5 100644 --- a/drools-docs/src/modules/ROOT/pages/getting-started/_first-rule-project.adoc +++ b/drools-docs/src/modules/ROOT/pages/getting-started/_first-rule-project.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='first-rule-project_{context}'] = First Rule Project diff --git a/drools-docs/src/modules/ROOT/pages/getting-started/_getting-started-decision-services.adoc b/drools-docs/src/modules/ROOT/pages/getting-started/_getting-started-decision-services.adoc index 1f7bbcc6e21..b776c3d1590 100644 --- a/drools-docs/src/modules/ROOT/pages/getting-started/_getting-started-decision-services.adoc +++ b/drools-docs/src/modules/ROOT/pages/getting-started/_getting-started-decision-services.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='assembly-getting-started-decision-services'] = Getting started with decision services in {PRODUCT} // Context attribute is assembly specific and enables module reuse between assemblies. diff --git a/drools-docs/src/modules/ROOT/pages/getting-started/index.adoc b/drools-docs/src/modules/ROOT/pages/getting-started/index.adoc index e23f74fdaac..ca8fd5fa01a 100644 --- a/drools-docs/src/modules/ROOT/pages/getting-started/index.adoc +++ b/drools-docs/src/modules/ROOT/pages/getting-started/index.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + :DROOLS: include::../_artifacts/document-attributes.adoc[] diff --git a/drools-docs/src/modules/ROOT/pages/introduction/_intro-building-the-source.adoc b/drools-docs/src/modules/ROOT/pages/introduction/_intro-building-the-source.adoc index c96d4e9d877..c4f727339ba 100644 --- a/drools-docs/src/modules/ROOT/pages/introduction/_intro-building-the-source.adoc +++ b/drools-docs/src/modules/ROOT/pages/introduction/_intro-building-the-source.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='intro-building-the-source_{context}'] = Building the {PRODUCT} source code diff --git a/drools-docs/src/modules/ROOT/pages/introduction/_intro-getting-involved.adoc b/drools-docs/src/modules/ROOT/pages/introduction/_intro-getting-involved.adoc index 407880fa292..6395af560e5 100644 --- a/drools-docs/src/modules/ROOT/pages/introduction/_intro-getting-involved.adoc +++ b/drools-docs/src/modules/ROOT/pages/introduction/_intro-getting-involved.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='intro-getting-involved_{context}'] = Getting involved diff --git a/drools-docs/src/modules/ROOT/pages/introduction/index.adoc b/drools-docs/src/modules/ROOT/pages/introduction/index.adoc index f07353d8a8e..539ce9c1d18 100644 --- a/drools-docs/src/modules/ROOT/pages/introduction/index.adoc +++ b/drools-docs/src/modules/ROOT/pages/introduction/index.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + :DROOLS: include::../_artifacts/document-attributes.adoc[] diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_DSL-section.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_DSL-section.adoc index f23dc18a02f..b5eab955c19 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_DSL-section.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_DSL-section.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + = Domain Specific Languages diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-access-con.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-access-con.adoc index 60316ee6216..87ab16fbebf 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-access-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-access-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-declarations-access-con_{context}'] = Access to DRL declared types in application code diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-con.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-con.adoc index 2894d191fff..9e7d9b13e93 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-declarations-con_{context}'] = Type declarations and metadata in DRL diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-enumerative-con.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-enumerative-con.adoc index 9300b67e0c4..98e949cec6d 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-enumerative-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-enumerative-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-declarations-enumerative-con_{context}'] = Enumerative type declarations in DRL diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-extended-con.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-extended-con.adoc index 351d72825e2..a9a0f19b9ff 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-extended-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-extended-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-declarations-extended-con_{context}'] = Extended type declarations in DRL diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-metadata-tags-ref.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-metadata-tags-ref.adoc index 8327e8e114a..0a05b6864b9 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-metadata-tags-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-metadata-tags-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-declarations-metadata-tags-ref_{context}'] ifeval::["{context}" == "decision-engine"] diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-with-metadata-con.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-with-metadata-con.adoc index 0a2abb2d26e..da0f34b4d4e 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-with-metadata-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-with-metadata-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-declarations-with-metadata-con_{context}'] = Type declarations with metadata in DRL diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-without-metadata-con.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-without-metadata-con.adoc index 5bf64f3fa1c..9e26fb029de 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-without-metadata-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-declarations-without-metadata-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-declarations-without-metadata-con_{context}'] = Type declarations without metadata in DRL diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-functions-con.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-functions-con.adoc index 46995f85b37..2dfceba6c21 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-functions-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-functions-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-functions-con_{context}'] = Functions in DRL diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-globals-con.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-globals-con.adoc index d189ff21dbc..b0a999cc03a 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-globals-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-globals-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-globals-con_{context}'] = Global variables in DRL diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-imports-con.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-imports-con.adoc index ec8277cf632..691b7d1e242 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-imports-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-imports-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-imports-con_{context}'] = Import statements in DRL diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-operator-precedence-ref.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-operator-precedence-ref.adoc index 25e0fa007a1..bc86298fab7 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-operator-precedence-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-operator-precedence-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-operator-precedence-ref_{context}'] = Operator precedence in DRL pattern constraints diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-operators-ref.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-operators-ref.adoc index 2defce96958..f03d3357756 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-operators-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-operators-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-operators-ref_{context}'] = Supported operators in DRL pattern constraints diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-packages-con.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-packages-con.adoc index 11afed8471d..a4871271344 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-packages-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-packages-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-packages-con_{context}'] = Packages in DRL diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-queries-con.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-queries-con.adoc index 24c9afc4845..cdf609563d3 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-queries-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-queries-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-queries-con_{context}'] = Queries in DRL diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-THEN-advanced-con.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-THEN-advanced-con.adoc index bca73b39677..d9eb33baa69 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-THEN-advanced-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-THEN-advanced-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-rules-THEN-advanced-con_{context}'] = Advanced rule actions with conditional and named consequences diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-THEN-con.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-THEN-con.adoc index 60815d55290..5095beed148 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-THEN-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-THEN-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-rules-THEN-con_{context}'] = Rule actions in DRL (THEN) diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-THEN-methods-ref.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-THEN-methods-ref.adoc index 021daebde99..f33526ba07e 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-THEN-methods-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-THEN-methods-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-rules-THEN-methods-ref_{context}'] = Supported rule action methods in DRL diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-THEN-methods-variables-ref.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-THEN-methods-variables-ref.adoc index 998feed80ee..e2b469ff545 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-THEN-methods-variables-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-THEN-methods-variables-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-rules-THEN-methods-variables-ref_{context}'] = Other rule action methods from `drools` variable diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-WHEN-con.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-WHEN-con.adoc index 0fb4c1700b0..0d4a35c99b3 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-WHEN-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-WHEN-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-rules-WHEN-con_{context}'] = Rule conditions in DRL (WHEN) diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-WHEN-elements-ref.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-WHEN-elements-ref.adoc index 8299167b8af..09bc091dbdb 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-WHEN-elements-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-WHEN-elements-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-rules-WHEN-elements-ref_{context}'] = Supported rule condition elements in DRL (keywords) diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-comments-con.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-comments-con.adoc index 85925b68433..0234bbeb222 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-comments-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-comments-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-rules-comments-con_{context}'] = Comments in DRL files diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-errors-ref.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-errors-ref.adoc index b59ec8c9f5c..764b92be6b2 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-errors-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-errors-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-rules-errors-ref_{context}'] = Error messages for DRL troubleshooting diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-traditional.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-traditional.adoc index 8e9e55ad8b9..8aa69a86e83 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-traditional.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-rules-traditional.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id="con-drl_{context}] = Traditional DRL Syntax diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-timers-calendars-con.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-timers-calendars-con.adoc index 6de35c1795d..efa902d226c 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-timers-calendars-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/_drl-timers-calendars-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-timers-calendars-con_{context}'] = Timer and calendar rule attributes in DRL diff --git a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/index.adoc b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/index.adoc index aa7ff6ffb11..3211b62f458 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference-traditional/index.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference-traditional/index.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + :DROOLS: include::../_artifacts/document-attributes.adoc[] diff --git a/drools-docs/src/modules/ROOT/pages/language-reference/_DSL-section.adoc b/drools-docs/src/modules/ROOT/pages/language-reference/_DSL-section.adoc index 1417731958d..6adfcd0c2de 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference/_DSL-section.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference/_DSL-section.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + = Domain Specific Languages diff --git a/drools-docs/src/modules/ROOT/pages/language-reference/_XLSDecisionTable-section.adoc b/drools-docs/src/modules/ROOT/pages/language-reference/_XLSDecisionTable-section.adoc index 045cf7468fd..c726e8f80a0 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference/_XLSDecisionTable-section.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference/_XLSDecisionTable-section.adoc @@ -1,3 +1,21 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// :context: decision-tables diff --git a/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-attributes-ref.adoc b/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-attributes-ref.adoc index 12aa8d1a86a..1f634675351 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-attributes-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-attributes-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='decision-tables-attributes-ref'] = Additional rule attributes for RuleSet or RuleTable definitions diff --git a/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-con.adoc b/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-con.adoc index 59815178729..c6717c847f1 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='decision-tables-con_{context}'] = Spreadsheet decision tables diff --git a/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-defining-proc.adoc b/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-defining-proc.adoc index 847222604fe..7a05aac26fb 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-defining-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-defining-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='decision-tables-defining-proc'] = Defining spreadsheet decision tables diff --git a/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-rule-set-entries-ref.adoc b/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-rule-set-entries-ref.adoc index 68a88d4dac8..365b4187498 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-rule-set-entries-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-rule-set-entries-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='decision-tables-rule-set-entries-ref'] = RuleSet definitions diff --git a/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-rule-table-entries-ref.adoc b/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-rule-table-entries-ref.adoc index 59f747d4754..e6235f42fd3 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-rule-table-entries-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-rule-table-entries-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='decision-tables-rule-table-entries-ref'] = RuleTable definitions diff --git a/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-use-case-con.adoc b/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-use-case-con.adoc index c521d908aa8..93cf9092b24 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-use-case-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference/_decision-tables-use-case-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='decision-tables-use-case-con'] = Decision table use case diff --git a/drools-docs/src/modules/ROOT/pages/language-reference/_drl-declarations-access-con.adoc b/drools-docs/src/modules/ROOT/pages/language-reference/_drl-declarations-access-con.adoc index 60316ee6216..87ab16fbebf 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference/_drl-declarations-access-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference/_drl-declarations-access-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='drl-declarations-access-con_{context}'] = Access to DRL declared types in application code diff --git a/drools-docs/src/modules/ROOT/pages/language-reference/_drl-rules.adoc b/drools-docs/src/modules/ROOT/pages/language-reference/_drl-rules.adoc index e1dd56afc1b..f0831e34554 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference/_drl-rules.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference/_drl-rules.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id="con-drl_{context}"] = Drools Rule Language (DRL) diff --git a/drools-docs/src/modules/ROOT/pages/language-reference/_performance-tuning-drl-ref.adoc b/drools-docs/src/modules/ROOT/pages/language-reference/_performance-tuning-drl-ref.adoc index 2e5bccf4235..ac5f4627fd3 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference/_performance-tuning-drl-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference/_performance-tuning-drl-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='performance-tuning-drl-ref_drl-rules'] = Performance tuning considerations with DRL diff --git a/drools-docs/src/modules/ROOT/pages/language-reference/index.adoc b/drools-docs/src/modules/ROOT/pages/language-reference/index.adoc index dc9ef0ccab9..b468a9ebacd 100644 --- a/drools-docs/src/modules/ROOT/pages/language-reference/index.adoc +++ b/drools-docs/src/modules/ROOT/pages/language-reference/index.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + :DROOLS: include::../_artifacts/document-attributes.adoc[] diff --git a/drools-docs/src/modules/ROOT/pages/migration-guide/_missing_features_components.adoc b/drools-docs/src/modules/ROOT/pages/migration-guide/_missing_features_components.adoc index d4ffd569003..dd41e1e68ca 100644 --- a/drools-docs/src/modules/ROOT/pages/migration-guide/_missing_features_components.adoc +++ b/drools-docs/src/modules/ROOT/pages/migration-guide/_missing_features_components.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='missing-features-components_{context}'] [id='kie-server_{context}'] diff --git a/drools-docs/src/modules/ROOT/pages/migration-guide/_nonexec-model-to-exec-model.adoc b/drools-docs/src/modules/ROOT/pages/migration-guide/_nonexec-model-to-exec-model.adoc index 7f7485266a8..2a4dda2115d 100644 --- a/drools-docs/src/modules/ROOT/pages/migration-guide/_nonexec-model-to-exec-model.adoc +++ b/drools-docs/src/modules/ROOT/pages/migration-guide/_nonexec-model-to-exec-model.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='nonexec-model-to-exec-model_{context}'] == Migration from non-executable model to executable model The `drools-engine-classic` and `drools-mvel` execute rules with `non executable model`. `drools-engine` executes rules with `executable model`. For more details about the executable model, see xref:KIE/index.adoc#executable-model-con_packaging-deploying[Executable rule models]. diff --git a/drools-docs/src/modules/ROOT/pages/migration-guide/_other_notes.adoc b/drools-docs/src/modules/ROOT/pages/migration-guide/_other_notes.adoc index 968e0541928..02ac23645a9 100644 --- a/drools-docs/src/modules/ROOT/pages/migration-guide/_other_notes.adoc +++ b/drools-docs/src/modules/ROOT/pages/migration-guide/_other_notes.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='other_notes_{context}'] [id='spreadsheet_file_extensions_{context}'] diff --git a/drools-docs/src/modules/ROOT/pages/migration-guide/_traditional-to-ruleunit.adoc b/drools-docs/src/modules/ROOT/pages/migration-guide/_traditional-to-ruleunit.adoc index 9b916576100..280a9f53b73 100644 --- a/drools-docs/src/modules/ROOT/pages/migration-guide/_traditional-to-ruleunit.adoc +++ b/drools-docs/src/modules/ROOT/pages/migration-guide/_traditional-to-ruleunit.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='traditional-to-ruleunit_{context}'] = Migrate to {PRODUCT} 10 diff --git a/drools-docs/src/modules/ROOT/pages/migration-guide/index.adoc b/drools-docs/src/modules/ROOT/pages/migration-guide/index.adoc index ce3b6a2a3cb..7c2f6ac51d7 100644 --- a/drools-docs/src/modules/ROOT/pages/migration-guide/index.adoc +++ b/drools-docs/src/modules/ROOT/pages/migration-guide/index.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + :DROOLS: include::../_artifacts/document-attributes.adoc[] diff --git a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_con-migrate-dmn-to-kogito-overview.adoc b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_con-migrate-dmn-to-kogito-overview.adoc index 3709d882f6c..d7a25e674fc 100644 --- a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_con-migrate-dmn-to-kogito-overview.adoc +++ b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_con-migrate-dmn-to-kogito-overview.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id="con-migrate-dmn-to-kogito-overview_{context}"] = Migration of a DMN service from {PRODUCT} v7 to a {KOGITO} microservice diff --git a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_con-migrate-drl-to-kogito-loan-overview.adoc b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_con-migrate-drl-to-kogito-loan-overview.adoc index 7347761b79d..0a408ab647d 100644 --- a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_con-migrate-drl-to-kogito-loan-overview.adoc +++ b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_con-migrate-drl-to-kogito-loan-overview.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id="con-migrate-drl-to-kogito-loan-overview_{context}"] = Migration of a DRL service from {PRODUCT} v7 to a {KOGITO} microservice diff --git a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_con-migrate-pmml-to-kogito-overview.adoc b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_con-migrate-pmml-to-kogito-overview.adoc index d3691cae8cb..01b169be14a 100644 --- a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_con-migrate-pmml-to-kogito-overview.adoc +++ b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_con-migrate-pmml-to-kogito-overview.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id="con-migrate-pmml-to-kogito-overview_{context}"] = Migration of a PMML service to a {KOGITO} microservice diff --git a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_con-migration-to-kogito-overview.adoc b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_con-migration-to-kogito-overview.adoc index e712711ff79..4d8bb5f8c49 100644 --- a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_con-migration-to-kogito-overview.adoc +++ b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_con-migration-to-kogito-overview.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id="con-migration-to-kogito-overview_{context}"] = Overview of migration from {PRODUCT} v7 to {KOGITO} microservices diff --git a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-dmn-model-kjar.adoc b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-dmn-model-kjar.adoc index 35ff32e7340..1bd21058cd7 100644 --- a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-dmn-model-kjar.adoc +++ b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-dmn-model-kjar.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id="proc-kogito-migrate-dmn-model-kjar_{context}"] = Migrating a DMN model KJAR to a {KOGITO} microservice diff --git a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-drl-expose-ruleunits.adoc b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-drl-expose-ruleunits.adoc index ce053d7339b..550779b0d32 100644 --- a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-drl-expose-ruleunits.adoc +++ b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-drl-expose-ruleunits.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id="proc-kogito-migrate-drl-expose-ruleunits_{context}"] = Exposing rule evaluation with a REST endpoint using {QUARKUS} diff --git a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-drl-implement-ruleunits.adoc b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-drl-implement-ruleunits.adoc index 4cc2968027d..6e1fd2adc0c 100644 --- a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-drl-implement-ruleunits.adoc +++ b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-drl-implement-ruleunits.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id="proc-kogito-migrate-drl-implement-ruleunits_{context}"] = Implementing rule units and automatic REST endpoint generation diff --git a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-drl-legacy-api.adoc b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-drl-legacy-api.adoc index 797536cb62c..2c50f353e69 100644 --- a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-drl-legacy-api.adoc +++ b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-drl-legacy-api.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id="proc-kogito-migrate-drl-legacy-api_{context}"] = Migrating a rule evaluation to a {KOGITO} microservice using legacy API diff --git a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-external-application-rest.adoc b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-external-application-rest.adoc index a312bc42bfa..7176265f688 100644 --- a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-external-application-rest.adoc +++ b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-external-application-rest.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id="proc-kogito-migrate-external-application-REST_{context}"] = Migrating external applications to REST endpoints specific to DMN models diff --git a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-pmml-model-kjar.adoc b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-pmml-model-kjar.adoc index fb46577429e..abb94c11a96 100644 --- a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-pmml-model-kjar.adoc +++ b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-migrate-pmml-model-kjar.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id="proc-kogito-migrate-pmml-model-kjar_{context}"] = Migrating a PMML model KJAR to a {KOGITO} microservice diff --git a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-modify-external-application-pmml-microservice.adoc b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-modify-external-application-pmml-microservice.adoc index 5a7649b198c..fb035c618b8 100644 --- a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-modify-external-application-pmml-microservice.adoc +++ b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_proc-kogito-modify-external-application-pmml-microservice.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id="proc-kogito-modify-external-application-pmml-microservice_{context}"] = Modifying an external application to a {KOGITO} microservice diff --git a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_ref-example-bind-external-app-kogito.adoc b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_ref-example-bind-external-app-kogito.adoc index 0a3dbcfd2b3..3ef27f6d42d 100644 --- a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_ref-example-bind-external-app-kogito.adoc +++ b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_ref-example-bind-external-app-kogito.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id="ref-example-bind-external-app-kogito_{context}"] = Example of binding an external application to a {KOGITO} deployment diff --git a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_ref-kogito-migrate-example-loan-application-project.adoc b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_ref-kogito-migrate-example-loan-application-project.adoc index 47cfc233c94..5809a589501 100644 --- a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_ref-kogito-migrate-example-loan-application-project.adoc +++ b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_ref-kogito-migrate-example-loan-application-project.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id="ref-kogito-migrate-example-loan-application-project_{context}"] = Example loan application project diff --git a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_ref-migrate-kjar-dmn-example.adoc b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_ref-migrate-kjar-dmn-example.adoc index 7c932ae101e..316259e2cb4 100644 --- a/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_ref-migrate-kjar-dmn-example.adoc +++ b/drools-docs/src/modules/ROOT/pages/migration-guide/migration-v7-to-kogito/_ref-migrate-kjar-dmn-example.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id="ref-migrate-kjar-dmn-example_{context}"] = Example of migrating a DMN model KJAR to a {KOGITO} microservice diff --git a/drools-docs/src/modules/ROOT/pages/pragmatic-ai/_ai-con.adoc b/drools-docs/src/modules/ROOT/pages/pragmatic-ai/_ai-con.adoc index 96037c296e3..cf147cdf2b2 100644 --- a/drools-docs/src/modules/ROOT/pages/pragmatic-ai/_ai-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/pragmatic-ai/_ai-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='ai-con_{context}'] = Introduction to Pragmatic AI diff --git a/drools-docs/src/modules/ROOT/pages/pragmatic-ai/_ai-credit-card-con.adoc b/drools-docs/src/modules/ROOT/pages/pragmatic-ai/_ai-credit-card-con.adoc index b1c9d9ba3f8..b19b75d0a8d 100644 --- a/drools-docs/src/modules/ROOT/pages/pragmatic-ai/_ai-credit-card-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/pragmatic-ai/_ai-credit-card-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='ai-credit-card-con_{context}'] = Credit card fraud dispute use case example diff --git a/drools-docs/src/modules/ROOT/pages/pragmatic-ai/_ai-gsg-proc.adoc b/drools-docs/src/modules/ROOT/pages/pragmatic-ai/_ai-gsg-proc.adoc index e3e55446b09..350a7a7480d 100644 --- a/drools-docs/src/modules/ROOT/pages/pragmatic-ai/_ai-gsg-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/pragmatic-ai/_ai-gsg-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='ai-gsg_{context}'] = Using a PMML model with a DMN model to resolve credit card transaction disputes diff --git a/drools-docs/src/modules/ROOT/pages/pragmatic-ai/_ai-pmml-ref.adoc b/drools-docs/src/modules/ROOT/pages/pragmatic-ai/_ai-pmml-ref.adoc index e4ba59c2e11..6078743e4d9 100644 --- a/drools-docs/src/modules/ROOT/pages/pragmatic-ai/_ai-pmml-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/pragmatic-ai/_ai-pmml-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='ai-pmml-ref_{context}'] = Credit card transaction dispute exercise PMML file diff --git a/drools-docs/src/modules/ROOT/pages/pragmatic-ai/index.adoc b/drools-docs/src/modules/ROOT/pages/pragmatic-ai/index.adoc index 84a18cf2afb..8b27d398011 100644 --- a/drools-docs/src/modules/ROOT/pages/pragmatic-ai/index.adoc +++ b/drools-docs/src/modules/ROOT/pages/pragmatic-ai/index.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + :DROOLS: include::../_artifacts/document-attributes.adoc[] diff --git a/drools-docs/src/modules/ROOT/pages/release-notes/_release-notes-10.0.adoc b/drools-docs/src/modules/ROOT/pages/release-notes/_release-notes-10.0.adoc index 5a8a793a1e4..4bb82a73462 100644 --- a/drools-docs/src/modules/ROOT/pages/release-notes/_release-notes-10.0.adoc +++ b/drools-docs/src/modules/ROOT/pages/release-notes/_release-notes-10.0.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + == 10.0.0 release notes === PLACE_HOLDER diff --git a/drools-docs/src/modules/ROOT/pages/release-notes/index.adoc b/drools-docs/src/modules/ROOT/pages/release-notes/index.adoc index e7f73660f0c..ae84fbf5de4 100644 --- a/drools-docs/src/modules/ROOT/pages/release-notes/index.adoc +++ b/drools-docs/src/modules/ROOT/pages/release-notes/index.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + :DROOLS: include::../_artifacts/document-attributes.adoc[] diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_agenda-filters-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_agenda-filters-con.adoc index a2623310672..1cfb5884335 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_agenda-filters-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_agenda-filters-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='agenda-filters-con_{context}'] = Agenda evaluation filters diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-clock-ref.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-clock-ref.adoc index 1f6cd1e522d..14ba6b7a0ab 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-clock-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-clock-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='cep-clock-ref_{context}'] = Session clock implementations in the {RULE_ENGINE} diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-con.adoc index 248c1139bae..16dfea52cc1 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='cep-con_{context}'] = Complex event processing (CEP) diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-event-streams-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-event-streams-con.adoc index 8e714af690c..2d8dd7e34bf 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-event-streams-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-event-streams-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='cep-event-streams-con_{context}'] = Event streams and entry points diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-event-streams-proc.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-event-streams-proc.adoc index 11166d25599..e1a3b3914af 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-event-streams-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-event-streams-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='cep-event-streams-proc_{context}'] = Declaring entry points for rule data diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-events-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-events-con.adoc index fa4bb4e54b4..d2a8e5dc785 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-events-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-events-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='cep-events-con_{context}'] = Events in complex event processing diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-events-proc.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-events-proc.adoc index 046125b4089..d97099e87f7 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-events-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-events-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='cep-events-proc_{context}'] = Declaring facts as events diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-memory-management-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-memory-management-con.adoc index 6b26745f86d..fe6ef6ec029 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-memory-management-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-memory-management-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='cep-memory-management-con_{context}'] = Memory management for events diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-modes-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-modes-con.adoc index 3237b9fcf74..151ca2c4e2d 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-modes-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-modes-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='cep-modes-con_{context}'] = Event processing modes in the {RULE_ENGINE} diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-negative-patterns.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-negative-patterns.adoc index c4a177cd2c4..aab7eb3f87d 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-negative-patterns.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-negative-patterns.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='cep-negative-patterns_{context}'] = Negative patterns in {RULE_ENGINE} stream mode diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-sliding-windows-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-sliding-windows-con.adoc index 7008b423f95..35761e4d0e3 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-sliding-windows-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-sliding-windows-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='cep-sliding-windows-con_{context}'] = Sliding windows of time or length diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-sliding-windows-proc.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-sliding-windows-proc.adoc index 6c413474d69..dcaacb993a1 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-sliding-windows-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-sliding-windows-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='cep-sliding-windows-proc_{context}'] = Declaring sliding windows for rule data diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-temporal-operators.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-temporal-operators.adoc index 7f5a9f5c4a3..8f1d7313472 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-temporal-operators.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_cep-temporal-operators.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='cep-temporal-operators_{context}'] = Temporal operators for events diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_engine-event-listeners-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_engine-event-listeners-con.adoc index dacf39c6864..2b2f56476a3 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_engine-event-listeners-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_engine-event-listeners-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='engine-event-listeners-con_{context}'] = {RULE_ENGINE} event listeners and debug logging diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_engine-event-listeners-development-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_engine-event-listeners-development-con.adoc index b588d5af83e..b878dc7a6d5 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_engine-event-listeners-development-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_engine-event-listeners-development-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='engine-event-listeners-development-con_{context}'] = Practices for development of event listeners diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_engine-queries-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_engine-queries-con.adoc index c2a0fa3cd0c..1f82428de74 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_engine-queries-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_engine-queries-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='engine-queries-con_{context}'] = {RULE_ENGINE} queries and live queries diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_execution-control-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_execution-control-con.adoc index 5eb5d043fc9..1ce5d913268 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_execution-control-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_execution-control-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='execution-control-con_{context}'] = Execution control in the {RULE_ENGINE} diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_fact-equality-modes-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_fact-equality-modes-con.adoc index ec0f8f2d817..aee339aa9f1 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_fact-equality-modes-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_fact-equality-modes-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='fact-equality-modes-con_{context}'] = Fact equality modes in the {RULE_ENGINE} diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_fact-propagation-modes-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_fact-propagation-modes-con.adoc index 99a96c5055a..2f84a268675 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_fact-propagation-modes-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_fact-propagation-modes-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='fact-propagation-modes-con_{context}'] = Fact propagation modes in the {RULE_ENGINE} diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_forward-and-backward-chaining-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_forward-and-backward-chaining-con.adoc index d619c26f529..6fe47e0a77c 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_forward-and-backward-chaining-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_forward-and-backward-chaining-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='forward-and-backward-chaining-con_{context}'] = Rule evaluation with forward and backward chaining diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_inference-and-truth-maintenance.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_inference-and-truth-maintenance.adoc index 78b914fc0c6..9f97ab838ac 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_inference-and-truth-maintenance.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_inference-and-truth-maintenance.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='inference-and-truth-maintenance_{context}'] = Inference and truth maintenance in the {RULE_ENGINE} diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_kie-sessions-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_kie-sessions-con.adoc index 098eba727b9..e8f53e789cb 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_kie-sessions-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_kie-sessions-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='kie-sessions-con_{context}'] = KIE sessions diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_kie-sessions-pools-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_kie-sessions-pools-con.adoc index d15f958dc03..f9eac276779 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_kie-sessions-pools-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_kie-sessions-pools-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='kie-sessions-pools-con_{context}'] = KIE session pools diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_kie-sessions-stateful-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_kie-sessions-stateful-con.adoc index d587ecce8f0..b06fdb79b27 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_kie-sessions-stateful-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_kie-sessions-stateful-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='kie-sessions-stateful-con_{context}'] = Stateful KIE sessions diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_kie-sessions-stateless-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_kie-sessions-stateless-con.adoc index bfd2e655d72..725d2ef0aa9 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_kie-sessions-stateless-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_kie-sessions-stateless-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='kie-sessions-stateless-con_{context}'] = Stateless KIE sessions diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_kie-sessions-stateless-globals-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_kie-sessions-stateless-globals-con.adoc index 0deef749658..672bb3489d1 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_kie-sessions-stateless-globals-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_kie-sessions-stateless-globals-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='kie-sessions-stateless-globals-con_{context}'] = Global variables in stateless KIE sessions diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_logging-proc.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_logging-proc.adoc index 348dee66868..7f61d5d84b3 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_logging-proc.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_logging-proc.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='logging-proc_{context}'] = Configuring a logging utility in the {RULE_ENGINE} diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_performance-tuning-rule-engine-ref.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_performance-tuning-rule-engine-ref.adoc index c0a836e22b9..e64bb0f8609 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_performance-tuning-rule-engine-ref.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_performance-tuning-rule-engine-ref.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='performance-tuning-rule-engine-ref_{context}'] = Performance tuning considerations with the {RULE_ENGINE} diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_phreak-algorithm-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_phreak-algorithm-con.adoc index 2a89ffdb57d..c42fddbaf7d 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_phreak-algorithm-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_phreak-algorithm-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='phreak-algorithm-con_{context}'] = Phreak rule algorithm in the {RULE_ENGINE} diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_phreak-rule-evaluation-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_phreak-rule-evaluation-con.adoc index c0995c21fe4..f8f20d28869 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_phreak-rule-evaluation-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_phreak-rule-evaluation-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='phreak-rule-evaluation-con_{context}'] = Rule evaluation in Phreak diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_phreak-sequential-mode-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_phreak-sequential-mode-con.adoc index 4eb07a1420d..388a93dc1ec 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_phreak-sequential-mode-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_phreak-sequential-mode-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='phreak-sequential-mode-con_{context}'] = Sequential mode in Phreak diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_property-change-listeners-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_property-change-listeners-con.adoc index 5ce4a97176a..62b6efd0da0 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_property-change-listeners-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_property-change-listeners-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='property-change-listeners-con_{context}'] = Property-change settings and listeners for fact types diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_rule-base-configuration-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_rule-base-configuration-con.adoc index 63ee143bc73..9d76b3da132 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_rule-base-configuration-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_rule-base-configuration-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='rule-base-configuration-con_{context}'] = Rule base configuration diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_rule-engine-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_rule-engine-con.adoc index 85840fe4682..30dfad0dc6f 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_rule-engine-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_rule-engine-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='rule-engine-con_{context}'] = {RULE_ENGINE} diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/_rule-execution-modes-con.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/_rule-execution-modes-con.adoc index 777a37fe20c..30bbef454d5 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/_rule-execution-modes-con.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/_rule-execution-modes-con.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + [id='rule-execution-modes-con_{context}'] = Rule execution modes and thread safety in the {RULE_ENGINE} diff --git a/drools-docs/src/modules/ROOT/pages/rule-engine/index.adoc b/drools-docs/src/modules/ROOT/pages/rule-engine/index.adoc index 6ded84eba68..0b5fd352d82 100644 --- a/drools-docs/src/modules/ROOT/pages/rule-engine/index.adoc +++ b/drools-docs/src/modules/ROOT/pages/rule-engine/index.adoc @@ -1,3 +1,22 @@ +//// +Licensed to the Apache Software Foundation (ASF) under one +or more contributor license agreements. See the NOTICE file +distributed with this work for additional information +regarding copyright ownership. The ASF licenses this file +to you under the Apache License, Version 2.0 (the +"License"); you may not use this file except in compliance +with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. +//// + :DROOLS: include::../_artifacts/document-attributes.adoc[] diff --git a/drools-docs/supplemental-ui/css/drl.css b/drools-docs/supplemental-ui/css/drl.css index 7fb3ae35679..d7e9472df0a 100644 --- a/drools-docs/supplemental-ui/css/drl.css +++ b/drools-docs/supplemental-ui/css/drl.css @@ -1,3 +1,22 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + dt.hdlist1 code, dt.hdlist2 code { font-style: normal; diff --git a/drools-docs/supplemental-ui/css/menu.css b/drools-docs/supplemental-ui/css/menu.css index 98f00eefef4..c28c18c1960 100644 --- a/drools-docs/supplemental-ui/css/menu.css +++ b/drools-docs/supplemental-ui/css/menu.css @@ -1,3 +1,22 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + .small-item { padding:0.3rem; } diff --git a/drools-docs/supplemental-ui/css/search.css b/drools-docs/supplemental-ui/css/search.css index 46a437d58fe..54cb66a3fa0 100644 --- a/drools-docs/supplemental-ui/css/search.css +++ b/drools-docs/supplemental-ui/css/search.css @@ -1,3 +1,22 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + /* * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/drools-docs/supplemental-ui/partials/footer-scripts.hbs b/drools-docs/supplemental-ui/partials/footer-scripts.hbs index 88a07789f07..7dd94026c30 100644 --- a/drools-docs/supplemental-ui/partials/footer-scripts.hbs +++ b/drools-docs/supplemental-ui/partials/footer-scripts.hbs @@ -1,3 +1,20 @@ + + + + + + + + + + + + + + + + + {{#if env.SITE_SEARCH_PROVIDER}} diff --git a/drools-docs/supplemental-ui/partials/head-meta.hbs b/drools-docs/supplemental-ui/partials/head-meta.hbs index 8d27938fd9a..20aa2757c53 100644 --- a/drools-docs/supplemental-ui/partials/head-meta.hbs +++ b/drools-docs/supplemental-ui/partials/head-meta.hbs @@ -1,3 +1,20 @@ + + + + + + + + + + + + + + + + + diff --git a/drools-docs/supplemental-ui/partials/head-scripts.hbs b/drools-docs/supplemental-ui/partials/head-scripts.hbs index 82d10e9eb3d..676ab67adee 100644 --- a/drools-docs/supplemental-ui/partials/head-scripts.hbs +++ b/drools-docs/supplemental-ui/partials/head-scripts.hbs @@ -1,3 +1,20 @@ + + + + + + + + + + + + + + + + + diff --git a/drools-docs/supplemental-ui/partials/header-content.hbs b/drools-docs/supplemental-ui/partials/header-content.hbs index 1f37d4e4b0f..5893231494d 100644 --- a/drools-docs/supplemental-ui/partials/header-content.hbs +++ b/drools-docs/supplemental-ui/partials/header-content.hbs @@ -1,3 +1,20 @@ + + + + + + + + + + + + + + + + +