Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/share/classes/javax/security/auth/callback/TextInputCallback.java
38918 views
/*1* Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/2425package javax.security.auth.callback;2627/**28* <p> Underlying security services instantiate and pass a29* {@code TextInputCallback} to the {@code handle}30* method of a {@code CallbackHandler} to retrieve generic text31* information.32*33* @see javax.security.auth.callback.CallbackHandler34*/35public class TextInputCallback implements Callback, java.io.Serializable {3637private static final long serialVersionUID = -8064222478852811804L;3839/**40* @serial41* @since 1.442*/43private String prompt;44/**45* @serial46* @since 1.447*/48private String defaultText;49/**50* @serial51* @since 1.452*/53private String inputText;5455/**56* Construct a {@code TextInputCallback} with a prompt.57*58* <p>59*60* @param prompt the prompt used to request the information.61*62* @exception IllegalArgumentException if {@code prompt} is null63* or if {@code prompt} has a length of 0.64*/65public TextInputCallback(String prompt) {66if (prompt == null || prompt.length() == 0)67throw new IllegalArgumentException();68this.prompt = prompt;69}7071/**72* Construct a {@code TextInputCallback} with a prompt73* and default input value.74*75* <p>76*77* @param prompt the prompt used to request the information. <p>78*79* @param defaultText the text to be used as the default text displayed80* with the prompt.81*82* @exception IllegalArgumentException if {@code prompt} is null,83* if {@code prompt} has a length of 0,84* if {@code defaultText} is null85* or if {@code defaultText} has a length of 0.86*/87public TextInputCallback(String prompt, String defaultText) {88if (prompt == null || prompt.length() == 0 ||89defaultText == null || defaultText.length() == 0)90throw new IllegalArgumentException();9192this.prompt = prompt;93this.defaultText = defaultText;94}9596/**97* Get the prompt.98*99* <p>100*101* @return the prompt.102*/103public String getPrompt() {104return prompt;105}106107/**108* Get the default text.109*110* <p>111*112* @return the default text, or null if this {@code TextInputCallback}113* was not instantiated with {@code defaultText}.114*/115public String getDefaultText() {116return defaultText;117}118119/**120* Set the retrieved text.121*122* <p>123*124* @param text the retrieved text, which may be null.125*126* @see #getText127*/128public void setText(String text) {129this.inputText = text;130}131132/**133* Get the retrieved text.134*135* <p>136*137* @return the retrieved text, which may be null.138*139* @see #setText140*/141public String getText() {142return inputText;143}144}145146147