001package com.nimbusds.common.ldap;
002
003
004/**
005 * Enumeration of LDAP response result formats.
006 */
007public enum ResultFormat {
008
009 /**
010 * The result is formatted as JSON.
011 */
012 JSON,
013
014
015 /**
016 * The result is formatted as LDIF.
017 */
018 LDIF
019}