OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PrivacyItem
(Results
1 - 6
of
6
) sorted by null
/external/smack/src/org/jivesoftware/smack/
PrivacyList.java
20
import org.jivesoftware.smack.packet.
PrivacyItem
;
28
* <li>Handle many {@link org.jivesoftware.smack.packet.
PrivacyItem
}.</li>
33
* {@link
PrivacyItem
Privacy Items} can handle different kind of blocking communications based on JID, group,
46
/** Holds the list of {@see
PrivacyItem
} **/
47
private List<
PrivacyItem
> items;
50
String listName, List<
PrivacyItem
> privacyItems) {
66
public List<
PrivacyItem
> getItems() {
PrivacyListListener.java
22
import org.jivesoftware.smack.packet.
PrivacyItem
;
37
* Set or update a privacy list with
PrivacyItem
.
42
public void setPrivacyList(String listName, List<
PrivacyItem
> listItem);
PrivacyListManager.java
26
import org.jivesoftware.smack.packet.
PrivacyItem
;
39
* subscription type or globally (@see
PrivacyItem
).
128
for (Map.Entry<String,List<
PrivacyItem
>> entry : privacy.getItemLists().entrySet()) {
130
List<
PrivacyItem
> items = entry.getValue();
244
* Answer a privacy containing the list structre without {@link
PrivacyItem
}.
297
private List<
PrivacyItem
> getPrivacyListItems(String listName) throws XMPPException {
301
request.setPrivacyList(listName, new ArrayList<
PrivacyItem
>());
414
public void createPrivacyList(String listName, List<
PrivacyItem
> privacyItems) throws XMPPException {
421
* list of privacy items. The {@link
PrivacyItem
} list MUST contain all elements in the
428
public void updatePrivacyList(String listName, List<
PrivacyItem
> privacyItems) throws XMPPException {
[
all
...]
/external/smack/src/org/jivesoftware/smack/packet/
Privacy.java
37
* subscription type or globally {@link
PrivacyItem
}
52
private Map<String, List<
PrivacyItem
>> itemLists = new HashMap<String, List<
PrivacyItem
>>();
58
* @param listItem the {@link
PrivacyItem
} that rules the list.
61
public List<
PrivacyItem
> setPrivacyList(String listName, List<
PrivacyItem
> listItem) {
72
public List<
PrivacyItem
> setActivePrivacyList() {
97
* @return list with {@link
PrivacyItem
} or <tt>null</tt> if none was found.
99
public List<
PrivacyItem
> getActivePrivacyList() {
111
* @return list with {@link
PrivacyItem
} or <tt>null</tt> if none was found.
[
all
...]
PrivacyItem.java
33
public class
PrivacyItem
{
61
public
PrivacyItem
(String type, boolean allow, int order) {
/external/smack/src/org/jivesoftware/smack/provider/
PrivacyProvider.java
23
import org.jivesoftware.smack.packet.
PrivacyItem
;
32
* of {@link
PrivacyItem
} and {@link org.jivesoftware.smack.packet.
PrivacyItem
.PrivacyRule}.
84
ArrayList<
PrivacyItem
> items = new ArrayList<
PrivacyItem
>();
103
public
PrivacyItem
parseItem(XmlPullParser parser) throws Exception {
124
PrivacyItem
item = new
PrivacyItem
(type, allow, order);
Completed in 1481 milliseconds