- Timestamp:
- 11/28/19 14:40:48 (5 years ago)
- Location:
- party
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
party/pom.xml
r6 r9 6 6 <groupId>geniusweb</groupId> 7 7 <artifactId>party</artifactId> 8 <version>1. 0.0</version>8 <version>1.1.0</version> 9 9 <packaging>jar</packaging> 10 10 … … 16 16 <basedir>.</basedir> 17 17 <passwd>${env.ARTIFACTORY_PASS}</passwd> 18 <jackson-2-version>2.9. 6</jackson-2-version>18 <jackson-2-version>2.9.10</jackson-2-version> 19 19 </properties> 20 20 … … 31 31 <groupId>geniusweb</groupId> 32 32 <artifactId>timeline</artifactId> 33 <version>1. 0.0</version>33 <version>1.1.0</version> 34 34 </dependency> 35 35 <dependency> 36 36 <groupId>geniusweb</groupId> 37 37 <artifactId>profile</artifactId> 38 <version>1. 0.0</version>38 <version>1.1.0</version> 39 39 </dependency> 40 40 <dependency> 41 41 <groupId>geniusweb</groupId> 42 42 <artifactId>events</artifactId> 43 <version>1.0.0</version> 43 <version>1.1.0</version> 44 </dependency> 45 <dependency> 46 <groupId>geniusweb</groupId> 47 <artifactId>references</artifactId> 48 <version>1.1.0</version> 44 49 </dependency> 45 50 <dependency> 46 51 <groupId>tudelft.utilities</groupId> 47 52 <artifactId>listener</artifactId> 48 <version>1.0.0</version> 49 </dependency> 50 <dependency> 51 <groupId>geniusweb</groupId> 52 <artifactId>references</artifactId> 53 <version>1.0.0</version> 53 <version>1.1.0</version> 54 54 </dependency> 55 55 <dependency> -
party/src/main/java/geniusweb/party/DefaultParty.java
r1 r9 2 2 3 3 import geniusweb.actions.Action; 4 import geniusweb.connection.Connection ;4 import geniusweb.connection.ConnectionEnd; 5 5 import geniusweb.party.inform.Inform; 6 6 import tudelft.utilities.listener.Listener; … … 13 13 */ 14 14 public abstract class DefaultParty implements Party, Listener<Inform> { 15 private Connection <Inform, Action> connection = null;15 private ConnectionEnd<Inform, Action> connection = null; 16 16 protected Reporter reporter; 17 17 … … 25 25 26 26 @Override 27 public void connect(Connection <Inform, Action> connection) {27 public void connect(ConnectionEnd<Inform, Action> connection) { 28 28 this.connection = connection; 29 29 connection.addListener(this); … … 47 47 * connected. 48 48 */ 49 public Connection <Inform, Action> getConnection() {49 public ConnectionEnd<Inform, Action> getConnection() { 50 50 return connection; 51 51 }
Note:
See TracChangeset
for help on using the changeset viewer.