NetConstants.java

  1. /*
  2.  * Licensed to the Apache Software Foundation (ASF) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The ASF licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      http://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */
  17. package org.apache.commons.net.util;

  18. import java.security.cert.X509Certificate;

  19. /**
  20.  * Constants provided as public only for our own implementation, you can consider this private for now.
  21.  *
  22.  * @since 3.8.0
  23.  */
  24. public class NetConstants {

  25.     /**
  26.      * An empty immutable {@code String} array.
  27.      */
  28.     public static final String[] EMPTY_STRING_ARRAY = {};

  29.     /**
  30.      * An empty immutable {@code byte} array.
  31.      */
  32.     public static final byte[] EMPTY_BTYE_ARRAY = {};

  33.     /**
  34.      * An empty immutable {link X509Certificate} array.
  35.      */
  36.     public static final X509Certificate[] EMPTY_X509_CERTIFICATE_ARRAY = {};

  37.     /**
  38.      * The index value when the end of the stream has been reached {@code -1}.
  39.      *
  40.      * @since 3.9.0
  41.      */
  42.     public static final int EOS = -1;

  43.     /**
  44.      * Prevents instantiation.
  45.      */
  46.     private NetConstants() {
  47.     }
  48. }