Uses of Class
org.jivesoftware.smack.packet.PrivacyItem

Packages that use PrivacyItem
org.jivesoftware.smack Core classes of the Smack API. 
org.jivesoftware.smack.packet XML packets that are part of the XMPP protocol. 
org.jivesoftware.smack.provider Provides pluggable parsing of incoming IQ's and packet extensions. 
 

Uses of PrivacyItem in org.jivesoftware.smack
 

Methods in org.jivesoftware.smack that return types with arguments of type PrivacyItem
 java.util.List<PrivacyItem> PrivacyList.getItems()
           
 

Method parameters in org.jivesoftware.smack with type arguments of type PrivacyItem
 void PrivacyListManager.createPrivacyList(java.lang.String listName, java.util.List<PrivacyItem> privacyItems)
          The client has created a new list.
 void PrivacyListListener.setPrivacyList(java.lang.String listName, java.util.List<PrivacyItem> listItem)
          Set or update a privacy list with PrivacyItem.
 void PrivacyListManager.updatePrivacyList(java.lang.String listName, java.util.List<PrivacyItem> privacyItems)
          The client has edited an existing list.
 

Uses of PrivacyItem in org.jivesoftware.smack.packet
 

Methods in org.jivesoftware.smack.packet that return PrivacyItem
 PrivacyItem Privacy.getItem(java.lang.String listName, int order)
          Returns the privacy item in the specified order.
 

Methods in org.jivesoftware.smack.packet that return types with arguments of type PrivacyItem
 java.util.List<PrivacyItem> Privacy.getActivePrivacyList()
          Returns the active privacy list or null if none was found.
 java.util.List<PrivacyItem> Privacy.getDefaultPrivacyList()
          Returns the default privacy list or null if none was found.
 java.util.Map<java.lang.String,java.util.List<PrivacyItem>> Privacy.getItemLists()
          Returns the collection of privacy list that the user holds.
 java.util.List<PrivacyItem> Privacy.getPrivacyList(java.lang.String listName)
          Returns a specific privacy list.
 java.util.List<PrivacyItem> Privacy.setActivePrivacyList()
          Set the active list based on the default list.
 

Method parameters in org.jivesoftware.smack.packet with type arguments of type PrivacyItem
 void PrivacyTest.PrivacyClient.setPrivacyList(java.lang.String listName, java.util.List<PrivacyItem> listItem)
           
 java.util.List Privacy.setPrivacyList(java.lang.String listName, java.util.List<PrivacyItem> listItem)
          Set or update a privacy list with privacy items.
 

Uses of PrivacyItem in org.jivesoftware.smack.provider
 

Methods in org.jivesoftware.smack.provider that return PrivacyItem
 PrivacyItem PrivacyProvider.parseItem(org.xmlpull.v1.XmlPullParser parser)