/******************************************************************************* * Copyright 2017 Capital One Services, LLC and Bitwise, Inc. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *******************************************************************************/ package hydrograph.ui.common.util; /** * * The Class PreferenceConstants. * Holds preference page constants. * * @author Bitwise * */ public class PreferenceConstants { public static final String VIEW_DATA_TEMP_FILEPATH = "TEMP_DEBUG_FILEPATH"; public static final String VIEW_DATA_FILE_SIZE = "VIEW_DATA_FILE_SIZE"; public static final String VIEW_DATA_PAGE_SIZE = "VIEW_DATA_PAGE_SIZE"; public static final String DELIMITER = "delimiter"; public static final String QUOTE_CHARACTOR = "quoteCharactor"; public static final String INCLUDE_HEADER = "includeHeader"; public static final String DEFAULTPATH = "exportDataDefaultpath"; public static final String PURGE_DATA_FILES = "purgeDataFiles"; public static final String LOCAL_PORT_NO = "localPortNo"; public static final String REMOTE_PORT_NO = "remotePortNo"; public static final String USE_REMOTE_CONFIGURATION="useRemoteConfiguration"; public static final String REMOTE_HOST="host"; public static final String DEFAULT_VIEW_DATA_PAGE_SIZE="100"; public static final String DEFAULT_VIEW_DATA_FILE_SIZE="100"; public static final Long INITIAL_OFFSET=0L; public static final String DEFAULT_PORT_NO="8004"; public static String DEFAULT_HOST; }