mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-01 01:35:59 +01:00
f5c5213e61
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@4651 b35dd754-fafc-0310-a699-88a17e54d16e
41 lines
1,022 B
Java
41 lines
1,022 B
Java
package org.jivesoftware.smack;
|
|
|
|
import java.util.List;
|
|
|
|
import org.jivesoftware.smack.packet.Privacy;
|
|
|
|
/**
|
|
* 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();
|
|
}
|
|
|
|
public void setPrivacyList(String listName, List listItem) {
|
|
privacy.setPrivacyList(listName, listItem);
|
|
}
|
|
|
|
public void updatedPrivacyList(String listName) {
|
|
this.wasModified = true;
|
|
}
|
|
|
|
public boolean wasModified() {
|
|
return this.wasModified;
|
|
}
|
|
}
|