public void linkNode() throws Exception {
if (this.actSetNode != null) {
// Link action-set call to the action set
CategoryNode actionSets = CategoryNodeBuilder.getCategoryNode(this.treeBuilder, "action-sets");
if (actionSets == null)
throw new ConfigurationException("This sitemap contains no action sets. Cannot call at " + actSetNode.getLocation());
ActionSetNode actionSetNode = (ActionSetNode)actionSets.getNodeByName(this.actSetName);
this.actSetNode.setActionSet(actionSetNode);
}
}