001 /* 002 * Copyright 2012-2015 UnboundID Corp. 003 * All Rights Reserved. 004 */ 005 /* 006 * Copyright (C) 2012-2015 UnboundID Corp. 007 * 008 * This program is free software; you can redistribute it and/or modify 009 * it under the terms of the GNU General Public License (GPLv2 only) 010 * or the terms of the GNU Lesser General Public License (LGPLv2.1 only) 011 * as published by the Free Software Foundation. 012 * 013 * This program is distributed in the hope that it will be useful, 014 * but WITHOUT ANY WARRANTY; without even the implied warranty of 015 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 016 * GNU General Public License for more details. 017 * 018 * You should have received a copy of the GNU General Public License 019 * along with this program; if not, see <http://www.gnu.org/licenses>. 020 */ 021 package com.unboundid.ldif; 022 023 024 025 026 027 028 /** 029 * This enum defines a set of possible behaviors that may be exhibited by the 030 * LDIF reader when encountering trailing spaces in attribute values that are 031 * not base64-encoded. 032 */ 033 public enum TrailingSpaceBehavior 034 { 035 /** 036 * Indicates that illegal trailing spaces should be silently stripped from 037 * attribute values. 038 */ 039 STRIP, 040 041 042 043 /** 044 * Indicates that illegal trailing spaces should be retained (as if the value 045 * had been base64-encoded). 046 */ 047 RETAIN, 048 049 050 051 /** 052 * Indicates that illegal trailing spaces should cause the associated entry to 053 * be rejected. 054 */ 055 REJECT; 056 }