[LIB-8] Update Copyright
[snooker-score-api.git] / src / main / java / org / hedgecode / snooker / api / Event.java
index b3fdb68..df0068f 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.
@@ -81,8 +81,12 @@ public interface Event extends IdEntity {
 
     String twitter();
 
+    String twitterUrl();
+
     String hashTag();
 
+    String hashTagUrl();
+
     float conversionRate();
 
     boolean allRoundsAdded();
@@ -101,8 +105,12 @@ public interface Event extends IdEntity {
 
     String commonNote();
 
-    int defendingChampion();
+    int defendingChampionId();
+
+    Player defendingChampion();
+
+    int previousEditionId();
 
-    int previousEdition();
+    Event previousEdition();
 
 }