org.jumpmind.symmetric.web.WebConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of symmetric-ds Show documentation
Show all versions of symmetric-ds Show documentation
SymmetricDS is an open source database synchronization solution. It is platform-independent,
web-enabled, and database-agnostic. SymmetricDS was first built to replicate changes between 'retail store'
databases and ad centralized 'corporate' database.
The newest version!
/*
* Licensed to JumpMind Inc under one or more contributor
* license agreements. See the NOTICE file distributed
* with this work for additional information regarding
* copyright ownership. JumpMind Inc licenses this file
* to you under the GNU Lesser General Public License (the
* "License"); you may not use this file except in compliance
* with the License.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, see
* .
*
* 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 org.jumpmind.symmetric.web;
/**
* ,
*/
public class WebConstants {
public static final int REGISTRATION_NOT_OPEN = 656;
public static final int REGISTRATION_REQUIRED = 657;
public static final int SYNC_DISABLED = 658;
public static final String ACK_BATCH_NAME = "batch-";
public static final String ACK_BATCH_OK = "ok";
public static final String ACK_NODE_ID = "nodeId-";
public static final String ACK_NETWORK_MILLIS = "network-";
public static final String ACK_FILTER_MILLIS = "filter-";
public static final String ACK_DATABASE_MILLIS = "database-";
public static final String ACK_BYTE_COUNT = "byteCount-";
public static final String ACK_SQL_STATE = "sqlState-";
public static final String ACK_SQL_CODE = "sqlCode-";
public static final String ACK_SQL_MESSAGE = "sqlMessage-";
public static final String NODE_ID = "nodeId";
public static final String NODE_GROUP_ID = "nodeGroupId";
public static final String EXTERNAL_ID = "externalId";
public static final String SYMMETRIC_VERSION = "symmetricVersion";
public static final String SYNC_URL = "syncURL";
public static final String SCHEMA_VERSION = "schemaVersion";
public static final String DATABASE_TYPE = "databaseType";
public static final String DATABASE_VERSION = "databaseVersion";
public static final String SECURITY_TOKEN = "securityToken";
public static final String SUSPENDED_CHANNELS = "Suspended-Channels";
public static final String IGNORED_CHANNELS = "Ignored-Channels";
}