this.delegate = delegate;
}
/** {@inheritDoc} */
protected void applyUpdate(ServerModel element) throws UpdateFailedException {
final InterfaceElement networkInterface = element.addInterface(delegate.getName());
if(networkInterface == null) {
throw new UpdateFailedException("duplicate network interface " + delegate.getName());
}
delegate.applyUpdate(networkInterface);
}