1 23 24 package com.sun.enterprise.cli.commands; 25 26 import com.sun.enterprise.cli.framework.*; 27 28 35 public class PasswordAliasCommand extends FileUserCommand 36 { 37 private static final String ALIAS_USER_NAME = "aliasuser"; 38 private static final String ALIAS_PASSWORD = "aliaspassword"; 39 40 41 protected String getPasswordOptionName() { 42 return ALIAS_PASSWORD; 43 } 44 45 46 protected String getPasswordPrompt() 47 { 48 return "AliasPasswordPrompt"; 49 } 50 51 52 protected String getPasswordConfirmationPrompt() 53 { 54 return "AliasPasswordConfirmationPrompt"; 55 } 56 57 58 protected String getUserOptionName() 59 { 60 return ALIAS_USER_NAME; 61 } 62 63 64 protected String getUserPrompt() 65 { 66 return "AliasUserPrompt"; 67 } 68 } 69 | Popular Tags |