mirror of https://github.com/sipwise/jitsi.git
parent
d512582ad6
commit
fc8a0591ea
@ -0,0 +1,24 @@
|
||||
/*
|
||||
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
|
||||
*
|
||||
* Distributable under LGPL license.
|
||||
* See terms of license at gnu.org.
|
||||
*/
|
||||
package net.java.sip.communicator.service.update;
|
||||
|
||||
/**
|
||||
* Checking for software updates service.
|
||||
*
|
||||
* @author Yana Stamcheva
|
||||
*/
|
||||
public interface UpdateService
|
||||
{
|
||||
/**
|
||||
* Checks for updates.
|
||||
*
|
||||
* @param notifyAboutNewestVersion <tt>true</tt> if the user is to be
|
||||
* notified if they have the newest version already; otherwise,
|
||||
* <tt>false</tt>
|
||||
*/
|
||||
public void checkForUpdates(boolean notifyAboutNewestVersion);
|
||||
}
|
||||
@ -0,0 +1,6 @@
|
||||
Bundle-Description: Checks for software updates
|
||||
Bundle-Name: Update Service
|
||||
Bundle-Vendor: jitsi.org
|
||||
Bundle-Version: 0.0.1
|
||||
System-Bundle: yes
|
||||
Export-Package: net.java.sip.communicator.service.update
|
||||
Loading…
Reference in new issue