DATAREST-1170 - Update copyright years to 2018.

This commit is contained in:
Mark Paluch
2017-01-30 08:59:42 +01:00
parent 1ebdeb9589
commit 5d9dbf1823
387 changed files with 1417 additions and 1417 deletions

View File

@@ -1,6 +1,6 @@
package org.springframework.data.rest.tests;
/*
* Copyright 2013-2016 the original author or authors.
* Copyright 2013-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.
@@ -49,7 +49,7 @@ import org.springframework.web.context.request.WebRequest;
/**
* Base class to write integration tests for controllers.
*
*
* @author Oliver Gierke
*/
@RunWith(SpringJUnit4ClassRunner.class)
@@ -87,7 +87,7 @@ public abstract class AbstractControllerIntegrationTests {
/**
* Returns a {@link RootResourceInformation} for the given domain type.
*
*
* @param domainType must not be {@literal null}.
* @return
*/

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2013-2017 the original author or authors.
* Copyright 2013-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 2013-2017 the original author or authors.
* Copyright 2013-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 2012-2016 the original author or authors.
* Copyright 2012-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 2013-2016 the original author or authors.
* Copyright 2013-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 2013-2016 the original author or authors.
* Copyright 2013-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.
@@ -30,7 +30,7 @@ import org.springframework.web.util.UriTemplate;
/**
* Simple wrapper for {@link Resource}s to allow easy assertions on it.
*
*
* @author Oliver Gierke
*/
public class ResourceTester {
@@ -44,7 +44,7 @@ public class ResourceTester {
/**
* Creates a new {@link ResourceTester} for the given {@link ResourceSupport}.
*
*
* @param resource must not be {@literal null}.
*/
private ResourceTester(ResourceSupport resource) {
@@ -54,7 +54,7 @@ public class ResourceTester {
/**
* Asserts that the {@link Resource} contains the given number of {@link Link}s.
*
*
* @param number
*/
public void assertNumberOfLinks(int number) {
@@ -63,7 +63,7 @@ public class ResourceTester {
/**
* Asserts that the {@link Resource} has a link with the given rel and href.
*
*
* @param rel must not be {@literal null}.
* @param href can be {@literal null}, if so, only the presence of a {@link Link} with the given rel is checked.
*/
@@ -73,7 +73,7 @@ public class ResourceTester {
/**
* Asserts that the {@link Resource} has a link with the given rel and ending with the given href.
*
*
* @param rel must not be {@literal null}.
* @param href can be {@literal null}, if so, only the presence of a {@link Link} with the given rel is checked.
*/

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2013-2016 the original author or authors.
* Copyright 2013-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.
@@ -43,7 +43,7 @@ import org.springframework.web.context.request.ServletRequestAttributes;
/**
* Helper methods for web integration testing.
*
*
* @author Oliver Gierke
* @author Greg Turnquist
*/
@@ -56,7 +56,7 @@ public class TestMvcClient {
/**
* Creates a new {@link TestMvcClient} for the given {@link MockMvc} and {@link LinkDiscoverers}.
*
*
* @param mvc must not be {@literal null}.
* @param discoverers must not be {@literal null}.
*/
@@ -191,7 +191,7 @@ public class TestMvcClient {
/**
* Follow URL supplied as a string with a specific Accept header.
*
*
* @param href
* @param accept
* @return
@@ -214,7 +214,7 @@ public class TestMvcClient {
/**
* Discover single URI associated with a rel, starting at the root node ("/")
*
*
* @param rel
* @return
* @throws Exception
@@ -228,7 +228,7 @@ public class TestMvcClient {
/**
* Traverses the given link relations from the root.
*
*
* @param rels
* @return
* @throws Exception

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2016 the original author or authors.
* Copyright 2012-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 org.springframework.data.annotation.Id;
/**
* Base class for persistent classes.
*
*
* @author Oliver Gierke
* @author David Turanski
*/
@@ -29,7 +29,7 @@ public class AbstractPersistentEntity {
/**
* Returns the identifier of the entity.
*
*
* @return the id
*/
public Long getId() {
@@ -44,7 +44,7 @@ public class AbstractPersistentEntity {
this.id = null;
}
/*
/*
* (non-Javadoc)
* @see java.lang.Object#equals(java.lang.Object)
*/
@@ -64,7 +64,7 @@ public class AbstractPersistentEntity {
return this.id.equals(that.getId());
}
/*
/*
* (non-Javadoc)
* @see java.lang.Object#hashCode()
*/

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2016 the original author or authors.
* Copyright 2012-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 org.springframework.util.Assert;
/**
* An address.
*
*
* @author Oliver Gierke
*/
public class Address {
@@ -28,7 +28,7 @@ public class Address {
/**
* Creates a new {@link Address} from the given street, city and country.
*
*
* @param street must not be {@literal null} or empty.
* @param city must not be {@literal null} or empty.
* @param country must not be {@literal null} or empty.
@@ -46,7 +46,7 @@ public class Address {
/**
* Returns a copy of the current {@link Address} instance which is a new entity in terms of persistence.
*
*
* @return
*/
public Address getCopy() {
@@ -55,7 +55,7 @@ public class Address {
/**
* Returns the street.
*
*
* @return
*/
public String getStreet() {
@@ -64,7 +64,7 @@ public class Address {
/**
* Returns the city.
*
*
* @return
*/
public String getCity() {
@@ -73,7 +73,7 @@ public class Address {
/**
* Returns the country.
*
*
* @return
*/
public String getCountry() {

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2017 the original author or authors.
* Copyright 2012-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 org.springframework.util.Assert;
/**
* A customer.
*
*
* @author Oliver Gierke
* @author David Turanski
* @author Mark Paluch
@@ -37,7 +37,7 @@ public class Customer extends AbstractPersistentEntity {
/**
* Creates a new {@link Customer} from the given parameters.
*
*
* @param id the unique id;
* @param emailAddress must not be {@literal null} or empty.
* @param firstname must not be {@literal null} or empty.
@@ -58,7 +58,7 @@ public class Customer extends AbstractPersistentEntity {
/**
* Adds the given {@link Address} to the {@link Customer}.
*
*
* @param address must not be {@literal null}.
*/
public void add(Address address) {
@@ -69,7 +69,7 @@ public class Customer extends AbstractPersistentEntity {
/**
* Returns the firstname of the {@link Customer}.
*
*
* @return
*/
public String getFirstname() {
@@ -78,7 +78,7 @@ public class Customer extends AbstractPersistentEntity {
/**
* Sets the firstname of the {@link Customer}.
*
*
* @param firstname
*/
public void setFirstname(String firstname) {
@@ -87,7 +87,7 @@ public class Customer extends AbstractPersistentEntity {
/**
* Returns the lastname of the {@link Customer}.
*
*
* @return
*/
public String getLastname() {
@@ -96,7 +96,7 @@ public class Customer extends AbstractPersistentEntity {
/**
* Sets the lastname of the {@link Customer}.
*
*
* @param lastname
*/
public void setLastname(String lastname) {
@@ -105,7 +105,7 @@ public class Customer extends AbstractPersistentEntity {
/**
* Returns the {@link EmailAddress} of the {@link Customer}.
*
*
* @return
*/
public EmailAddress getEmailAddress() {
@@ -114,7 +114,7 @@ public class Customer extends AbstractPersistentEntity {
/**
* Sets the emailAddress of the {@link Customer}.
*
*
* @param emailAddress
*/
public void setEmailAddress(EmailAddress emailAddress) {
@@ -123,7 +123,7 @@ public class Customer extends AbstractPersistentEntity {
/**
* Return the {@link Customer}'s addresses.
*
*
* @return
*/
public Set<Address> getAddresses() {

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2016 the original author or authors.
* Copyright 2012-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.repository.query.Param;
/**
* Repository interface to access {@link Customer}s.
*
*
* @author Oliver Gierke
* @author David Turanski
*/
@@ -30,7 +30,7 @@ public interface CustomerRepository extends CrudRepository<Customer, Long> {
/**
* Finds all {@link Customer}s with the given lastname.
*
*
* @param lastname
* @return
*/
@@ -38,7 +38,7 @@ public interface CustomerRepository extends CrudRepository<Customer, Long> {
/**
* Finds the Customer with the given {@link EmailAddress}.
*
*
* @param emailAddress
* @return
*/

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2016 the original author or authors.
* Copyright 2012-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 com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
/**
* Value object to represent email addresses.
*
*
* @author Oliver Gierke
*/
@JsonSerialize(using = ToStringSerializer.class)
@@ -40,7 +40,7 @@ public final class EmailAddress {
/**
* Creates a new {@link EmailAddress} from the given {@link String} representation.
*
*
* @param emailAddress must not be {@literal null} or empty.
*/
@JsonCreator
@@ -52,7 +52,7 @@ public final class EmailAddress {
/**
* Returns whether the given {@link String} is a valid {@link EmailAddress} which means you can safely instantiate the
* class.
*
*
* @param candidate
* @return
*/

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2016 the original author or authors.
* Copyright 2012-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.
@@ -30,7 +30,7 @@ public class LineItem {
/**
* Creates a new {@link LineItem} for the given {@link Product}.
*
*
* @param product must not be {@literal null}.
*/
public LineItem(Product product) {
@@ -39,7 +39,7 @@ public class LineItem {
/**
* Creates a new {@link LineItem} for the given {@link Product} and amount.
*
*
* @param product must not be {@literal null}.
* @param amount
*/
@@ -56,7 +56,7 @@ public class LineItem {
/**
* Returns the id of the {@link Product} the {@link LineItem} refers to.
*
*
* @return
*/
public Long getProductId() {
@@ -65,7 +65,7 @@ public class LineItem {
/**
* Returns the amount of {@link Product}s to be ordered.
*
*
* @return
*/
public int getAmount() {
@@ -74,7 +74,7 @@ public class LineItem {
/**
* Returns the price a single unit of the {@link LineItem}'s product.
*
*
* @return the price
*/
public BigDecimal getUnitPrice() {
@@ -83,7 +83,7 @@ public class LineItem {
/**
* Returns the total for the {@link LineItem}.
*
*
* @return
*/
public BigDecimal getTotal() {

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2017 the original author or authors.
* Copyright 2012-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.
@@ -38,7 +38,7 @@ public class Order extends AbstractPersistentEntity {
/**
* Creates a new {@link Order} for the given {@link org.springframework.data.rest.tests.gemfire.Customer}.
*
*
* @param id order ID
* @param customerId must not be {@literal null}.
* @param shippingAddress must not be {@literal null}.
@@ -56,7 +56,7 @@ public class Order extends AbstractPersistentEntity {
/**
* Adds the given {@link LineItem} to the {@link Order}.
*
*
* @param lineItem
*/
public void add(LineItem lineItem) {
@@ -66,7 +66,7 @@ public class Order extends AbstractPersistentEntity {
/**
* Returns the id of the {@link org.springframework.data.rest.tests.gemfire.Customer} who placed the
* {@link Order}.
*
*
* @return
*/
public Long getCustomerId() {
@@ -75,7 +75,7 @@ public class Order extends AbstractPersistentEntity {
/**
* Returns the billing {@link Address} for this order.
*
*
* @return
*/
public Address getBillingAddress() {
@@ -84,7 +84,7 @@ public class Order extends AbstractPersistentEntity {
/**
* Returns the shipping {@link Address} for this order;
*
*
* @return
*/
public Address getShippingAddress() {
@@ -93,7 +93,7 @@ public class Order extends AbstractPersistentEntity {
/**
* Returns all {@link LineItem}s currently belonging to the {@link Order}.
*
*
* @return
*/
public Set<LineItem> getLineItems() {
@@ -102,7 +102,7 @@ public class Order extends AbstractPersistentEntity {
/**
* Returns the total of the {@link Order}.
*
*
* @return
*/
public BigDecimal getTotal() {

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2016 the original author or authors.
* Copyright 2012-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 2012-2017 the original author or authors.
* Copyright 2012-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.
@@ -26,7 +26,7 @@ import org.springframework.util.Assert;
/**
* A product.
*
*
* @author Oliver Gierke
* @author David Turanski
* @author Mark Paluch
@@ -40,7 +40,7 @@ public class Product extends AbstractPersistentEntity {
/**
* Creates a new {@link Product} with the given name.
*
*
* @param id a unique Id
* @param name must not be {@literal null} or empty.
* @param price must not be {@literal null} or less than or equal to zero.
@@ -51,7 +51,7 @@ public class Product extends AbstractPersistentEntity {
/**
* Creates a new {@link Product} from the given name and description.
*
*
* @param id a unique Id
* @param name must not be {@literal null} or empty.
* @param price must not be {@literal null} or less than or equal to zero.
@@ -72,7 +72,7 @@ public class Product extends AbstractPersistentEntity {
/**
* Sets the attribute with the given name to the given value.
*
*
* @param name must not be {@literal null} or empty.
* @param value
*/
@@ -89,7 +89,7 @@ public class Product extends AbstractPersistentEntity {
/**
* Returns the {@link Product}'s name.
*
*
* @return
*/
public String getName() {
@@ -98,7 +98,7 @@ public class Product extends AbstractPersistentEntity {
/**
* Returns the {@link Product}'s description.
*
*
* @return
*/
public String getDescription() {
@@ -107,7 +107,7 @@ public class Product extends AbstractPersistentEntity {
/**
* Returns all the custom attributes of the {@link Product}.
*
*
* @return
*/
public Map<String, String> getAttributes() {
@@ -116,7 +116,7 @@ public class Product extends AbstractPersistentEntity {
/**
* Returns the price of the {@link Product}.
*
*
* @return
*/
public BigDecimal getPrice() {

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2016 the original author or authors.
* Copyright 2012-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.repository.CrudRepository;
/**
* Repository interface to access {@link Product}s.
*
*
* @author Oliver Gierke
* @author David Turanski
*/
@@ -30,7 +30,7 @@ public interface ProductRepository extends CrudRepository<Product, Long> {
/**
* Returns a list of {@link Product}s having a description which contains the given snippet.
*
*
* @param the search string
* @return
*/
@@ -38,7 +38,7 @@ public interface ProductRepository extends CrudRepository<Product, Long> {
/**
* Returns all {@link Product}s having the given attribute value.
*
*
* @param attribute
* @param value
* @return

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2016 the original author or authors.
* Copyright 2012-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.util.AnnotatedTypeScanner;
/**
* Spring JavaConfig configuration class to setup a Spring container and infrastructure components.
*
*
* @author Oliver Gierke
* @author David Turanski
*/

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2013-2016 the original author or authors.
* Copyright 2013-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.
@@ -26,7 +26,7 @@ import org.springframework.test.context.ContextConfiguration;
@ContextConfiguration(classes = GemfireRepositoryConfig.class)
public class GemfireWebTests extends CommonWebTests {
/*
/*
* (non-Javadoc)
* @see org.springframework.data.rest.webmvc.AbstractWebIntegrationTests#expectedRootLinkRels()
*/

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 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 2013-2016 the original author or authors.
* Copyright 2013-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 2013-2016 the original author or authors.
* Copyright 2013-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.
@@ -26,7 +26,7 @@ import org.springframework.web.bind.annotation.RequestMethod;
/**
* Sample custom controller to test the ability to override
*
*
* @author Oliver Gierke
*/
@RepositoryRestController

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2013-2017 the original author or authors.
* Copyright 2013-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.
@@ -19,7 +19,7 @@ import org.springframework.data.rest.core.config.Projection;
/**
* Interface for an excerpt projection for {@link Book}s.
*
*
* @author Oliver Gierke
*/
@Projection(name = "excerpt", types = Book.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.
@@ -24,12 +24,12 @@ import org.springframework.util.StringUtils;
/**
* {@link BackendIdConverter} artificially transforming the actual book id into some magic {@link String} and back.
*
*
* @author Oliver Gierke
*/
public class BookIdConverter implements BackendIdConverter {
/*
/*
* (non-Javadoc)
* @see org.springframework.data.rest.webmvc.support.BackendIdConverter#fromRequestId(java.lang.String, java.lang.Class)
*/
@@ -38,7 +38,7 @@ public class BookIdConverter implements BackendIdConverter {
return Long.parseLong(id.substring(0, id.indexOf('-')));
}
/*
/*
* (non-Javadoc)
* @see org.springframework.data.rest.webmvc.support.BackendIdConverter#toRequestId(java.lang.Object, java.lang.Class)
*/
@@ -55,7 +55,7 @@ public class BookIdConverter implements BackendIdConverter {
return StringUtils.collectionToDelimitedString(ids, "-");
}
/*
/*
* (non-Javadoc)
* @see org.springframework.plugin.core.Plugin#supports(java.lang.Object)
*/

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2013-2016 the original author or authors.
* Copyright 2013-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 2013-2016 the original author or authors.
* Copyright 2013-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 2013-2016 the original author or authors.
* Copyright 2013-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 2012-2017 the original author or authors.
* Copyright 2012-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-2017 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-2017 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-2017 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 2013-2016 the original author or authors.
* Copyright 2013-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 2012-2017 the original author or authors.
* Copyright 2012-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 2013-2016 the original author or authors.
* Copyright 2013-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 2013-2016 the original author or authors.
* Copyright 2013-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 2012-2016 the original author or authors.
* Copyright 2012-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 com.fasterxml.jackson.annotation.JsonIgnoreProperties;
/**
* An entity that represents a person.
*
*
* @author Jon Brisbin
*/
@Entity

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2013-2016 the original author or authors.
* Copyright 2013-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 org.springframework.format.annotation.DateTimeFormat.ISO;
/**
* A repository to manage {@link Person}s.
*
*
* @author Jon Brisbin
* @author Oliver Gierke
*/

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 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 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 2012-2017 the original author or authors.
* Copyright 2012-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 2012-2017 the original author or authors.
* Copyright 2012-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-2017 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.

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2015-2017 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-2017 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.
@@ -30,7 +30,7 @@ import org.springframework.transaction.annotation.Transactional;
/**
* Integration tests for {@link RepositoryController}.
*
*
* @author Oliver Gierke
* @author Greg Turnquist
*/

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2014-2017 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.
@@ -55,7 +55,7 @@ import org.springframework.web.HttpRequestMethodNotSupportedException;
/**
* Integration tests for {@link RepositoryEntityController}.
*
*
* @author Oliver Gierke
* @author Jeremy Rickard
*/

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 2013-2017 the original author or authors.
* Copyright 2013-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.
@@ -50,7 +50,7 @@ import org.springframework.util.MultiValueMap;
/**
* Integration tests for the {@link RepositorySearchController}.
*
*
* @author Oliver Gierke
*/
@ContextConfiguration(classes = JpaRepositoryConfig.class)

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2014-2017 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 org.springframework.transaction.annotation.Transactional;
/**
* Integration tests for {@link RootResourceInformation}.
*
*
* @author Oliver Gierke
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2014-2017 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.
@@ -52,7 +52,7 @@ import com.jayway.jsonpath.JsonPath;
/**
* Integration tests for {@link AlpsController}.
*
*
* @author Oliver Gierke
* @author Greg Turnquist
*/

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2016-2017 original author or authors.
* Copyright 2016-2018 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.
@@ -39,7 +39,7 @@ import org.springframework.web.bind.annotation.RequestMethod;
/**
* Web integration tests specific to Cross-origin resource sharing.
*
*
* @author Mark Paluch
* @soundtrack 2 Unlimited - No Limit
*/

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2014-2017 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.
@@ -52,7 +52,7 @@ import com.jayway.jsonpath.JsonPath;
/**
* Integration tests for DATAREST-262, checking serialization and deserialization of associations within embeddables.
*
*
* @author Oliver Gierke
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2015-2017 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.
@@ -43,7 +43,7 @@ import org.springframework.web.context.WebApplicationContext;
/**
* Integration tests for DATAREST-363.
*
*
* @author Greg Turnquist
* @author Oliver Gierke
*/

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2016-2017 original author or authors.
* Copyright 2016-2018 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.
@@ -47,7 +47,7 @@ import org.springframework.web.bind.annotation.ResponseBody;
/**
* Web integration tests specific to default {@link Pageable} handling.
*
*
* @author Mark Paluch
*/
@RunWith(SpringJUnit4ClassRunner.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.

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2016 the original author or authors.
* Copyright 2012-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 org.springframework.web.bind.annotation.RequestMethod;
/**
* Test configuration for JPA.
*
*
* @author Jon Brisbin
* @author Oliver Gierke
* @author Mark Paluch

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2013-2017 the original author or authors.
* Copyright 2013-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.
@@ -56,7 +56,7 @@ import com.jayway.jsonpath.JsonPath;
/**
* Web integration tests specific to JPA.
*
*
* @author Oliver Gierke
* @author Greg Turnquist
* @author Mark Paluch
@@ -74,7 +74,7 @@ public class JpaWebTests extends CommonWebTests {
ObjectMapper mapper = new ObjectMapper();
/*
/*
* (non-Javadoc)
* @see org.springframework.data.rest.webmvc.AbstractWebIntegrationTests#setUp()
*/
@@ -85,7 +85,7 @@ public class JpaWebTests extends CommonWebTests {
super.setUp();
}
/*
/*
* (non-Javadoc)
* @see org.springframework.data.rest.webmvc.AbstractWebIntegrationTests#expectedRootLinkRels()
*/
@@ -94,7 +94,7 @@ public class JpaWebTests extends CommonWebTests {
return Arrays.asList("people", "authors", "books");
}
/*
/*
* (non-Javadoc)
* @see org.springframework.data.rest.webmvc.AbstractWebIntegrationTests#getPayloadToPost()
*/
@@ -103,7 +103,7 @@ public class JpaWebTests extends CommonWebTests {
return Collections.singletonMap("people", readFileFromClasspath("person.json"));
}
/*
/*
* (non-Javadoc)
* @see org.springframework.data.rest.webmvc.AbstractWebIntegrationTests#getRootAndLinkedResources()
*/
@@ -399,7 +399,7 @@ public class JpaWebTests extends CommonWebTests {
/**
* Checks, that the server only returns the properties contained in the projection requested.
*
*
* @see OrderSummary
*/
@Test // DATAREST-221
@@ -674,7 +674,7 @@ public class JpaWebTests extends CommonWebTests {
/**
* Asserts the {@link Person} resource the given link points to contains siblings with the given names.
*
*
* @param link
* @param siblingNames
* @throws Exception

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2015-2017 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 2013-2017 the original author or authors.
* Copyright 2013-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 2016-2017 original author or authors.
* Copyright 2016-2018 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 2016-2017 original author or authors.
* Copyright 2016-2018 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-2017 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.
@@ -41,7 +41,7 @@ import com.fasterxml.jackson.databind.ObjectMapper;
/**
* Integration tests for {@link Jackson2DatatypeHelper}.
*
*
* @author Oliver Gierke
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2017 the original author or authors.
* Copyright 2012-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.
@@ -72,7 +72,7 @@ import com.jayway.jsonpath.JsonPath;
/**
* Integration tests for entity (de)serialization.
*
*
* @author Jon Brisbin
* @author Greg Turnquist
* @author Oliver Gierke

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2016 the original author or authors.
* Copyright 2012-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-2017 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.
@@ -34,7 +34,7 @@ import org.springframework.web.context.request.ServletWebRequest;
/**
* Integration tests for {@link BackendIdHandlerMethodArgumentResolver}.
*
*
* @author Oliver Gierke
*/
@ContextConfiguration(classes = JpaRepositoryConfig.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.
@@ -36,7 +36,7 @@ import org.springframework.web.bind.annotation.ExceptionHandler;
/**
* Integration tests for customization of Spring Data REST's exception handling.
*
*
* @author Thibaud Lepretre
* @author Oliver Gierke
*/

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2014-2017 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.
@@ -38,7 +38,7 @@ import org.springframework.web.util.UriComponentsBuilder;
/**
* Integration tests for {@link RepositoryEntityLinks}.
*
*
* @author Oliver Gierke
*/
@ContextConfiguration(classes = JpaRepositoryConfig.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.
@@ -23,7 +23,7 @@ import org.springframework.data.rest.webmvc.jpa.JpaWebTests;
/**
* Test helper methods.
*
*
* @author Oliver Gierke
* @author Christoph Strobl
*/

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2013-2016 the original author or authors.
* Copyright 2013-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 2012-2016 the original author or authors.
* Copyright 2012-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 2012-2017 the original author or authors.
* Copyright 2012-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 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 2013-2016 the original author or authors.
* Copyright 2013-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 2013-2016 the original author or authors.
* Copyright 2013-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 2016-2017 original author or authors.
* Copyright 2016-2018 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 2016-2017 the original author or authors.
* Copyright 2016-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 2012-2016 the original author or authors.
* Copyright 2012-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.mongodb.MongoClient;
@EnableMongoAuditing
public class MongoDbRepositoryConfig extends AbstractMongoConfiguration {
/*
/*
* (non-Javadoc)
* @see org.springframework.data.mongodb.config.AbstractMongoConfiguration#getDatabaseName()
*/
@@ -40,7 +40,7 @@ public class MongoDbRepositoryConfig extends AbstractMongoConfiguration {
return "spring-data-rest-sample";
}
/*
/*
* (non-Javadoc)
* @see org.springframework.data.mongodb.config.AbstractMongoConfiguration#getMappingBasePackage()
*/
@@ -49,7 +49,7 @@ public class MongoDbRepositoryConfig extends AbstractMongoConfiguration {
return "";
}
/*
/*
* (non-Javadoc)
* @see org.springframework.data.mongodb.config.AbstractMongoConfiguration#mongo()
*/

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2013-2017 the original author or authors.
* Copyright 2013-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.
@@ -45,7 +45,7 @@ import com.jayway.jsonpath.JsonPath;
/**
* Integration tests for MongoDB repositories.
*
*
* @author Oliver Gierke
* @author Greg Turnquist
*/
@@ -101,7 +101,7 @@ public class MongoWebTests extends CommonWebTests {
userRepository.deleteAll();
}
/*
/*
* (non-Javadoc)
* @see org.springframework.data.rest.webmvc.AbstractWebIntegrationTests#expectedRootLinkRels()
*/

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.
@@ -23,7 +23,7 @@ import org.springframework.util.Assert;
/**
* Test helper methods.
*
*
* @author Oliver Gierke
* @author Christoph Strobl
*/
@@ -33,7 +33,7 @@ public class TestUtils {
/**
* Returns the given {@link String} as {@link InputStream}.
*
*
* @param source must not be {@literal null}.
* @return
*/

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2015-2017 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.
@@ -43,7 +43,7 @@ import com.fasterxml.jackson.databind.ObjectMapper;
/**
* Integration tests for {@link PersistentEntityResourceAssembler}.
*
*
* @author Oliver Gierke
*/
@ContextConfiguration(classes = { TestConfiguration.class, MongoDbRepositoryConfig.class })

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2015-2017 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.
@@ -29,7 +29,7 @@ import org.springframework.web.servlet.HandlerExecutionChain;
/**
* Integration tests for {@link BasePathAwareHandlerMapping}.
*
*
* @author Oliver Gierke
* @soundtrack Elephants Crossing - Echo (Irrelephant)
*/

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2013-2016 the original author or authors.
* Copyright 2013-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.
@@ -26,7 +26,7 @@ import org.springframework.web.context.WebApplicationContext;
/**
* Base class for integration tests that are run against a particular configuration defined by the subclass.
*
*
* @author Oliver Gierke
*/
@RunWith(SpringJUnit4ClassRunner.class)

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2014-2017 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.
@@ -44,7 +44,7 @@ import com.fasterxml.jackson.databind.ObjectMapper;
/**
* Unit tests for {@link JsonPatchHandler}.
*
*
* @author Oliver Gierke
*/
@RunWith(MockitoJUnitRunner.class)

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2013-2017 the original author or authors.
* Copyright 2013-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 org.springframework.test.context.ContextConfiguration;
/**
* Integration tests to check the legacy representation is rendered if HAL is not the default media type.
*
*
* @author Oliver Gierke
*/
@ContextConfiguration

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2015-2017 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.
@@ -51,7 +51,7 @@ import com.querydsl.core.types.Predicate;
/**
* Unit tests for {@link QuerydslAwareRootResourceInformationHandlerMethodArgumentResolver}.
*
*
* @author Oliver Gierke
*/
@RunWith(MockitoJUnitRunner.class)

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2012-2017 the original author or authors.
* Copyright 2012-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.
@@ -57,7 +57,7 @@ import com.jayway.jsonpath.JsonPath;
/**
* Integration tests for entity (de)serialization.
*
*
* @author Jon Brisbin
* @author Greg Turnquist
* @author Oliver Gierke

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2014-2017 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 2014-2017 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 org.springframework.hateoas.Link;
/**
* Unit tests for {@link RepositoryLinkBuilder}.
*
*
* @author Oliver Gierke
*/
public class RepositoryLinkBuildUnitTests {

View File

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

Some files were not shown because too many files have changed in this diff Show More