Skip to content
This repository was archived by the owner on Jan 18, 2024. It is now read-only.

Commit c5d5f21

Browse files
Updated license doc
1 parent 8960d84 commit c5d5f21

11 files changed

+131
-181
lines changed

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
<maven.compiler.target>${javaVersion}</maven.compiler.target>
4949

5050
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
51-
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>>
51+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
5252
</properties>
5353

5454
<repositories>

src/main/java/xdev/db/db2/jdbc/DB2ConnectionInformation.java

+13-18
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,21 @@
1-
package xdev.db.db2.jdbc;
2-
3-
/*-
4-
* #%L
5-
* DB2
6-
* %%
7-
* Copyright (C) 2003 - 2022 XDEV Software
8-
* %%
1+
/*
2+
* SqlEngine Database Adapter DB2 - XAPI SqlEngine Database Adapter for DB2
3+
* Copyright © 2003 XDEV Software (https://xdev.software)
4+
*
95
* This program is free software: you can redistribute it and/or modify
10-
* it under the terms of the GNU Lesser General Public License as
11-
* published by the Free Software Foundation, either version 3 of the
12-
* License, or (at your option) any later version.
13-
*
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
1410
* This program is distributed in the hope that it will be useful,
1511
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1612
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17-
* GNU General Lesser Public License for more details.
18-
*
19-
* You should have received a copy of the GNU General Lesser Public
20-
* License along with this program. If not, see
21-
* <http://www.gnu.org/licenses/lgpl-3.0.html>.
22-
* #L%
13+
* GNU Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2317
*/
18+
package xdev.db.db2.jdbc;
2419

2520
import com.xdev.jadoth.sqlengine.dbms.DbmsConnectionInformation;
2621
import xdev.db.ConnectionInformation;

src/main/java/xdev/db/db2/jdbc/DB2DDLMapper.java

+13-18
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,21 @@
1-
package xdev.db.db2.jdbc;
2-
3-
/*-
4-
* #%L
5-
* DB2
6-
* %%
7-
* Copyright (C) 2003 - 2022 XDEV Software
8-
* %%
1+
/*
2+
* SqlEngine Database Adapter DB2 - XAPI SqlEngine Database Adapter for DB2
3+
* Copyright © 2003 XDEV Software (https://xdev.software)
4+
*
95
* This program is free software: you can redistribute it and/or modify
10-
* it under the terms of the GNU Lesser General Public License as
11-
* published by the Free Software Foundation, either version 3 of the
12-
* License, or (at your option) any later version.
13-
*
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
1410
* This program is distributed in the hope that it will be useful,
1511
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1612
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17-
* GNU General Lesser Public License for more details.
18-
*
19-
* You should have received a copy of the GNU General Lesser Public
20-
* License along with this program. If not, see
21-
* <http://www.gnu.org/licenses/lgpl-3.0.html>.
22-
* #L%
13+
* GNU Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2317
*/
18+
package xdev.db.db2.jdbc;
2419

2520

2621
import com.xdev.jadoth.sqlengine.dbms.standard.StandardDDLMapper;

src/main/java/xdev/db/db2/jdbc/DB2DMLAssembler.java

+13-18
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,21 @@
1-
package xdev.db.db2.jdbc;
2-
3-
/*-
4-
* #%L
5-
* DB2
6-
* %%
7-
* Copyright (C) 2003 - 2022 XDEV Software
8-
* %%
1+
/*
2+
* SqlEngine Database Adapter DB2 - XAPI SqlEngine Database Adapter for DB2
3+
* Copyright © 2003 XDEV Software (https://xdev.software)
4+
*
95
* This program is free software: you can redistribute it and/or modify
10-
* it under the terms of the GNU Lesser General Public License as
11-
* published by the Free Software Foundation, either version 3 of the
12-
* License, or (at your option) any later version.
13-
*
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
1410
* This program is distributed in the hope that it will be useful,
1511
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1612
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17-
* GNU General Lesser Public License for more details.
18-
*
19-
* You should have received a copy of the GNU General Lesser Public
20-
* License along with this program. If not, see
21-
* <http://www.gnu.org/licenses/lgpl-3.0.html>.
22-
* #L%
13+
* GNU Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2317
*/
18+
package xdev.db.db2.jdbc;
2419

2520
import com.xdev.jadoth.sqlengine.SELECT;
2621
import com.xdev.jadoth.sqlengine.dbms.standard.StandardDMLAssembler;

src/main/java/xdev/db/db2/jdbc/DB2Dbms.java

+13-18
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,21 @@
1-
package xdev.db.db2.jdbc;
2-
3-
/*-
4-
* #%L
5-
* DB2
6-
* %%
7-
* Copyright (C) 2003 - 2022 XDEV Software
8-
* %%
1+
/*
2+
* SqlEngine Database Adapter DB2 - XAPI SqlEngine Database Adapter for DB2
3+
* Copyright © 2003 XDEV Software (https://xdev.software)
4+
*
95
* This program is free software: you can redistribute it and/or modify
10-
* it under the terms of the GNU Lesser General Public License as
11-
* published by the Free Software Foundation, either version 3 of the
12-
* License, or (at your option) any later version.
13-
*
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
1410
* This program is distributed in the hope that it will be useful,
1511
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1612
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17-
* GNU General Lesser Public License for more details.
18-
*
19-
* You should have received a copy of the GNU General Lesser Public
20-
* License along with this program. If not, see
21-
* <http://www.gnu.org/licenses/lgpl-3.0.html>.
22-
* #L%
13+
* GNU Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2317
*/
18+
package xdev.db.db2.jdbc;
2419

2520
import com.xdev.jadoth.sqlengine.dbms.DbmsAdaptor;
2621
import com.xdev.jadoth.sqlengine.dbms.SQLExceptionParser;

src/main/java/xdev/db/db2/jdbc/DB2ExceptionParser.java

+13-18
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,21 @@
1-
package xdev.db.db2.jdbc;
2-
3-
/*-
4-
* #%L
5-
* DB2
6-
* %%
7-
* Copyright (C) 2003 - 2022 XDEV Software
8-
* %%
1+
/*
2+
* SqlEngine Database Adapter DB2 - XAPI SqlEngine Database Adapter for DB2
3+
* Copyright © 2003 XDEV Software (https://xdev.software)
4+
*
95
* This program is free software: you can redistribute it and/or modify
10-
* it under the terms of the GNU Lesser General Public License as
11-
* published by the Free Software Foundation, either version 3 of the
12-
* License, or (at your option) any later version.
13-
*
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
1410
* This program is distributed in the hope that it will be useful,
1511
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1612
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17-
* GNU General Lesser Public License for more details.
18-
*
19-
* You should have received a copy of the GNU General Lesser Public
20-
* License along with this program. If not, see
21-
* <http://www.gnu.org/licenses/lgpl-3.0.html>.
22-
* #L%
13+
* GNU Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2317
*/
18+
package xdev.db.db2.jdbc;
2419

2520

2621
import java.sql.SQLException;

src/main/java/xdev/db/db2/jdbc/DB2JDBCConnection.java

+13-18
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,21 @@
1-
package xdev.db.db2.jdbc;
2-
3-
/*-
4-
* #%L
5-
* DB2
6-
* %%
7-
* Copyright (C) 2003 - 2022 XDEV Software
8-
* %%
1+
/*
2+
* SqlEngine Database Adapter DB2 - XAPI SqlEngine Database Adapter for DB2
3+
* Copyright © 2003 XDEV Software (https://xdev.software)
4+
*
95
* This program is free software: you can redistribute it and/or modify
10-
* it under the terms of the GNU Lesser General Public License as
11-
* published by the Free Software Foundation, either version 3 of the
12-
* License, or (at your option) any later version.
13-
*
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
1410
* This program is distributed in the hope that it will be useful,
1511
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1612
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17-
* GNU General Lesser Public License for more details.
18-
*
19-
* You should have received a copy of the GNU General Lesser Public
20-
* License along with this program. If not, see
21-
* <http://www.gnu.org/licenses/lgpl-3.0.html>.
22-
* #L%
13+
* GNU Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2317
*/
18+
package xdev.db.db2.jdbc;
2419

2520

2621
import java.sql.Connection;

src/main/java/xdev/db/db2/jdbc/DB2JDBCDataSource.java

+13-18
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,21 @@
1-
package xdev.db.db2.jdbc;
2-
3-
/*-
4-
* #%L
5-
* DB2
6-
* %%
7-
* Copyright (C) 2003 - 2022 XDEV Software
8-
* %%
1+
/*
2+
* SqlEngine Database Adapter DB2 - XAPI SqlEngine Database Adapter for DB2
3+
* Copyright © 2003 XDEV Software (https://xdev.software)
4+
*
95
* This program is free software: you can redistribute it and/or modify
10-
* it under the terms of the GNU Lesser General Public License as
11-
* published by the Free Software Foundation, either version 3 of the
12-
* License, or (at your option) any later version.
13-
*
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
1410
* This program is distributed in the hope that it will be useful,
1511
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1612
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17-
* GNU General Lesser Public License for more details.
18-
*
19-
* You should have received a copy of the GNU General Lesser Public
20-
* License along with this program. If not, see
21-
* <http://www.gnu.org/licenses/lgpl-3.0.html>.
22-
* #L%
13+
* GNU Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2317
*/
18+
package xdev.db.db2.jdbc;
2419

2520

2621
import xdev.db.DBException;

src/main/java/xdev/db/db2/jdbc/DB2JDBCMetaData.java

+13-18
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,21 @@
1-
package xdev.db.db2.jdbc;
2-
3-
/*-
4-
* #%L
5-
* DB2
6-
* %%
7-
* Copyright (C) 2003 - 2022 XDEV Software
8-
* %%
1+
/*
2+
* SqlEngine Database Adapter DB2 - XAPI SqlEngine Database Adapter for DB2
3+
* Copyright © 2003 XDEV Software (https://xdev.software)
4+
*
95
* This program is free software: you can redistribute it and/or modify
10-
* it under the terms of the GNU Lesser General Public License as
11-
* published by the Free Software Foundation, either version 3 of the
12-
* License, or (at your option) any later version.
13-
*
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
1410
* This program is distributed in the hope that it will be useful,
1511
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1612
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17-
* GNU General Lesser Public License for more details.
18-
*
19-
* You should have received a copy of the GNU General Lesser Public
20-
* License along with this program. If not, see
21-
* <http://www.gnu.org/licenses/lgpl-3.0.html>.
22-
* #L%
13+
* GNU Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2317
*/
18+
package xdev.db.db2.jdbc;
2419

2520

2621
import java.sql.Connection;

src/main/java/xdev/db/db2/jdbc/DB2RetrospectionAccessor.java

+13-18
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,21 @@
1-
package xdev.db.db2.jdbc;
2-
3-
/*-
4-
* #%L
5-
* DB2
6-
* %%
7-
* Copyright (C) 2003 - 2022 XDEV Software
8-
* %%
1+
/*
2+
* SqlEngine Database Adapter DB2 - XAPI SqlEngine Database Adapter for DB2
3+
* Copyright © 2003 XDEV Software (https://xdev.software)
4+
*
95
* This program is free software: you can redistribute it and/or modify
10-
* it under the terms of the GNU Lesser General Public License as
11-
* published by the Free Software Foundation, either version 3 of the
12-
* License, or (at your option) any later version.
13-
*
6+
* it under the terms of the GNU Lesser General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
1410
* This program is distributed in the hope that it will be useful,
1511
* but WITHOUT ANY WARRANTY; without even the implied warranty of
1612
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17-
* GNU General Lesser Public License for more details.
18-
*
19-
* You should have received a copy of the GNU General Lesser Public
20-
* License along with this program. If not, see
21-
* <http://www.gnu.org/licenses/lgpl-3.0.html>.
22-
* #L%
13+
* GNU Lesser General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU Lesser General Public License
16+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
2317
*/
18+
package xdev.db.db2.jdbc;
2419

2520
import com.xdev.jadoth.sqlengine.dbms.standard.StandardRetrospectionAccessor;
2621
import com.xdev.jadoth.sqlengine.exceptions.SQLEngineException;

0 commit comments

Comments
 (0)