/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* You can obtain a copy of the license at legal-notices/CDDLv1_0.txt
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at legal-notices/CDDLv1_0.txt.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information:
* Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*
*
* Copyright 2006-2010 Sun Microsystems, Inc.
* Portions Copyright 2013 ForgeRock AS.
*/
/**
* This is an enumeration used to identify the different fields that we have
* in the Installation wizard.
*
* Note that each field is not necessarily associated
* with a single Swing component (for instance we have two text fields for
* the server location). This enumeration is used to retrieve information from
* the panels without having any knowledge of the actual graphical layout.
*
*/
public enum FieldName
{
/**
* The value associated with this is a String.
* The web start installer uses this field to indicate the
* location to install the server.
*/
/**
* The value associated with this is a String.
*/
/**
* The value associated with this is a String.
*/
/**
* The value associated with this is a String.
*/
/**
* The value associated with this is a String.
*/
/**
* The value associated with this is a String.
*/
/**
* The value associated with this is a String.
*/
/**
* The value associated with this is a String.
*/
/**
* The value associated with this is a SecurityOptions object.
*/
/**
* The value associated with this is a data options.Type.
*/
/**
* The value associated with this is a String.
*/
/**
* The value associated with this is a String.
*/
/**
* The value associated with this is a DataReplicationOptions.Type.
*/
/**
* The value associated with this is a SuffixesToReplicateOptions.Type.
*/
/**
* The value associated with this is a Set of SuffixDescriptor.
*/
/**
* The value associated with this is a Boolean.
*/
/**
* The value associated with this is a String.
*/
/**
* The value associated with this is a String.
*/
/**
* The value associated with this is a String.
*/
/**
* The value associated with this is a String.
*/
/**
* The value associated with this is a String.
*/
/**
* The value associated with this is a String.
*/
/**
* The value associated with this is a String.
*/
/**
* The value associated with this is a String.
*/
/**
* The value associated with this is a Map where the key is a String and the
* value a String.
*/
/**
* The value associated with this is a Map where the key is a String and the
* value a Boolean.
*/
/**
* The value associated with this is a JavaArguments object.
*/
/**
* The value associated with this is a JavaArguments object.
*/
/**
* The value associated with this is a Boolean.
*/
/**
* The value associated with this is a Boolean.
*/
/**
* The value associated with this is a Boolean.
*/
/**
* The value associated with this is a Boolean.
*/
/**
* The value associated with this is a Boolean.
*/
/**
* The value associated with this is a Boolean.
*/
/**
* The value associated with this is a Boolean.
*/
/**
* The value associated with this is a Boolean.
*/
/**
* The value associated with this is a Set of String.
*/
/**
* The value associated with this is a Set of String.
*/
}