aboutsummaryrefslogtreecommitdiff
path: root/src/com/juick/jabber/ws/WSKeepAlive.java
blob: ba6376a4ebbaaa67b49fe6085d6520e55d24fb73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.juick.jabber.ws;

import java.sql.Connection;

/**
 *
 * @author ugnich
 */
public class WSKeepAlive implements Runnable {

    Connection sql;

    public WSKeepAlive(Connection sql) {
        this.sql = sql;
    }

    @Override
    public void run() {
    }
}