DATAGRAPH-371 - Document packages with package-infos.

Merges #417

(cherry picked from commit 34750cf9a8)
This commit is contained in:
Michael J. Simons
2018-07-24 18:04:36 +02:00
committed by Gerrit Meier
parent e43330e3e6
commit 72e0eeeeb2
14 changed files with 57 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
/**
* A set of Neo4j specific annotations (especially Depth and Bookmark support).
*/
package org.springframework.data.neo4j.annotation;

View File

@@ -0,0 +1,4 @@
/**
* Support for Neo4js bookmarks for use with the java driver / bolt transport.
*/
package org.springframework.data.neo4j.bookmark;

View File

@@ -0,0 +1,5 @@
/**
* Adapter between Springs {@link org.springframework.core.convert.ConversionService conversion service infrastructure}
* and OGM infrastructure.
*/
package org.springframework.data.neo4j.conversion;

View File

@@ -0,0 +1,4 @@
/**
* Contains infrastructure for mapping Neo4j errors to Spring Data Exception hierarchy.
*/
package org.springframework.data.neo4j.exception;

View File

@@ -0,0 +1,4 @@
/**
* Neo4j specific support classes for the Spring Data mapping subsystem.
*/
package org.springframework.data.neo4j.mapping;

View File

@@ -0,0 +1,4 @@
/**
* Classes for Neo4j namespace configuration.
*/
package org.springframework.data.neo4j.repository.config;

View File

@@ -0,0 +1,4 @@
/**
* Infrastructure for Neo4j specific repositories.
*/
package org.springframework.data.neo4j.repository;

View File

@@ -0,0 +1,4 @@
/**
* Builder classes to create Neo4j-OGM filters.
*/
package org.springframework.data.neo4j.repository.query.derived.builder;

View File

@@ -0,0 +1,4 @@
/**
* Derived query creation.
*/
package org.springframework.data.neo4j.repository.query.derived;

View File

@@ -0,0 +1,4 @@
/**
* Query implementation to execute queries against Neo4j.
*/
package org.springframework.data.neo4j.repository.query;

View File

@@ -0,0 +1,4 @@
/**
* Neo4j repository implementations.
*/
package org.springframework.data.neo4j.repository.support;

View File

@@ -0,0 +1,4 @@
/**
* Spring Data Neo4js implementation of a {@link org.springframework.transaction.PlatformTransactionManager}.
*/
package org.springframework.data.neo4j.transaction;

View File

@@ -0,0 +1,4 @@
/**
* Util classes for iteration and pagination.
*/
package org.springframework.data.neo4j.util;

View File

@@ -0,0 +1,4 @@
/**
* Support classes for web requests.
*/
package org.springframework.data.neo4j.web.support;