File tree Expand file tree Collapse file tree 3 files changed +13
-9
lines changed
src/main/java/xyz/refinedev/phoenix/utils/auth/api Expand file tree Collapse file tree 3 files changed +13
-9
lines changed Original file line number Diff line number Diff line change 1
- # Phoenix-API (Version: 1.8.6 )
1
+ # Phoenix-API (Version: 1.8.12 )
2
2
This is the API for Phoenix & pxQueue!
3
3
4
4
## Installing
@@ -27,7 +27,7 @@ Add this to your `pom.xml` under `<dependencies>`:
27
27
<dependency >
28
28
<groupId >xyz.refinedev.phoenix</groupId >
29
29
<artifactId >pxAPI</artifactId >
30
- <version >1.8.6 </version >
30
+ <version >1.8.12 </version >
31
31
<scope >provided</scope >
32
32
</dependency >
33
33
```
Original file line number Diff line number Diff line change 14
14
15
15
<groupId >xyz.refinedev.phoenix</groupId >
16
16
<artifactId >pxAPI</artifactId >
17
- <version >1.8.6 </version >
17
+ <version >1.8.12 </version >
18
18
19
19
<properties >
20
20
<maven .compiler.source>1.8</maven .compiler.source>
Original file line number Diff line number Diff line change 8
8
*/
9
9
public interface Authenticator {
10
10
11
- public String getName ();
11
+ String getName ();
12
12
13
- public void setup (Player player );
13
+ void setup (Player player );
14
14
15
- public boolean authenticate (Player player , String input );
15
+ boolean authenticate (Player player , String input );
16
16
17
- public boolean canSetup (Player player );
17
+ boolean canSetup (Player player );
18
18
19
- public boolean canAuthenticate (Player player );
19
+ boolean canAuthenticate (Player player );
20
20
21
- public boolean isEnabled ();
21
+ boolean isEnabled ();
22
+
23
+ default boolean isAsync () {
24
+ return false ;
25
+ }
22
26
23
27
}
You can’t perform that action at this time.
0 commit comments