aboutsummaryrefslogtreecommitdiffstats
path: root/src/eu/siacs/conversations/http/HttpConnectionManager.java
blob: 7393cf36ebf1874ae115f65a3e6482047a2b5729 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package eu.siacs.conversations.http;

import java.net.URL;
import java.util.List;
import java.util.concurrent.CopyOnWriteArrayList;

import eu.siacs.conversations.entities.Message;
import eu.siacs.conversations.services.AbstractConnectionManager;
import eu.siacs.conversations.services.XmppConnectionService;

public class HttpConnectionManager extends AbstractConnectionManager {

	public HttpConnectionManager(XmppConnectionService service) {
		super(service);
	}
	
	private List<HttpConnection> connections = new CopyOnWriteArrayList<HttpConnection>();
	
	
	public HttpConnection createNewConnection(Message message) {
		HttpConnection connection = new HttpConnection(this);
		connection.init(message);
		this.connections.add(connection);
		return connection;
	}
	
	public HttpConnection createNewConnection(Message message, URL url) {
		HttpConnection connection = new HttpConnection(this);
		connection.init(message,url);
		this.connections.add(connection);
		return connection;
	}
	
	public void finishConnection(HttpConnection connection) {
		this.connections.remove(connection);
	}
}