/* * @(#)RealmCallback.java 1.11 03/12/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package javax.security.sasl; import javax.security.auth.callback.TextInputCallback; /** * This callback is used by SaslClient and SaslServer * to retrieve realm information. * * @since 1.5 * * @author Rosanna Lee * @author Rob Weltman */ public class RealmCallback extends TextInputCallback { /** * Constructs a RealmCallback with a prompt. * * @param prompt The non-null prompt to use to request the realm information. * @throws IllegalArgumentException If prompt is null or * the empty string. */ public RealmCallback(String prompt) { super(prompt); } /** * Constructs a RealmCallback with a prompt and default * realm information. * * @param prompt The non-null prompt to use to request the realm information. * @param defaultRealmInfo The non-null default realm information to use. * @throws IllegalArgumentException If prompt is null or * the empty string, * or if defaultRealm is empty or null. */ public RealmCallback(String prompt, String defaultRealmInfo) { super(prompt, defaultRealmInfo); } private static final long serialVersionUID = -4342673378785456908L; }