2006-07-24 00:15:43 +02:00
|
|
|
package org.jivesoftware.smack;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import org.jivesoftware.smack.packet.Privacy;
|
2012-10-26 12:47:55 +02:00
|
|
|
import org.jivesoftware.smack.packet.PrivacyItem;
|
2006-07-24 00:15:43 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This class supports automated tests about privacy communication from the
|
|
|
|
* server to the client.
|
|
|
|
*
|
|
|
|
* @author Francisco Vives
|
|
|
|
*/
|
|
|
|
|
|
|
|
public class PrivacyClient implements PrivacyListListener {
|
|
|
|
/**
|
|
|
|
* holds if the receiver list was modified
|
|
|
|
*/
|
|
|
|
private boolean wasModified = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* holds a privacy to hold server requests Clients should not use Privacy
|
|
|
|
* class since it is private for the smack framework.
|
|
|
|
*/
|
|
|
|
private Privacy privacy = new Privacy();
|
|
|
|
|
|
|
|
public PrivacyClient(PrivacyListManager manager) {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
2012-10-26 12:47:55 +02:00
|
|
|
public void setPrivacyList(String listName, List<PrivacyItem> listItem) {
|
2006-07-24 00:15:43 +02:00
|
|
|
privacy.setPrivacyList(listName, listItem);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void updatedPrivacyList(String listName) {
|
|
|
|
this.wasModified = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean wasModified() {
|
|
|
|
return this.wasModified;
|
|
|
|
}
|
|
|
|
}
|