DATAGEODE-302 - Add TODO to move GemfireEntityInformation to a more appropriate package.

This commit is contained in:
John Blum
2020-10-09 15:15:44 -07:00
parent 9c4a2b18ec
commit 33412d54c5
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.gemfire.repository.query;
import org.springframework.data.gemfire.mapping.GemfirePersistentEntity;
@@ -30,6 +29,7 @@ import org.springframework.data.repository.core.support.PersistentEntityInformat
* @see org.springframework.data.gemfire.repository.query.GemfireEntityInformation
* @see org.springframework.data.repository.core.support.PersistentEntityInformation
*/
// TODO: Move to org.springframework.data.gemfire.repository.core.support
public class DefaultGemfireEntityInformation<T, ID> extends PersistentEntityInformation<T, ID>
implements GemfireEntityInformation<T, ID> {

View File

@@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.data.gemfire.repository.query;
import org.apache.geode.cache.Region;
@@ -26,6 +25,7 @@ import org.springframework.data.repository.core.EntityInformation;
* @author Oliver Gierke
* @see org.springframework.data.repository.core.EntityInformation
*/
// TODO: Move to org.springframework.data.gemfire.repository.core
public interface GemfireEntityInformation<T, ID> extends EntityInformation<T, ID> {
/**