Skip to content

Commit 1d2898b

Browse files
committed
Fixed copyright headers and texts
1 parent e816fcc commit 1d2898b

File tree

147 files changed

+298
-191
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

147 files changed

+298
-191
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
Copyright 2010-2013 The MyBatis Team
3+
Copyright 2010-2013 the original author or authors.
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

src/changes/changes.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
Copyright 2010-2013 The myBatis Team
3+
Copyright 2010-2013 the original author or authors.
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

src/main/java/org/mybatis/spring/MyBatisExceptionTranslator.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2010-2013 The MyBatis Team
2+
* Copyright 2010-2013 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -33,6 +33,8 @@
3333
* Can load {@code SQLExceptionTranslator} eagerly of when the
3434
* first exception is translated.
3535
*
36+
* @author Eduardo Macarron
37+
*
3638
* @version $Id$
3739
*/
3840
public class MyBatisExceptionTranslator implements PersistenceExceptionTranslator {

src/main/java/org/mybatis/spring/MyBatisSystemException.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2010-2012 The MyBatis Team
2+
* Copyright 2010-2012 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -25,6 +25,8 @@
2525
* but using this wrapper class to bring everything under a single hierarchy will be easier for client code to
2626
* handle.
2727
*
28+
* @author Hunter Presnall
29+
*
2830
* @version $Id$
2931
*/
3032
public class MyBatisSystemException extends UncategorizedDataAccessException {

src/main/java/org/mybatis/spring/SqlSessionFactoryBean.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2010-2013 The MyBatis Team
2+
* Copyright 2010-2013 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -62,6 +62,10 @@
6262
* demarcation in combination with a {@code SqlSessionFactory}. JTA should be used for transactions
6363
* which span multiple databases or when container managed transactions (CMT) are being used.
6464
*
65+
* @author Putthibong Boonbong
66+
* @author Hunter Presnall
67+
* @author Eduardo Macarron
68+
*
6569
* @see #setConfigLocation
6670
* @see #setDataSource
6771
* @version $Id$

src/main/java/org/mybatis/spring/SqlSessionHolder.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2010-2012 The MyBatis Team
2+
* Copyright 2010-2012 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -28,6 +28,9 @@
2828
* {@code ExecutorType} is also kept to be able to check if the user is trying to change it
2929
* during a TX (that is not allowed) and throw a Exception in that case.
3030
*
31+
* @author Hunter Presnall
32+
* @author Eduardo Macarron
33+
*
3134
* @version $Id$
3235
*/
3336
public final class SqlSessionHolder extends ResourceHolderSupport {

src/main/java/org/mybatis/spring/SqlSessionTemplate.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2010-2013 The MyBatis Team
2+
* Copyright 2010-2013 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -65,6 +65,10 @@
6565
* }
6666
* </pre>
6767
*
68+
* @author Putthibong Boonbong
69+
* @author Hunter Presnall
70+
* @author Eduardo Macarron
71+
*
6872
* @see SqlSessionFactory
6973
* @see MyBatisExceptionTranslator
7074
* @version $Id$

src/main/java/org/mybatis/spring/SqlSessionUtils.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2010-2012 The MyBatis Team
2+
* Copyright 2010-2012 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -41,6 +41,9 @@
4141
* Handles MyBatis SqlSession life cycle. It can register and get SqlSessions from
4242
* Spring {@code TransactionSynchronizationManager}. Also works if no transaction is active.
4343
*
44+
* @author Hunter Presnall
45+
* @author Eduardo Macarron
46+
*
4447
* @version $Id$
4548
*/
4649
public final class SqlSessionUtils {

src/main/java/org/mybatis/spring/annotation/MapperScan.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2010-2013 The MyBatis Team
2+
* Copyright 2010-2013 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -59,6 +59,9 @@
5959
* }
6060
* </pre>
6161
*
62+
* @author Michael Lanyon
63+
* @author Eduardo Macarron
64+
*
6265
* @since 1.2.0
6366
* @see MapperScannerRegistrar
6467
* @see MapperFactoryBean

src/main/java/org/mybatis/spring/annotation/MapperScannerRegistrar.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2010-2013 The MyBatis Team
2+
* Copyright 2010-2013 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -38,6 +38,9 @@
3838
* registered via @Component configuration, whereas implementing
3939
* {@code BeanDefinitionRegistryPostProcessor} will work for XML configuration.
4040
*
41+
* @author Michael Lanyon
42+
* @author Eduardo Macarron
43+
*
4144
* @see MapperFactoryBean
4245
* @see ClassPathMapperScanner
4346
* @since 1.2.0

0 commit comments

Comments
 (0)