mmelko commented on a change in pull request #3944:
URL: https://github.com/apache/camel/pull/3944#discussion_r445526964
##########
File path:
components/camel-couchbase/src/main/java/org/apache/camel/component/couchbase/CouchbaseEndpoint.java
##########
@@ -225,6 +219,28 @@ public void setPort(int port) {
this.port = port;
}
+ /**
+ * The collection to use
+ */
+ public String getCollection() {
+ return this.collection;
+ }
+
+ public void setCollection(String collection) {
+ this.collection = collection;
+ }
+
+ public String getScope() {
+ return this.scope;
+ }
+
+ /**
+ * The scope to use
Review comment:
I believe you can create custom scopes with custom name .. so it's
definitely not a enum.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]