310311312313314315316317
public void addToDomainLevelComposite(QName qname) throws DomainException { try { nodeImpl.deployComposite(qname); } catch(Exception ex) { new DomainException(ex); } }
318319320321322323324325
public void removeFromDomainLevelComposite(QName qname) throws DomainException { try { //nodeImpl.stopComposite(); } catch(Exception ex) { new DomainException(ex); } }
326327328329330331332333
public void startComposite(QName qname) throws DomainException { try { nodeImpl.deployComposite(qname); } catch(Exception ex) { new DomainException(ex); } }
334335336337338339340341
public void stopComposite(QName qname) throws DomainException { try { //nodeImpl.stopComposite(); } catch(Exception ex) { new DomainException(ex); } }