MCPcopy Index your code
hub / github.com/Juniper/netconf-java / commit

Method commit

src/main/java/net/juniper/netconf/Device.java:1110–1116  ·  view source on GitHub ↗

Commit the candidate configuration. @throws net.juniper.netconf.CommitException if there was an error committing the configuration. @throws java.io.IOException If there are errors communicating with the netconf server. @throws org.xml.sax.SAXException If there are errors

()

Source from the content-addressed store, hash-verified

1108 * @throws org.xml.sax.SAXException If there are errors parsing the XML reply.
1109 */
1110 public void commit() throws CommitException, IOException, SAXException {
1111 if (netconfSession == null) {
1112 throw new IllegalStateException("Cannot execute RPC, you need to " +
1113 "establish a connection first.");
1114 }
1115 this.netconfSession.commit();
1116 }
1117
1118 /**
1119 * Commit the candidate configuration, temporarily. This is equivalent of

Callers 2

mainMethod · 0.95
mainMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected