mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
Changed the root package from net.sf.briar to org.briarproject.
This commit is contained in:
10
briar-api/src/org/briarproject/api/lifecycle/Service.java
Normal file
10
briar-api/src/org/briarproject/api/lifecycle/Service.java
Normal file
@@ -0,0 +1,10 @@
|
||||
package org.briarproject.api.lifecycle;
|
||||
|
||||
public interface Service {
|
||||
|
||||
/** Starts the service and returns true if it started successfully. */
|
||||
public boolean start();
|
||||
|
||||
/** Stops the service and returns true if it stopped successfully. */
|
||||
public boolean stop();
|
||||
}
|
||||
Reference in New Issue
Block a user