Skip to content

Commit 118e800

Browse files
committed
Update Copyright's year (DBACLD-125376)
1 parent b05f77d commit 118e800

File tree

5 files changed

+30
-30
lines changed

5 files changed

+30
-30
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,6 @@ For issues specifically related to this tutorial, please use the [GitHub issue
4343

4444
## Licensing information
4545

46-
Copyright IBM Corp. 1987, 2023. Licensed to the Apache Software Foundation \(ASF\) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 \(the "License"\); you may not use this file except in compliance with the License. You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0). Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
46+
Copyright IBM Corp. 1987, 2024. Licensed to the Apache Software Foundation \(ASF\) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 \(the "License"\); you may not use this file except in compliance with the License. You may obtain a copy of the License at [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0). Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
4747

4848
[**Next** ![Next icon](doc/images/next.jpg)](doc/topics/tut_icp_gs_int.md)

doc/rule-projects/miniloan-xom/src/miniloan/Borrower.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
/*
2-
* Copyright IBM Corp. 1987, 2023
3-
*
2+
* Copyright IBM Corp. 1987, 2024
3+
*
44
* Licensed to the Apache Software Foundation (ASF) under one
55
* or more contributor license agreements. See the NOTICE file
66
* distributed with this work for additional information
77
* regarding copyright ownership. The ASF licenses this file
88
* to you under the Apache License, Version 2.0 (the
99
* "License"); you may not use this file except in compliance
1010
* with the License. You may obtain a copy of the License at
11-
*
11+
*
1212
* http://www.apache.org/licenses/LICENSE-2.0
13-
*
13+
*
1414
* Unless required by applicable law or agreed to in writing,
1515
* software distributed under the License is distributed on an
1616
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1717
* KIND, either express or implied. See the License for the
1818
* specific language governing permissions and limitations
1919
* under the License.
20-
*
20+
*
2121
**/
2222

2323
package miniloan;
@@ -35,11 +35,11 @@
3535
*/
3636
@XmlAccessorType(XmlAccessType.FIELD)
3737
public class Borrower {
38-
@XmlElement
38+
@XmlElement
3939
private String name;
40-
@XmlElement
40+
@XmlElement
4141
private int creditScore;
42-
@XmlElement
42+
@XmlElement
4343
private int yearlyIncome;
4444

4545
public Borrower() {
@@ -52,7 +52,7 @@ public Borrower() {
5252
* @param creditScore The credit score of the borrower.
5353
* @param yearlyIncome The yearly income of the borrower.
5454
*/
55-
public Borrower(@BusinessName("name") String name,@BusinessName("creditScore") int creditScore,
55+
public Borrower(@BusinessName("name") String name,@BusinessName("creditScore") int creditScore,
5656
@BusinessName("yearlyIncome") int yearlyIncome) {
5757
this();
5858
this.name = name;

doc/rule-projects/miniloan-xom/src/miniloan/Loan.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
/*
2-
* Copyright IBM Corp. 1987, 2023
3-
*
2+
* Copyright IBM Corp. 1987, 2024
3+
*
44
* Licensed to the Apache Software Foundation (ASF) under one
55
* or more contributor license agreements. See the NOTICE file
66
* distributed with this work for additional information
77
* regarding copyright ownership. The ASF licenses this file
88
* to you under the Apache License, Version 2.0 (the
99
* "License"); you may not use this file except in compliance
1010
* with the License. You may obtain a copy of the License at
11-
*
11+
*
1212
* http://www.apache.org/licenses/LICENSE-2.0
13-
*
13+
*
1414
* Unless required by applicable law or agreed to in writing,
1515
* software distributed under the License is distributed on an
1616
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1717
* KIND, either express or implied. See the License for the
1818
* specific language governing permissions and limitations
1919
* under the License.
20-
*
20+
*
2121
**/
2222

2323
package miniloan;
@@ -43,9 +43,9 @@
4343
*/
4444
@XmlAccessorType(XmlAccessType.FIELD)
4545
public class Loan {
46-
@XmlElement
46+
@XmlElement
4747
private int amount;
48-
@XmlElement
48+
@XmlElement
4949
private int duration;
5050
private double yearlyInterestRate;
5151
private int yearlyRepayment;
@@ -70,7 +70,7 @@ public Loan() {
7070
// property to tell in the BOM that this is the constructor for DVS
7171
@CustomProperty(name = "dataio.default",
7272
value = "true")
73-
public Loan(@BusinessName("amount") int amount,@BusinessName("duration") int duration,
73+
public Loan(@BusinessName("amount") int amount,@BusinessName("duration") int duration,
7474
@BusinessName("yearlyInterestRate") double yearlyInterestRate) {
7575
this();
7676
this.amount = amount;
@@ -128,7 +128,7 @@ public int getDuration() {
128128
/**
129129
* Sets the duration of the loan.
130130
* @param d The duration to set.
131-
*/
131+
*/
132132
public void setDuration(int d) {
133133
duration = d;
134134
}

miniloan-xom/src/miniloan/Borrower.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
/*
2-
* Copyright IBM Corp. 1987, 2023
3-
*
2+
* Copyright IBM Corp. 1987, 2024
3+
*
44
* Licensed to the Apache Software Foundation (ASF) under one
55
* or more contributor license agreements. See the NOTICE file
66
* distributed with this work for additional information
77
* regarding copyright ownership. The ASF licenses this file
88
* to you under the Apache License, Version 2.0 (the
99
* "License"); you may not use this file except in compliance
1010
* with the License. You may obtain a copy of the License at
11-
*
11+
*
1212
* http://www.apache.org/licenses/LICENSE-2.0
13-
*
13+
*
1414
* Unless required by applicable law or agreed to in writing,
1515
* software distributed under the License is distributed on an
1616
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1717
* KIND, either express or implied. See the License for the
1818
* specific language governing permissions and limitations
1919
* under the License.
20-
*
20+
*
2121
**/
2222

2323
package miniloan;

miniloan-xom/src/miniloan/Loan.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
/*
2-
* Copyright IBM Corp. 1987, 2023
3-
*
2+
* Copyright IBM Corp. 1987, 2024
3+
*
44
* Licensed to the Apache Software Foundation (ASF) under one
55
* or more contributor license agreements. See the NOTICE file
66
* distributed with this work for additional information
77
* regarding copyright ownership. The ASF licenses this file
88
* to you under the Apache License, Version 2.0 (the
99
* "License"); you may not use this file except in compliance
1010
* with the License. You may obtain a copy of the License at
11-
*
11+
*
1212
* http://www.apache.org/licenses/LICENSE-2.0
13-
*
13+
*
1414
* Unless required by applicable law or agreed to in writing,
1515
* software distributed under the License is distributed on an
1616
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1717
* KIND, either express or implied. See the License for the
1818
* specific language governing permissions and limitations
1919
* under the License.
20-
*
20+
*
2121
**/
2222

2323
package miniloan;
@@ -112,7 +112,7 @@ public int getDuration() {
112112
/**
113113
* Sets the duration of the loan.
114114
* @param d The duration to set.
115-
*/
115+
*/
116116
public void setDuration(int d) {
117117
duration = d;
118118
}

0 commit comments

Comments
 (0)