DATAGRAPH-371 - Document packages with package-infos.

Merges #417
This commit is contained in:
Michael J. Simons
2018-07-24 18:04:36 +02:00
committed by Gerrit Meier
parent 2748aedd3a
commit 34750cf9a8
15 changed files with 58 additions and 15 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

@@ -1,18 +1,4 @@
/*
* Copyright (c) [2011-2017] "Pivotal Software, Inc." / "Neo Technology" / "Graph Aware Ltd."
*
* This product is licensed to you under the Apache License, Version 2.0 (the "License").
* You may not use this product except in compliance with the License.
*
* This product may include a number of subcomponents with
* separate copyright notices and license terms. Your use of the source
* code for these subcomponents is subject to the terms and
* conditions of the subcomponent's license, as noted in the LICENSE file.
*
*/
/**
* Support classes for repository namespace and JavaConfig integration.
* Classes for Neo4j namespace configuration.
*/
@org.springframework.lang.NonNullApi
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 @@
/**
* Spring Expression Language (SpEL) support.
*/
package org.springframework.data.neo4j.repository.query.spel;

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;