java/nekurak.net-ejb/src/java/cz/frantovo/nekurak/chat/Nastaveni.java
author František Kučera <franta-hg@frantovo.cz>
Wed Jun 30 00:26:14 2010 +0200 (2010-06-30)
changeset 149 8238cdb4113a
permissions -rw-r--r--
XMPP chat – první verze.
franta-hg@149
     1
package cz.frantovo.nekurak.chat;
franta-hg@149
     2
franta-hg@149
     3
import java.util.ArrayList;
franta-hg@149
     4
import java.util.Collection;
franta-hg@149
     5
franta-hg@149
     6
/**
franta-hg@149
     7
 * Nastavení serveru, singletonu, typicky jen jedno v celém systému.
franta-hg@149
     8
 * Můžeme uchovávat jejich starší verze.
franta-hg@149
     9
 * @author fiki
franta-hg@149
    10
 */
franta-hg@149
    11
public class Nastaveni {
franta-hg@149
    12
franta-hg@149
    13
	private Collection<UcetRobota> uctyRobota = new ArrayList<UcetRobota>();
franta-hg@149
    14
franta-hg@149
    15
	public Collection<UcetRobota> getUctyRobota() {
franta-hg@149
    16
		return uctyRobota;
franta-hg@149
    17
	}
franta-hg@149
    18
franta-hg@149
    19
	public void setUctyRobota(Collection<UcetRobota> uctyRobota) {
franta-hg@149
    20
		this.uctyRobota = uctyRobota;
franta-hg@149
    21
	}
franta-hg@149
    22
}