|
|
@ -27,8 +27,8 @@ import java.util.Optional;
|
|
|
|
* <p>A router definition contains:
|
|
|
|
* <p>A router definition contains:
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* <ul>
|
|
|
|
* <ul>
|
|
|
|
* <li>matcher: a regex pattern for matching input table IDs. Required for the definition.
|
|
|
|
* <li>sourceTable: a regex pattern for matching input table IDs. Required for the definition.
|
|
|
|
* <li>replace: a string for replacing matched table IDs as output. Required for the definition.
|
|
|
|
* <li>sinkTable: a string for replacing matched table IDs as output. Required for the definition.
|
|
|
|
* <li>description: description for the router. Optional for the definition.
|
|
|
|
* <li>description: description for the router. Optional for the definition.
|
|
|
|
* </ul>
|
|
|
|
* </ul>
|
|
|
|
*/
|
|
|
|
*/
|
|
|
@ -58,9 +58,9 @@ public class RouteDef {
|
|
|
|
@Override
|
|
|
|
@Override
|
|
|
|
public String toString() {
|
|
|
|
public String toString() {
|
|
|
|
return "RouteDef{"
|
|
|
|
return "RouteDef{"
|
|
|
|
+ "matcher="
|
|
|
|
+ "sourceTable="
|
|
|
|
+ sourceTable
|
|
|
|
+ sourceTable
|
|
|
|
+ ", replace="
|
|
|
|
+ ", sinkTable="
|
|
|
|
+ sinkTable
|
|
|
|
+ sinkTable
|
|
|
|
+ ", description='"
|
|
|
|
+ ", description='"
|
|
|
|
+ description
|
|
|
|
+ description
|
|
|
|