[LIB-8] Update Copyright
[snooker-score-api.git] / src / main / java / org / hedgecode / snooker / api / Player.java
index 9c6c7ea..f0795b6 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017. Developed by Hedgecode.
+ * Copyright (c) 2017-2020. Developed by Hedgecode.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -43,6 +43,8 @@ public interface Player extends IdEntity {
 
     String shortName();
 
+    String fullName();
+
     String nationality();
 
     String sex();
@@ -53,6 +55,8 @@ public interface Player extends IdEntity {
 
     String twitter();
 
+    String twitterUrl();
+
     boolean surnameFirst();
 
     String license();
@@ -63,6 +67,14 @@ public interface Player extends IdEntity {
 
     String photo();
 
+    PlayerImage image() throws APIException;
+
+    String photoSource();
+
+    int firstSeasonAsPro();
+
+    int lastSeasonAsPro();
+
     String info();
 
 }