From 1bb0e946c3608bc23dff4ed10ecac8530ff6b2cb Mon Sep 17 00:00:00 2001 From: Arne Burmeister Date: Thu, 1 Sep 2022 13:20:10 +0200 Subject: [PATCH] #80 add missing license comment --- .../resolver/DefaultResolverFactory.java | 20 +++++++++++++++++++ .../query/QueryTransactionBridge.java | 20 +++++++++++++++++++ .../query/QueryWithCollections.java | 20 +++++++++++++++++++ ...ArangoTransactionManagementConfigurer.java | 20 +++++++++++++++++++ .../transaction/ArangoTransactionManager.java | 20 +++++++++++++++++++ .../transaction/ArangoTransactionObject.java | 20 +++++++++++++++++++ .../ArangoTransactionResource.java | 20 +++++++++++++++++++ .../TransactionAttributeTemplate.java | 20 +++++++++++++++++++ 8 files changed, 160 insertions(+) diff --git a/src/main/java/com/arangodb/springframework/core/convert/resolver/DefaultResolverFactory.java b/src/main/java/com/arangodb/springframework/core/convert/resolver/DefaultResolverFactory.java index 77df50ed5..a286f7cab 100644 --- a/src/main/java/com/arangodb/springframework/core/convert/resolver/DefaultResolverFactory.java +++ b/src/main/java/com/arangodb/springframework/core/convert/resolver/DefaultResolverFactory.java @@ -1,3 +1,23 @@ +/* + * DISCLAIMER + * + * Copyright 2017 ArangoDB GmbH, Cologne, Germany + * + * Licensed under the Apache License, Version 2.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. + * + * Copyright holder is ArangoDB GmbH, Cologne, Germany + */ + package com.arangodb.springframework.core.convert.resolver; import java.lang.annotation.Annotation; diff --git a/src/main/java/com/arangodb/springframework/repository/query/QueryTransactionBridge.java b/src/main/java/com/arangodb/springframework/repository/query/QueryTransactionBridge.java index 80a418001..1b6667790 100644 --- a/src/main/java/com/arangodb/springframework/repository/query/QueryTransactionBridge.java +++ b/src/main/java/com/arangodb/springframework/repository/query/QueryTransactionBridge.java @@ -1,3 +1,23 @@ +/* + * DISCLAIMER + * + * Copyright 2017 ArangoDB GmbH, Cologne, Germany + * + * Licensed under the Apache License, Version 2.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. + * + * Copyright holder is ArangoDB GmbH, Cologne, Germany + */ + package com.arangodb.springframework.repository.query; import org.springframework.core.NamedInheritableThreadLocal; diff --git a/src/main/java/com/arangodb/springframework/repository/query/QueryWithCollections.java b/src/main/java/com/arangodb/springframework/repository/query/QueryWithCollections.java index 8300feab9..19c249ece 100644 --- a/src/main/java/com/arangodb/springframework/repository/query/QueryWithCollections.java +++ b/src/main/java/com/arangodb/springframework/repository/query/QueryWithCollections.java @@ -1,3 +1,23 @@ +/* + * DISCLAIMER + * + * Copyright 2017 ArangoDB GmbH, Cologne, Germany + * + * Licensed under the Apache License, Version 2.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. + * + * Copyright holder is ArangoDB GmbH, Cologne, Germany + */ + package com.arangodb.springframework.repository.query; import java.util.Collection; diff --git a/src/main/java/com/arangodb/springframework/transaction/ArangoTransactionManagementConfigurer.java b/src/main/java/com/arangodb/springframework/transaction/ArangoTransactionManagementConfigurer.java index 1d6550b9a..b3624c934 100644 --- a/src/main/java/com/arangodb/springframework/transaction/ArangoTransactionManagementConfigurer.java +++ b/src/main/java/com/arangodb/springframework/transaction/ArangoTransactionManagementConfigurer.java @@ -1,3 +1,23 @@ +/* + * DISCLAIMER + * + * Copyright 2017 ArangoDB GmbH, Cologne, Germany + * + * Licensed under the Apache License, Version 2.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. + * + * Copyright holder is ArangoDB GmbH, Cologne, Germany + */ + package com.arangodb.springframework.transaction; import org.springframework.beans.factory.annotation.Autowired; diff --git a/src/main/java/com/arangodb/springframework/transaction/ArangoTransactionManager.java b/src/main/java/com/arangodb/springframework/transaction/ArangoTransactionManager.java index 0b577745e..cc9e00181 100644 --- a/src/main/java/com/arangodb/springframework/transaction/ArangoTransactionManager.java +++ b/src/main/java/com/arangodb/springframework/transaction/ArangoTransactionManager.java @@ -1,3 +1,23 @@ +/* + * DISCLAIMER + * + * Copyright 2017 ArangoDB GmbH, Cologne, Germany + * + * Licensed under the Apache License, Version 2.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. + * + * Copyright holder is ArangoDB GmbH, Cologne, Germany + */ + package com.arangodb.springframework.transaction; import com.arangodb.ArangoDBException; diff --git a/src/main/java/com/arangodb/springframework/transaction/ArangoTransactionObject.java b/src/main/java/com/arangodb/springframework/transaction/ArangoTransactionObject.java index 0dcab98f3..13c5d4cea 100644 --- a/src/main/java/com/arangodb/springframework/transaction/ArangoTransactionObject.java +++ b/src/main/java/com/arangodb/springframework/transaction/ArangoTransactionObject.java @@ -1,3 +1,23 @@ +/* + * DISCLAIMER + * + * Copyright 2017 ArangoDB GmbH, Cologne, Germany + * + * Licensed under the Apache License, Version 2.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. + * + * Copyright holder is ArangoDB GmbH, Cologne, Germany + */ + package com.arangodb.springframework.transaction; import com.arangodb.ArangoDBException; diff --git a/src/main/java/com/arangodb/springframework/transaction/ArangoTransactionResource.java b/src/main/java/com/arangodb/springframework/transaction/ArangoTransactionResource.java index 99a329b5b..8cb908bf8 100644 --- a/src/main/java/com/arangodb/springframework/transaction/ArangoTransactionResource.java +++ b/src/main/java/com/arangodb/springframework/transaction/ArangoTransactionResource.java @@ -1,3 +1,23 @@ +/* + * DISCLAIMER + * + * Copyright 2017 ArangoDB GmbH, Cologne, Germany + * + * Licensed under the Apache License, Version 2.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. + * + * Copyright holder is ArangoDB GmbH, Cologne, Germany + */ + package com.arangodb.springframework.transaction; import org.springframework.lang.Nullable; diff --git a/src/main/java/com/arangodb/springframework/transaction/TransactionAttributeTemplate.java b/src/main/java/com/arangodb/springframework/transaction/TransactionAttributeTemplate.java index 08ad506a8..2abc783ca 100644 --- a/src/main/java/com/arangodb/springframework/transaction/TransactionAttributeTemplate.java +++ b/src/main/java/com/arangodb/springframework/transaction/TransactionAttributeTemplate.java @@ -1,3 +1,23 @@ +/* + * DISCLAIMER + * + * Copyright 2017 ArangoDB GmbH, Cologne, Germany + * + * Licensed under the Apache License, Version 2.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. + * + * Copyright holder is ArangoDB GmbH, Cologne, Germany + */ + package com.arangodb.springframework.transaction; import org.springframework.transaction.PlatformTransactionManager;