#342 - Expanded copyright headers to 2018.

Removed trailing whitespace in touched files.
This commit is contained in:
Oliver Gierke
2018-02-22 11:42:36 +01:00
parent 20c910183e
commit d854c6d084
351 changed files with 654 additions and 654 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2014 the original author or authors.
* Copyright 2014-2018 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.
@@ -24,7 +24,7 @@ import example.springdata.mongodb.customer.CustomerRepository;
/**
* Repository interface to manage {@link Customer} instances.
*
*
* @author Christoph Strobl
*/
public interface AdvancedRepository extends CustomerRepository {
@@ -34,13 +34,13 @@ public interface AdvancedRepository extends CustomerRepository {
/**
* Derived query using {@code $comment} meta attribute for quick lookup. <br />
* Have a look at the {@literal mongodb shell} and execute:
*
*
* <pre>
* <code>
* db['system.profile'].find({'query.$comment':'s2gx-2014-rocks!'})
* </code>
* </pre>
*
*
* @param firstname
* @return
*/

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2014-2016 the original author or authors.
* Copyright 2014-2018 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.
@@ -27,7 +27,7 @@ import com.mongodb.MongoClient;
/**
* Test configuration to connect to a MongoDB named "test" and using a {@link MongoClient} with profiling enabled.
*
*
* @author Christoph Strobl
*/
@SpringBootApplication

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2014 the original author or authors.
* Copyright 2014-2018 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.
@@ -22,7 +22,7 @@ import org.springframework.data.geo.Point;
/**
* A domain object to capture addresses.
*
*
* @author Oliver Gierke
*/
@Getter

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2014-2016 the original author or authors.
* Copyright 2014-2018 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.
@@ -22,7 +22,7 @@ import com.mongodb.MongoClient;
/**
* Test configuration to connect to a MongoDB named "test" and using a {@link MongoClient}. Also enables Spring Data
* repositories for MongoDB.
*
*
* @author Oliver Gierke
*/
@SpringBootApplication

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2014-2015 the original author or authors.
* Copyright 2014-2018 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.
@@ -22,7 +22,7 @@ import org.springframework.util.Assert;
/**
* An entity to represent a customer.
*
*
* @author Oliver Gierke
*/
@Data
@@ -34,7 +34,7 @@ public class Customer {
/**
* Creates a new {@link Customer} with the given firstname and lastname.
*
*
* @param firstname must not be {@literal null} or empty.
* @param lastname must not be {@literal null} or empty.
*/

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2014-2015 the original author or authors.
* Copyright 2014-2018 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.
@@ -25,14 +25,14 @@ import org.springframework.data.repository.CrudRepository;
/**
* Repository interface to manage {@link Customer} instances.
*
*
* @author Oliver Gierke
*/
public interface CustomerRepository extends CrudRepository<Customer, String> {
/**
* Derived query using dynamic sort information.
*
*
* @param lastname
* @param sort
* @return
@@ -41,7 +41,7 @@ public interface CustomerRepository extends CrudRepository<Customer, String> {
/**
* Show case for a repository query using geo-spatial functionality.
*
*
* @param point
* @param distance
* @return

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2015-2016 the original author or authors.
* Copyright 2015-2018 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.

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2015-2016 the original author or authors.
* Copyright 2015-2018 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.
@@ -19,7 +19,7 @@ import lombok.Value;
/**
* A sample DTO only containing the firstname.
*
*
* @author Oliver Gierke
*/
@Value

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2015-2016 the original author or authors.
* Copyright 2015-2018 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.

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2015-2016 the original author or authors.
* Copyright 2015-2018 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.
@@ -25,7 +25,7 @@ import org.springframework.data.repository.CrudRepository;
/**
* Sample repository managing customers to show projecting functionality of Spring Data MongoDB.
*
*
* @author Oliver Gierke
*/
interface CustomerRepository extends CrudRepository<Customer, ObjectId> {
@@ -33,7 +33,7 @@ interface CustomerRepository extends CrudRepository<Customer, ObjectId> {
/**
* Uses a projection interface to indicate the fields to be returned. As the projection doesn't use any dynamic
* fields, the query execution will be restricted to only the fields needed by the projection.
*
*
* @return
*/
Collection<CustomerProjection> findAllProjectedBy();
@@ -42,7 +42,7 @@ interface CustomerRepository extends CrudRepository<Customer, ObjectId> {
* When a projection is used that contains dynamic properties (i.e. SpEL expressions in an {@link Value} annotation),
* the normal target entity will be loaded but dynamically projected so that the target can be referred to in the
* expression.
*
*
* @return
*/
Collection<CustomerSummary> findAllSummarizedBy();
@@ -50,14 +50,14 @@ interface CustomerRepository extends CrudRepository<Customer, ObjectId> {
/**
* Uses a concrete DTO type to indicate the fields to be returned. This will cause the original object being loaded
* and the properties copied over into the DTO.
*
*
* @return
*/
Collection<CustomerDto> findAllDtoedBy();
/**
* Passes in the projection type dynamically (either interface or DTO).
*
*
* @param firstname
* @param projection
* @return
@@ -66,7 +66,7 @@ interface CustomerRepository extends CrudRepository<Customer, ObjectId> {
/**
* Projection for a single entity.
*
*
* @param id
* @return
*/
@@ -74,7 +74,7 @@ interface CustomerRepository extends CrudRepository<Customer, ObjectId> {
/**
* Dynamic projection for a single entity.
*
*
* @param id
* @param projection
* @return
@@ -83,7 +83,7 @@ interface CustomerRepository extends CrudRepository<Customer, ObjectId> {
/**
* Projections used with pagination.
*
*
* @param pageable
* @return
*/

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2015-2016 the original author or authors.
* Copyright 2015-2018 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.

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2014-2016 the original author or authors.
* Copyright 2014-2018 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.

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2015-2016 the original author or authors.
* Copyright 2015-2018 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.

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2014-2016 the original author or authors.
* Copyright 2014-2018 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.
@@ -36,7 +36,7 @@ import org.springframework.test.context.junit4.SpringRunner;
/**
* Integration test for {@link CustomerRepository}.
*
*
* @author Oliver Gierke
*/
@RunWith(SpringRunner.class)

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2015-2016 the original author or authors.
* Copyright 2015-2018 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.
@@ -36,7 +36,7 @@ import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
/**
* Integration tests for {@link CustomerRepository} to show projection capabilities.
*
*
* @author Oliver Gierke
*/
@RunWith(SpringJUnit4ClassRunner.class)