#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-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.
@@ -20,7 +20,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* Spring configuration class main application bootstrap point.
*
*
* @author Oliver Gierke
*/
@SpringBootApplication

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.
@@ -28,7 +28,7 @@ import org.springframework.data.mongodb.core.mapping.Document;
/**
* Entity to represent a {@link Store}.
*
*
* @author Oliver Gierke
*/
@Value
@@ -41,7 +41,7 @@ public class Store {
/**
* Value object to represent an {@link Address}.
*
*
* @author Oliver Gierke
*/
@Value

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.
@@ -35,7 +35,7 @@ import org.springframework.stereotype.Component;
/**
* Component initializing a hand full of Starbucks stores and persisting them through a {@link StoreRepository}.
*
*
* @author Oliver Gierke
*/
@Slf4j
@@ -58,7 +58,7 @@ public class StoreInitializer {
/**
* Reads a file {@code starbucks.csv} from the class path and parses it into {@link Store} instances about to
* persisted.
*
*
* @return
* @throws Exception
*/

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.
@@ -31,7 +31,7 @@ import com.querydsl.core.types.dsl.StringPath;
/**
* Repository interface for out-of-the-box paginating access to {@link Store}s and a query method to find stores by
* location and distance.
*
*
* @author Oliver Gierke
*/
public interface StoreRepository extends PagingAndSortingRepository<Store, UUID>, QuerydslPredicateExecutor<Store> {
@@ -41,7 +41,7 @@ public interface StoreRepository extends PagingAndSortingRepository<Store, UUID>
/**
* Tweak the Querydsl binding if collection resources are filtered.
*
*
* @see org.springframework.data.web.querydsl.QuerydslBinderCustomizer#customize(org.springframework.data.web.querydsl.QuerydslBindings,
* com.mysema.query.types.EntityPath)
*/

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.
@@ -42,7 +42,7 @@ import org.springframework.web.bind.annotation.RequestParam;
/**
* A Spring MVC controller to produce an HTML frontend.
*
*
* @author Oliver Gierke
*/
@Controller
@@ -69,7 +69,7 @@ class StoresController {
/**
* Looks up the stores in the given distance around the given location.
*
*
* @param model the {@link Model} to populate.
* @param location the optional location, if none is given, no search results will be returned.
* @param distance the distance to use, if none is given the {@link #DEFAULT_DISTANCE} is used.

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.
@@ -51,7 +51,7 @@ import org.springframework.web.client.RestTemplate;
/**
* A test case to discover the search resource and execute a predefined search with it.
*
*
* @author Oliver Gierke
*/
@RunWith(SpringRunner.class)

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.
@@ -35,7 +35,7 @@ import org.springframework.test.context.junit4.SpringRunner;
/**
* Integration tests for {@link StoreRepository}.
*
*
* @author Oliver Gierke
*/
@RunWith(SpringRunner.class)