Update copyright headers in IdGenerators

master
Sam Brannen 10 years ago
parent 52b8f34468
commit e97712b95b
  1. 2
      spring-core/src/main/java/org/springframework/util/AlternativeJdkIdGenerator.java
  2. 4
      spring-core/src/main/java/org/springframework/util/IdGenerator.java
  3. 5
      spring-core/src/main/java/org/springframework/util/JdkIdGenerator.java
  4. 5
      spring-core/src/main/java/org/springframework/util/SimpleIdGenerator.java

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

@ -1,5 +1,5 @@
/*
* Copyright 2002-2013 the original author or authors.
* Copyright 2002-2015 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 @@ package org.springframework.util;
import java.util.UUID;
/**
* Contract for generating {@link UUID} identifiers.
* Contract for generating universally unique identifiers {@link UUID (UUIDs)}.
*
* @author Rossen Stoyanchev
* @since 4.0

@ -1,5 +1,5 @@
/*
* Copyright 2002-2013 the original author or authors.
* Copyright 2002-2015 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,8 @@ package org.springframework.util;
import java.util.UUID;
/**
* An IdGenerator that calls {@link java.util.UUID#randomUUID()}.
* An {@link org.springframework.util.IdGenerator IdGenerator} that calls
* {@link java.util.UUID#randomUUID()}.
*
* @author Rossen Stoyanchev
* @since 4.2

@ -1,5 +1,5 @@
/*
* Copyright 2002-2013 the original author or authors.
* Copyright 2002-2015 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,8 @@ import java.util.UUID;
import java.util.concurrent.atomic.AtomicLong;
/**
* An simple IdGenerator that starts at 1 and increments by 1 with each call.
* A simple {@link org.springframework.util.IdGenerator IdGenerator} that
* starts at 1 and increments by 1 with each call.
*
* @author Rossen Stoyanchev
* @since 4.2

Loading…
Cancel
Save