Browse Source
Suppress deprecation warnings for GenericTypeResolver for now. Added Simple(Property|Association)Handler to ease working with untyped PersistentProperty instances without having to fall back to raw types. Polished Sonargraph architecture description.pull/57/merge
9 changed files with 109 additions and 6 deletions
@ -0,0 +1,32 @@
@@ -0,0 +1,32 @@
|
||||
/* |
||||
* Copyright 2013 the original author or authors. |
||||
* |
||||
* 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. |
||||
*/ |
||||
package org.springframework.data.mapping; |
||||
|
||||
/** |
||||
* Association handler to work with the untyped {@link PersistentProperty} based {@link Association}. |
||||
* |
||||
* @author Oliver Gierke |
||||
* @see PropertyHandler |
||||
*/ |
||||
public interface SimpleAssociationHandler { |
||||
|
||||
/** |
||||
* Handle the given {@link Association}. |
||||
* |
||||
* @param association will never be {@literal null}. |
||||
*/ |
||||
void doWithAssociation(Association<? extends PersistentProperty<?>> association); |
||||
} |
||||
@ -0,0 +1,31 @@
@@ -0,0 +1,31 @@
|
||||
/* |
||||
* Copyright 2013 the original author or authors. |
||||
* |
||||
* 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. |
||||
*/ |
||||
package org.springframework.data.mapping; |
||||
|
||||
/** |
||||
* A property handler to work with untyped {@link PersistentProperty} instances. |
||||
* |
||||
* @author Oliver Gierke |
||||
*/ |
||||
public interface SimplePropertyHandler { |
||||
|
||||
/** |
||||
* Handle the given {@link PersistentProperty}. |
||||
* |
||||
* @param property will never be {@literal null}. |
||||
*/ |
||||
void doWithPersistentProperty(PersistentProperty<?> property); |
||||
} |
||||
Loading…
Reference in new issue