X-Git-Url: https://git.hedgecode.org/?p=snooker-score-api.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fhedgecode%2Fsnooker%2Fapi%2FPlayer.java;h=49a3e7a65ac1f3aaa21bd046ecc749b89a1348b6;hp=9c6c7ea2d5f99a15076445e46b9d9db0e697376b;hb=a9650805d204dba01a81100f2b9aa5d5f5f1a86e;hpb=10584f4eb4a18ecd3ad12f880c9d720d93a69e8a diff --git a/src/main/java/org/hedgecode/snooker/api/Player.java b/src/main/java/org/hedgecode/snooker/api/Player.java index 9c6c7ea..49a3e7a 100644 --- a/src/main/java/org/hedgecode/snooker/api/Player.java +++ b/src/main/java/org/hedgecode/snooker/api/Player.java @@ -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(); }