Mercurial > hg > monetdb-java
diff src/main/java/org/monetdb/mcl/net/MapiSocket.java @ 391:f523727db392
Moved Java classes from packages starting with nl.cwi.monetdb.* to package org.monetdb.*
This naming complies to the Java Package Naming convention as MonetDB's main website is www.monetdb.org.
author | Martin van Dinther <martin.van.dinther@monetdbsolutions.com> |
---|---|
date | Thu, 12 Nov 2020 22:02:01 +0100 (2020-11-12) |
parents | src/main/java/nl/cwi/monetdb/mcl/net/MapiSocket.java@af6db116238d |
children | bf9f6b6ecf40 |
line wrap: on
line diff
copy from src/main/java/nl/cwi/monetdb/mcl/net/MapiSocket.java copy to src/main/java/org/monetdb/mcl/net/MapiSocket.java --- a/src/main/java/nl/cwi/monetdb/mcl/net/MapiSocket.java +++ b/src/main/java/org/monetdb/mcl/net/MapiSocket.java @@ -6,7 +6,7 @@ * Copyright 1997 - July 2008 CWI, August 2008 - 2020 MonetDB B.V. */ -package nl.cwi.monetdb.mcl.net; +package org.monetdb.mcl.net; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; @@ -28,10 +28,10 @@ import java.util.ArrayList; import java.util.HashSet; import java.util.List; -import nl.cwi.monetdb.mcl.MCLException; -import nl.cwi.monetdb.mcl.io.BufferedMCLReader; -import nl.cwi.monetdb.mcl.io.BufferedMCLWriter; -import nl.cwi.monetdb.mcl.parser.MCLParseException; +import org.monetdb.mcl.MCLException; +import org.monetdb.mcl.io.BufferedMCLReader; +import org.monetdb.mcl.io.BufferedMCLWriter; +import org.monetdb.mcl.parser.MCLParseException; /** * A Socket for communicating with the MonetDB database in MAPI block @@ -80,10 +80,10 @@ import nl.cwi.monetdb.mcl.parser.MCLPars * * @author Fabian Groffen * @version 4.1 - * @see nl.cwi.monetdb.mcl.io.BufferedMCLReader - * @see nl.cwi.monetdb.mcl.io.BufferedMCLWriter + * @see org.monetdb.mcl.io.BufferedMCLReader + * @see org.monetdb.mcl.io.BufferedMCLWriter */ -public final class MapiSocket { +public class MapiSocket { /* cannot (yet) be final as nl.cwi.monetdb.mcl.net.MapiSocket extends this class */ /** The TCP Socket to mserver */ private Socket con; /** The TCP Socket timeout in milliseconds. Default is 0 meaning the timeout is disabled (i.e., timeout of infinity) */