Example usage for org.apache.commons.chain CatalogFactory DELIMITER

List of usage examples for org.apache.commons.chain CatalogFactory DELIMITER

Introduction

In this page you can find the example usage for org.apache.commons.chain CatalogFactory DELIMITER.

Prototype

String DELIMITER

To view the source code for org.apache.commons.chain CatalogFactory DELIMITER.

Click Source Link

Document

Values passed to the getCommand(String) method should use this as the delimiter between the "catalog" name and the "command" name.

Usage

From source file:com.azaptree.services.command.CommandKey.java

public String toString(StringBuilder sb) {
    return sb.append(catalogName).append(CatalogFactory.DELIMITER).append(commandName).toString();
}