X-Git-Url: https://git.hedgecode.org/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Forg%2Fhedgecode%2Fsnooker%2Fapi%2FPlayer.java;h=49a3e7a65ac1f3aaa21bd046ecc749b89a1348b6;hb=5f3c185a78588a9d4f6a5f3cc459571de6d80c89;hp=9c6c7ea2d5f99a15076445e46b9d9db0e697376b;hpb=8a35619be41b2db6d339f8f0a7f3ba0fc1ca1ed4;p=snooker-score-api.git 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(); }