![JAR search and dependency download from the Maven repository](/logo.png)
io.cloudslang.content.couchbase.entities.constants.Inputs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cs-couchbase Show documentation
Show all versions of cs-couchbase Show documentation
Java actions for Couchbase integration
/*******************************************************************************
* (c) Copyright 2017 Hewlett-Packard Development Company, L.P.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Apache License v2.0 which accompany this distribution.
*
* The Apache License is available at
* http://www.apache.org/licenses/LICENSE-2.0
*
*******************************************************************************/
package io.cloudslang.content.couchbase.entities.constants;
/**
* Created by Mihai Tusa
* 3/26/2017.
*/
public class Inputs {
private Inputs() {
// prevent instantiation
}
public static class CommonInputs {
public static final String ENDPOINT = "endpoint";
public static final String DELIMITER = "delimiter";
}
public static class BucketInputs {
public static final String BUCKET_NAME = "bucketName";
public static final String BUCKET_TYPE = "bucketType";
public static final String CONFLICT_RESOLUTION_TYPE = "conflictResolutionType";
public static final String COUCHBASE_PROXY_PORT = "couchbaseProxyPort";
public static final String EVICTION_POLICY = "evictionPolicy";
public static final String FLUSH_ENABLED = "flushEnabled";
public static final String PARALLEL_DB_VIEW_COMPACTION = "parallelDBAndViewCompaction";
public static final String RAM_QUOTA_DB = "ramQuotaMB";
public static final String REPLICA_INDEX = "replicaIndex";
public static final String REPLICA_NUMBER = "replicaNumber";
public static final String SASL_PASSWORD = "saslPassword";
public static final String THREADS_NUMBER = "threadsNumber";
}
public static class ClusterInputs {
public static final String EJECTED_NODES = "ejectedNodes";
public static final String KNOWN_NODES = "knownNodes";
}
public static class NodeInputs {
public static final String INTERNAL_NODE_IP_ADDRESS = "internalNodeIpAddress";
public static final String RECOVERY_TYPE = "recoveryType";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy