|
1 | | -package org.grails.datastore.gorm |
2 | | - |
3 | | -import grails.artefact.Artefact |
4 | | -import grails.gorm.annotation.Entity |
5 | | -import org.grails.datastore.gorm.query.GormQueryOperations |
6 | | -import org.grails.datastore.mapping.dirty.checking.DirtyCheckable |
7 | | -import org.grails.datastore.mapping.model.config.GormProperties |
8 | | -import org.grails.datastore.mapping.reflect.ClassPropertyFetcher |
9 | | -import spock.lang.Specification |
10 | | - |
11 | | -import java.lang.reflect.Method |
12 | | -import java.lang.reflect.Modifier |
13 | | - |
14 | 1 | /* |
15 | | - * Copyright 2014 original authors |
| 2 | + * Copyright 2014-2025 the original author or authors. |
16 | 3 | * |
17 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
18 | 5 | * you may not use this file except in compliance with the License. |
19 | 6 | * You may obtain a copy of the License at |
20 | 7 | * |
21 | | - * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | + * https://www.apache.org/licenses/LICENSE-2.0 |
22 | 9 | * |
23 | 10 | * Unless required by applicable law or agreed to in writing, software |
24 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
25 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
26 | 13 | * See the License for the specific language governing permissions and |
27 | 14 | * limitations under the License. |
28 | 15 | */ |
| 16 | +package org.grails.datastore.gorm |
| 17 | + |
| 18 | +import grails.gorm.annotation.Entity |
| 19 | +import org.grails.datastore.gorm.query.GormQueryOperations |
| 20 | +import org.grails.datastore.mapping.dirty.checking.DirtyCheckable |
| 21 | +import org.grails.datastore.mapping.model.config.GormProperties |
| 22 | +import org.grails.datastore.mapping.reflect.ClassPropertyFetcher |
| 23 | +import spock.lang.Specification |
| 24 | + |
| 25 | +import java.lang.reflect.Method |
| 26 | +import java.lang.reflect.Modifier |
29 | 27 |
|
30 | 28 | /** |
31 | 29 | * @author graemerocher |
|
0 commit comments