-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a77070f
commit fdd53cf
Showing
9 changed files
with
23 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
package org.erathor.api; | ||
|
||
import org.erathor.api.controller.ErathorControllersAPI; | ||
import org.erathor.api.controller.IErathorControllers; | ||
|
||
public interface ErathorAPI { | ||
// This is the interface that the ErathorCore plugin implements. | ||
|
||
ErathorControllersAPI getControllers(); | ||
IErathorControllers getControllers(); | ||
|
||
} |
6 changes: 0 additions & 6 deletions
6
src/main/java/org/erathor/api/controller/ErathorControllersAPI.java
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
src/main/java/org/erathor/api/controller/ExecutionControllerAPI.java
This file was deleted.
Oops, something went wrong.
6 changes: 6 additions & 0 deletions
6
src/main/java/org/erathor/api/controller/IErathorControllers.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package org.erathor.api.controller; | ||
|
||
public interface IErathorControllers { | ||
|
||
public IExecutionController getExecutionController(); | ||
} |
7 changes: 7 additions & 0 deletions
7
src/main/java/org/erathor/api/controller/IExecutionController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
package org.erathor.api.controller; | ||
|
||
import org.erathor.api.model.IExecution; | ||
|
||
public interface IExecutionController extends IModelController<IExecution> { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
package org.erathor.api.model; | ||
|
||
public interface IExecution extends IModel<IExecution> { | ||
|
||
} |
2 changes: 1 addition & 1 deletion
2
.../java/org/erathor/api/model/ModelAPI.java → ...in/java/org/erathor/api/model/IModel.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters