Skip to content

Commit 8a334e9

Browse files
author
quilicicf
committed
📐 Add copyright notice
1 parent b2dd964 commit 8a334e9

31 files changed

Lines changed: 270 additions & 246 deletions

modules/org.restlet.tutorial.webapi/src/main/java/org/restlet/tutorial/WebApiTutorial.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
/**
2-
* Copyright 2005-2015 Restlet
3-
*
1+
/*
2+
* Copyright 2005-2017 Restlet
3+
*
44
* The contents of this file are subject to the terms of one of the following
55
* open source licenses: Apache 2.0 or or EPL 1.0 (the "Licenses"). You can
66
* select the license that you prefer but you may not use this file except in
77
* compliance with one of these Licenses.
8-
*
8+
*
99
* You can obtain a copy of the Apache 2.0 license at
1010
* http://www.opensource.org/licenses/apache-2.0
11-
*
11+
*
1212
* You can obtain a copy of the EPL 1.0 license at
1313
* http://www.opensource.org/licenses/eclipse-1.0
14-
*
14+
*
1515
* See the Licenses for the specific language governing permissions and
1616
* limitations under the Licenses.
17-
*
17+
*
1818
* Alternatively, you can obtain a royalty free commercial license with less
1919
* limitations, transferable or non-transferable, directly at
2020
* http://restlet.com/products/restlet-framework
21-
*
21+
*
2222
* Restlet is a registered trademark of Restlet S.A.S.
2323
*/
2424

modules/org.restlet.tutorial.webapi/src/main/java/org/restlet/tutorial/core/exception/BadEntityException.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
/**
2-
* Copyright 2005-2015 Restlet
3-
*
1+
/*
2+
* Copyright 2005-2017 Restlet
3+
*
44
* The contents of this file are subject to the terms of one of the following
55
* open source licenses: Apache 2.0 or or EPL 1.0 (the "Licenses"). You can
66
* select the license that you prefer but you may not use this file except in
77
* compliance with one of these Licenses.
8-
*
8+
*
99
* You can obtain a copy of the Apache 2.0 license at
1010
* http://www.opensource.org/licenses/apache-2.0
11-
*
11+
*
1212
* You can obtain a copy of the EPL 1.0 license at
1313
* http://www.opensource.org/licenses/eclipse-1.0
14-
*
14+
*
1515
* See the Licenses for the specific language governing permissions and
1616
* limitations under the Licenses.
17-
*
17+
*
1818
* Alternatively, you can obtain a royalty free commercial license with less
1919
* limitations, transferable or non-transferable, directly at
2020
* http://restlet.com/products/restlet-framework
21-
*
21+
*
2222
* Restlet is a registered trademark of Restlet S.A.S.
2323
*/
2424

modules/org.restlet.tutorial.webapi/src/main/java/org/restlet/tutorial/core/exception/BadParameterException.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
/**
2-
* Copyright 2005-2015 Restlet
3-
*
1+
/*
2+
* Copyright 2005-2017 Restlet
3+
*
44
* The contents of this file are subject to the terms of one of the following
55
* open source licenses: Apache 2.0 or or EPL 1.0 (the "Licenses"). You can
66
* select the license that you prefer but you may not use this file except in
77
* compliance with one of these Licenses.
8-
*
8+
*
99
* You can obtain a copy of the Apache 2.0 license at
1010
* http://www.opensource.org/licenses/apache-2.0
11-
*
11+
*
1212
* You can obtain a copy of the EPL 1.0 license at
1313
* http://www.opensource.org/licenses/eclipse-1.0
14-
*
14+
*
1515
* See the Licenses for the specific language governing permissions and
1616
* limitations under the Licenses.
17-
*
17+
*
1818
* Alternatively, you can obtain a royalty free commercial license with less
1919
* limitations, transferable or non-transferable, directly at
2020
* http://restlet.com/products/restlet-framework
21-
*
21+
*
2222
* Restlet is a registered trademark of Restlet S.A.S.
2323
*/
2424

modules/org.restlet.tutorial.webapi/src/main/java/org/restlet/tutorial/core/exception/BusinessException.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
/**
2-
* Copyright 2005-2015 Restlet
3-
*
1+
/*
2+
* Copyright 2005-2017 Restlet
3+
*
44
* The contents of this file are subject to the terms of one of the following
55
* open source licenses: Apache 2.0 or or EPL 1.0 (the "Licenses"). You can
66
* select the license that you prefer but you may not use this file except in
77
* compliance with one of these Licenses.
8-
*
8+
*
99
* You can obtain a copy of the Apache 2.0 license at
1010
* http://www.opensource.org/licenses/apache-2.0
11-
*
11+
*
1212
* You can obtain a copy of the EPL 1.0 license at
1313
* http://www.opensource.org/licenses/eclipse-1.0
14-
*
14+
*
1515
* See the Licenses for the specific language governing permissions and
1616
* limitations under the Licenses.
17-
*
17+
*
1818
* Alternatively, you can obtain a royalty free commercial license with less
1919
* limitations, transferable or non-transferable, directly at
2020
* http://restlet.com/products/restlet-framework
21-
*
21+
*
2222
* Restlet is a registered trademark of Restlet S.A.S.
2323
*/
2424

@@ -61,4 +61,4 @@ public BusinessException(int status, String message, Throwable cause) {
6161
public int getStatus() {
6262
return status;
6363
}
64-
}
64+
}

modules/org.restlet.tutorial.webapi/src/main/java/org/restlet/tutorial/core/exception/NotFoundException.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
/**
2-
* Copyright 2005-2015 Restlet
3-
*
1+
/*
2+
* Copyright 2005-2017 Restlet
3+
*
44
* The contents of this file are subject to the terms of one of the following
55
* open source licenses: Apache 2.0 or or EPL 1.0 (the "Licenses"). You can
66
* select the license that you prefer but you may not use this file except in
77
* compliance with one of these Licenses.
8-
*
8+
*
99
* You can obtain a copy of the Apache 2.0 license at
1010
* http://www.opensource.org/licenses/apache-2.0
11-
*
11+
*
1212
* You can obtain a copy of the EPL 1.0 license at
1313
* http://www.opensource.org/licenses/eclipse-1.0
14-
*
14+
*
1515
* See the Licenses for the specific language governing permissions and
1616
* limitations under the Licenses.
17-
*
17+
*
1818
* Alternatively, you can obtain a royalty free commercial license with less
1919
* limitations, transferable or non-transferable, directly at
2020
* http://restlet.com/products/restlet-framework
21-
*
21+
*
2222
* Restlet is a registered trademark of Restlet S.A.S.
2323
*/
2424

modules/org.restlet.tutorial.webapi/src/main/java/org/restlet/tutorial/core/util/ResourceUtils.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
/**
2-
* Copyright 2005-2015 Restlet
3-
*
1+
/*
2+
* Copyright 2005-2017 Restlet
3+
*
44
* The contents of this file are subject to the terms of one of the following
55
* open source licenses: Apache 2.0 or or EPL 1.0 (the "Licenses"). You can
66
* select the license that you prefer but you may not use this file except in
77
* compliance with one of these Licenses.
8-
*
8+
*
99
* You can obtain a copy of the Apache 2.0 license at
1010
* http://www.opensource.org/licenses/apache-2.0
11-
*
11+
*
1212
* You can obtain a copy of the EPL 1.0 license at
1313
* http://www.opensource.org/licenses/eclipse-1.0
14-
*
14+
*
1515
* See the Licenses for the specific language governing permissions and
1616
* limitations under the Licenses.
17-
*
17+
*
1818
* Alternatively, you can obtain a royalty free commercial license with less
1919
* limitations, transferable or non-transferable, directly at
2020
* http://restlet.com/products/restlet-framework
21-
*
21+
*
2222
* Restlet is a registered trademark of Restlet S.A.S.
2323
*/
2424

modules/org.restlet.tutorial.webapi/src/main/java/org/restlet/tutorial/core/validation/FieldError.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
/**
2-
* Copyright 2005-2015 Restlet
3-
*
1+
/*
2+
* Copyright 2005-2017 Restlet
3+
*
44
* The contents of this file are subject to the terms of one of the following
55
* open source licenses: Apache 2.0 or or EPL 1.0 (the "Licenses"). You can
66
* select the license that you prefer but you may not use this file except in
77
* compliance with one of these Licenses.
8-
*
8+
*
99
* You can obtain a copy of the Apache 2.0 license at
1010
* http://www.opensource.org/licenses/apache-2.0
11-
*
11+
*
1212
* You can obtain a copy of the EPL 1.0 license at
1313
* http://www.opensource.org/licenses/eclipse-1.0
14-
*
14+
*
1515
* See the Licenses for the specific language governing permissions and
1616
* limitations under the Licenses.
17-
*
17+
*
1818
* Alternatively, you can obtain a royalty free commercial license with less
1919
* limitations, transferable or non-transferable, directly at
2020
* http://restlet.com/products/restlet-framework
21-
*
21+
*
2222
* Restlet is a registered trademark of Restlet S.A.S.
2323
*/
2424

modules/org.restlet.tutorial.webapi/src/main/java/org/restlet/tutorial/core/validation/ValidationErrors.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
/**
2-
* Copyright 2005-2015 Restlet
3-
*
1+
/*
2+
* Copyright 2005-2017 Restlet
3+
*
44
* The contents of this file are subject to the terms of one of the following
55
* open source licenses: Apache 2.0 or or EPL 1.0 (the "Licenses"). You can
66
* select the license that you prefer but you may not use this file except in
77
* compliance with one of these Licenses.
8-
*
8+
*
99
* You can obtain a copy of the Apache 2.0 license at
1010
* http://www.opensource.org/licenses/apache-2.0
11-
*
11+
*
1212
* You can obtain a copy of the EPL 1.0 license at
1313
* http://www.opensource.org/licenses/eclipse-1.0
14-
*
14+
*
1515
* See the Licenses for the specific language governing permissions and
1616
* limitations under the Licenses.
17-
*
17+
*
1818
* Alternatively, you can obtain a royalty free commercial license with less
1919
* limitations, transferable or non-transferable, directly at
2020
* http://restlet.com/products/restlet-framework
21-
*
21+
*
2222
* Restlet is a registered trademark of Restlet S.A.S.
2323
*/
2424

modules/org.restlet.tutorial.webapi/src/main/java/org/restlet/tutorial/persistence/CompanyPersistence.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
/**
2-
* Copyright 2005-2015 Restlet
3-
*
1+
/*
2+
* Copyright 2005-2017 Restlet
3+
*
44
* The contents of this file are subject to the terms of one of the following
55
* open source licenses: Apache 2.0 or or EPL 1.0 (the "Licenses"). You can
66
* select the license that you prefer but you may not use this file except in
77
* compliance with one of these Licenses.
8-
*
8+
*
99
* You can obtain a copy of the Apache 2.0 license at
1010
* http://www.opensource.org/licenses/apache-2.0
11-
*
11+
*
1212
* You can obtain a copy of the EPL 1.0 license at
1313
* http://www.opensource.org/licenses/eclipse-1.0
14-
*
14+
*
1515
* See the Licenses for the specific language governing permissions and
1616
* limitations under the Licenses.
17-
*
17+
*
1818
* Alternatively, you can obtain a royalty free commercial license with less
1919
* limitations, transferable or non-transferable, directly at
2020
* http://restlet.com/products/restlet-framework
21-
*
21+
*
2222
* Restlet is a registered trademark of Restlet S.A.S.
2323
*/
2424

modules/org.restlet.tutorial.webapi/src/main/java/org/restlet/tutorial/persistence/ContactPersistence.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
/**
2-
* Copyright 2005-2015 Restlet
3-
*
1+
/*
2+
* Copyright 2005-2017 Restlet
3+
*
44
* The contents of this file are subject to the terms of one of the following
55
* open source licenses: Apache 2.0 or or EPL 1.0 (the "Licenses"). You can
66
* select the license that you prefer but you may not use this file except in
77
* compliance with one of these Licenses.
8-
*
8+
*
99
* You can obtain a copy of the Apache 2.0 license at
1010
* http://www.opensource.org/licenses/apache-2.0
11-
*
11+
*
1212
* You can obtain a copy of the EPL 1.0 license at
1313
* http://www.opensource.org/licenses/eclipse-1.0
14-
*
14+
*
1515
* See the Licenses for the specific language governing permissions and
1616
* limitations under the Licenses.
17-
*
17+
*
1818
* Alternatively, you can obtain a royalty free commercial license with less
1919
* limitations, transferable or non-transferable, directly at
2020
* http://restlet.com/products/restlet-framework
21-
*
21+
*
2222
* Restlet is a registered trademark of Restlet S.A.S.
2323
*/
2424

0 commit comments

Comments
 (0)