This is an automated email from the ASF dual-hosted git repository. jdaugherty pushed a commit to branch 7.0.x in repository https://gitbox.apache.org/repos/asf/grails-core.git
commit 0bda10d7605ca34d20bf3951a844c24a53ea49c9 Author: James Daugherty <[email protected]> AuthorDate: Wed Apr 23 12:48:04 2025 -0400 Update license headers for Apache compliance --- .../grails/datastore/rx/batch/BatchOperation.groovy | 1 - .../grails/datastore/rx/collection/RxCollection.groovy | 1 - .../datastore/rx/collection/RxCollectionUtils.groovy | 1 - .../datastore/rx/collection/RxPersistentList.groovy | 1 - .../datastore/rx/collection/RxPersistentSet.groovy | 1 - .../rx/collection/RxPersistentSortedSet.groovy | 1 - .../rx/exceptions/BlockingOperationException.groovy | 1 - .../rx/internal/RxDatastoreClientImplementor.groovy | 1 - .../rx/proxy/AbstractObservableProxyMethodHandler.java | 18 ++++++++++++++++++ .../rx/proxy/IdQueryObservableProxyMethodHandler.java | 18 ++++++++++++++++++ .../proxy/IdentifierObservableProxyMethodHandler.java | 18 ++++++++++++++++++ .../org/grails/datastore/rx/proxy/ProxyFactory.java | 18 ++++++++++++++++++ .../rx/proxy/QueryObservableProxyMethodHandler.java | 18 ++++++++++++++++++ .../datastore/rx/proxy/RxJavassistProxyFactory.java | 18 ++++++++++++++++++ 14 files changed, 108 insertions(+), 8 deletions(-) diff --git a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/batch/BatchOperation.groovy b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/batch/BatchOperation.groovy index b7317f5174..333de2f12e 100644 --- a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/batch/BatchOperation.groovy +++ b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/batch/BatchOperation.groovy @@ -16,7 +16,6 @@ * specific language governing permissions and limitations * under the License. */ - package org.grails.datastore.rx.batch import groovy.transform.Canonical diff --git a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/collection/RxCollection.groovy b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/collection/RxCollection.groovy index e6357975d0..dc94b850fb 100644 --- a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/collection/RxCollection.groovy +++ b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/collection/RxCollection.groovy @@ -16,7 +16,6 @@ * specific language governing permissions and limitations * under the License. */ - package org.grails.datastore.rx.collection import grails.gorm.rx.collection.ObservableCollection diff --git a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/collection/RxCollectionUtils.groovy b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/collection/RxCollectionUtils.groovy index 74e94769bc..c7b7664444 100644 --- a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/collection/RxCollectionUtils.groovy +++ b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/collection/RxCollectionUtils.groovy @@ -16,7 +16,6 @@ * specific language governing permissions and limitations * under the License. */ - package org.grails.datastore.rx.collection import groovy.transform.CompileStatic diff --git a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/collection/RxPersistentList.groovy b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/collection/RxPersistentList.groovy index c91878546f..e305204eca 100644 --- a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/collection/RxPersistentList.groovy +++ b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/collection/RxPersistentList.groovy @@ -16,7 +16,6 @@ * specific language governing permissions and limitations * under the License. */ - package org.grails.datastore.rx.collection import grails.gorm.rx.collection.RxPersistentCollection diff --git a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/collection/RxPersistentSet.groovy b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/collection/RxPersistentSet.groovy index b6aac19126..7dc6347f4b 100644 --- a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/collection/RxPersistentSet.groovy +++ b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/collection/RxPersistentSet.groovy @@ -16,7 +16,6 @@ * specific language governing permissions and limitations * under the License. */ - package org.grails.datastore.rx.collection import grails.gorm.rx.collection.RxPersistentCollection diff --git a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/collection/RxPersistentSortedSet.groovy b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/collection/RxPersistentSortedSet.groovy index 5b6fa2344c..25ee14c2e5 100644 --- a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/collection/RxPersistentSortedSet.groovy +++ b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/collection/RxPersistentSortedSet.groovy @@ -16,7 +16,6 @@ * specific language governing permissions and limitations * under the License. */ - package org.grails.datastore.rx.collection import grails.gorm.rx.collection.RxPersistentCollection diff --git a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/exceptions/BlockingOperationException.groovy b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/exceptions/BlockingOperationException.groovy index 994c92353b..137a21c4d3 100644 --- a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/exceptions/BlockingOperationException.groovy +++ b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/exceptions/BlockingOperationException.groovy @@ -16,7 +16,6 @@ * specific language governing permissions and limitations * under the License. */ - package org.grails.datastore.rx.exceptions /** diff --git a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/internal/RxDatastoreClientImplementor.groovy b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/internal/RxDatastoreClientImplementor.groovy index 79d33710b4..5a2274b0a9 100644 --- a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/internal/RxDatastoreClientImplementor.groovy +++ b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/internal/RxDatastoreClientImplementor.groovy @@ -16,7 +16,6 @@ * specific language governing permissions and limitations * under the License. */ - package org.grails.datastore.rx.internal import grails.gorm.rx.proxy.ObservableProxy diff --git a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/AbstractObservableProxyMethodHandler.java b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/AbstractObservableProxyMethodHandler.java index ab9a23ea5a..2d8445b016 100644 --- a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/AbstractObservableProxyMethodHandler.java +++ b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/AbstractObservableProxyMethodHandler.java @@ -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 + * + * https://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.grails.datastore.rx.proxy; import org.grails.datastore.mapping.proxy.EntityProxyMethodHandler; diff --git a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/IdQueryObservableProxyMethodHandler.java b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/IdQueryObservableProxyMethodHandler.java index b3fecb5073..d1343e265d 100644 --- a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/IdQueryObservableProxyMethodHandler.java +++ b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/IdQueryObservableProxyMethodHandler.java @@ -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 + * + * https://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.grails.datastore.rx.proxy; import org.grails.datastore.mapping.query.Query; diff --git a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/IdentifierObservableProxyMethodHandler.java b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/IdentifierObservableProxyMethodHandler.java index 21bef8c7c8..0636d55b68 100644 --- a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/IdentifierObservableProxyMethodHandler.java +++ b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/IdentifierObservableProxyMethodHandler.java @@ -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 + * + * https://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.grails.datastore.rx.proxy; import org.grails.datastore.rx.RxDatastoreClient; diff --git a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/ProxyFactory.java b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/ProxyFactory.java index b5e6b517f3..dd541afdcb 100644 --- a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/ProxyFactory.java +++ b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/ProxyFactory.java @@ -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 + * + * https://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.grails.datastore.rx.proxy; import grails.gorm.rx.proxy.ObservableProxy; diff --git a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/QueryObservableProxyMethodHandler.java b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/QueryObservableProxyMethodHandler.java index 29ad1cbc4f..12be245f66 100644 --- a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/QueryObservableProxyMethodHandler.java +++ b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/QueryObservableProxyMethodHandler.java @@ -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 + * + * https://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.grails.datastore.rx.proxy; import org.grails.datastore.mapping.query.Query; diff --git a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/RxJavassistProxyFactory.java b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/RxJavassistProxyFactory.java index d445cb9d80..1ab5a2309d 100644 --- a/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/RxJavassistProxyFactory.java +++ b/grails-datamapping-rx/src/main/groovy/org/grails/datastore/rx/proxy/RxJavassistProxyFactory.java @@ -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 + * + * https://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.grails.datastore.rx.proxy; import grails.gorm.rx.proxy.ObservableProxy;
