Home | History | Annotate | Download | only in smackx

Lines Matching defs:user

124      * The user to get and set private data for. In most cases, this value should
128 private String user;
146 * Creates a new private data manager for a specific user (special case). Most
147 * servers only support getting and setting private data for the user that
155 * @param user the XMPP address of the user to get and set private data for.
157 public PrivateDataManager(Connection connection, String user) {
162 this.user = user;
192 // Address the packet to the other account if user has been set.
193 if (user != null) {
194 privateDataGet.setTo(user);
238 // Address the packet to the other account if user has been set.
239 if (user != null) {
240 privateDataSet.setTo(user);