mirror of
https://github.com/SimplexDevelopment/FreedomNetworkSuite.git
synced 2025-07-06 23:33:03 +00:00
Update content
This commit is contained in:
16
Commons/src/main/java/me/totalfreedom/service/Service.java
Normal file
16
Commons/src/main/java/me/totalfreedom/service/Service.java
Normal file
@ -0,0 +1,16 @@
|
||||
package me.totalfreedom.service;
|
||||
|
||||
public abstract class Service
|
||||
{
|
||||
private final String name;
|
||||
|
||||
protected Service(String name)
|
||||
{
|
||||
this.name = name;
|
||||
|
||||
}
|
||||
|
||||
public abstract void start();
|
||||
|
||||
public abstract void stop();
|
||||
}
|
Reference in New Issue
Block a user