Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
expose sendSql and reOpenRegistration, which are handy
  • Loading branch information
erilong committed Oct 23, 2008
1 parent dcf8786 commit f0d5c2d
Showing 1 changed file with 8 additions and 0 deletions.
Expand Up @@ -338,6 +338,10 @@ public String reloadNode(String nodeId) {
return dataService.reloadNode(nodeId);
}

public String sendSQL(String nodeId, String tableName, String sql) {
return dataService.sendSQL(nodeId, tableName, sql);
}

/**
* This can be called if the push job has not been enabled. It will perform
* a push the same way the {@link PushJob} would have.
Expand Down Expand Up @@ -408,6 +412,10 @@ public void openRegistration(String groupId, String externalId) {
registrationService.openRegistration(groupId, externalId);
}

public void reOpenRegistration(String nodeId) {
registrationService.reOpenRegistration(nodeId);
}

/**
* Check to see if this node has been registered.
*
Expand Down

0 comments on commit f0d5c2d

Please sign in to comment.