-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathSQLUtilLicense.java
More file actions
31 lines (29 loc) · 1.34 KB
/
SQLUtilLicense.java
File metadata and controls
31 lines (29 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.winvector;
public class SQLUtilLicense {
public static final String licenses =
"\n" +
"[\n" +
"\n" +
"Licenses\n" +
"\n" +
" Packages com.winvector.*\n" +
" Example code for moving data in out out of DBs.\n" +
" Copyright (C) Win Vector LLC 2010 (contact: John Mount jmount@win-vector.com).\n" +
" Distributed under GNU Affero General Public License version 3 (2007, see http://www.gnu.org/licenses/agpl.html ).\n" +
" This program is free software: you can redistribute it and/or modify\n" +
" it under the terms of the GNU Affero General Public License as\n" +
" published by the Free Software Foundation, only version 3 of the\n" +
" License.\n" +
" This program is distributed in the hope that it will be useful,\n" +
" but WITHOUT ANY WARRANTY; without even the implied warranty of\n" +
" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" +
" GNU Affero General Public License for more details.\n" +
" You should have received a copy of the GNU Affero General Public License\n" +
" along with this program. If not, see <http://www.gnu.org/licenses/>.\n" +
" (Source code in this Jar, see also http://www.win-vector.com/ )\n" +
"]\n" +
"\n";
public static void main(String[] args) {
System.out.println(licenses);
}
}