mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-12 19:02:06 +01:00
Make Bind IQ constructor private
This commit is contained in:
parent
03031dfb5d
commit
2bf6435881
1 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
/**
|
||||
*
|
||||
* Copyright 2003-2007 Jive Software.
|
||||
* Copyright 2003-2007 Jive Software, 2015-2016 Florian Schmaus.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -31,7 +31,7 @@ import org.jxmpp.jid.parts.Resourcepart;
|
|||
*
|
||||
* @author Gaston Dombiak
|
||||
*/
|
||||
public class Bind extends IQ {
|
||||
public final class Bind extends IQ {
|
||||
|
||||
public static final String ELEMENT = "bind";
|
||||
public static final String NAMESPACE = "urn:ietf:params:xml:ns:xmpp-bind";
|
||||
|
@ -39,7 +39,7 @@ public class Bind extends IQ {
|
|||
private final Resourcepart resource;
|
||||
private final EntityFullJid jid;
|
||||
|
||||
public Bind(Resourcepart resource, EntityFullJid jid) {
|
||||
private Bind(Resourcepart resource, EntityFullJid jid) {
|
||||
super(ELEMENT, NAMESPACE);
|
||||
this.resource = resource;
|
||||
this.jid = jid;
|
||||
|
|
Loading…
Reference in a new issue