Changeset 9 for party


Ignore:
Timestamp:
11/28/19 14:40:48 (5 years ago)
Author:
bart
Message:

Release 1.1.0

Location:
party
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • party/pom.xml

    r6 r9  
    66        <groupId>geniusweb</groupId>
    77        <artifactId>party</artifactId>
    8         <version>1.0.0</version>
     8        <version>1.1.0</version>
    99        <packaging>jar</packaging>
    1010
     
    1616                <basedir>.</basedir>
    1717                <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>
    1919        </properties>
    2020
     
    3131                        <groupId>geniusweb</groupId>
    3232                        <artifactId>timeline</artifactId>
    33                         <version>1.0.0</version>
     33                        <version>1.1.0</version>
    3434                </dependency>
    3535                <dependency>
    3636                        <groupId>geniusweb</groupId>
    3737                        <artifactId>profile</artifactId>
    38                         <version>1.0.0</version>
     38                        <version>1.1.0</version>
    3939                </dependency>
    4040                <dependency>
    4141                        <groupId>geniusweb</groupId>
    4242                        <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>
    4449                </dependency>
    4550                <dependency>
    4651                        <groupId>tudelft.utilities</groupId>
    4752                        <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>
    5454                </dependency>
    5555                <dependency>
  • party/src/main/java/geniusweb/party/DefaultParty.java

    r1 r9  
    22
    33import geniusweb.actions.Action;
    4 import geniusweb.connection.Connection;
     4import geniusweb.connection.ConnectionEnd;
    55import geniusweb.party.inform.Inform;
    66import tudelft.utilities.listener.Listener;
     
    1313 */
    1414public abstract class DefaultParty implements Party, Listener<Inform> {
    15         private Connection<Inform, Action> connection = null;
     15        private ConnectionEnd<Inform, Action> connection = null;
    1616        protected Reporter reporter;
    1717
     
    2525
    2626        @Override
    27         public void connect(Connection<Inform, Action> connection) {
     27        public void connect(ConnectionEnd<Inform, Action> connection) {
    2828                this.connection = connection;
    2929                connection.addListener(this);
     
    4747         *         connected.
    4848         */
    49         public Connection<Inform, Action> getConnection() {
     49        public ConnectionEnd<Inform, Action> getConnection() {
    5050                return connection;
    5151        }
Note: See TracChangeset for help on using the changeset viewer.