
net.java.trueupdate.manager.spec.UpdateInstaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trueupdate-manager-spec Show documentation
Show all versions of trueupdate-manager-spec Show documentation
Specifies an API for update managers.
The newest version!
/*
* Copyright (C) 2013 Schlichtherle IT Services & Stimulus Software.
* All rights reserved. Use is subject to license terms.
*/
package net.java.trueupdate.manager.spec;
/**
* Cooperates with an update resolver to install artifact updates.
*
* @author Christian Schlichtherle
*/
public interface UpdateInstaller {
/**
* Updates the application as described by the properties of the given
* update context.
*
* @param context the update context.
* The implementation should use this object to log any
* progress rather than using the {@code java.util.logging}
* API directly.
*/
void install(UpdateContext context) throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy