# HG changeset patch
# User Martin van Dinther <martin.van.dinther@monetdbsolutions.com>
# Date 1612976755 -3600
# Node ID b95d007e1dfa85dc6b42a815eb22d4682ade15c6
# Parent  1333c19b0c1b23a6eac79ca34968a6f2e0bfe574
Add missing Copyright header and made class final.

diff --git a/src/main/java/org/monetdb/mcl/net/HandshakeOptions.java b/src/main/java/org/monetdb/mcl/net/HandshakeOptions.java
--- a/src/main/java/org/monetdb/mcl/net/HandshakeOptions.java
+++ b/src/main/java/org/monetdb/mcl/net/HandshakeOptions.java
@@ -1,19 +1,26 @@
+/*
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0.  If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * Copyright 1997 - July 2008 CWI, August 2008 - 2021 MonetDB B.V.
+ */
+
 package org.monetdb.mcl.net;
 
 /** Keep track of MAPI handshake options.
  *
- * Recent server versions allow you to send configuration information during
+ * Recent server versions (from 2021) allow you to send configuration information during
  * the authentication handshake so no additional round trips are necessary
  * when that has completed.
  *
  * This class keeps track of the options to send, and whether they have already
  * been sent.
  */
-public class HandshakeOptions {
+final public class HandshakeOptions {
 
 	// public Boolean autoCommit;
 	int replySize;
-	// public Integer replySize;
 	// public Integer ColumnarProtocol;
 	int timeZone;