mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-14 16:22:07 +01:00
Add more constants
This commit is contained in:
parent
1923d174e4
commit
e6a1cb2f87
3 changed files with 20 additions and 2 deletions
|
@ -0,0 +1,12 @@
|
|||
package org.jivesoftware.smackx.mix.admin;
|
||||
|
||||
import static org.jivesoftware.smackx.mix.core.MixCoreConstants.MIX_NODES;
|
||||
|
||||
public class MixAdminConstants {
|
||||
|
||||
public static final String NODE_ALLOWED = MIX_NODES + ":allowed";
|
||||
|
||||
public static final String NODE_BANNED = MIX_NODES + ":banned";
|
||||
|
||||
public static final String NODE_CONFIG = MIX_NODES + ":config";
|
||||
}
|
|
@ -48,8 +48,6 @@ public class MixCoreConstants {
|
|||
*/
|
||||
public static final String NODE_PARTICIPANTS = MIX_NODES + ":participants";
|
||||
|
||||
public static final String NODE_PRESENCE = MIX_NODES + ":presence";
|
||||
|
||||
/**
|
||||
* For storing general channel information, such as description.
|
||||
*/
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
package org.jivesoftware.smackx.mix.presence;
|
||||
|
||||
import static org.jivesoftware.smackx.mix.core.MixCoreConstants.MIX_NODES;
|
||||
|
||||
public class MixPresenceConstants {
|
||||
|
||||
public static final String NODE_PRESENCE = MIX_NODES + ":presence";
|
||||
}
|
Loading…
Reference in a new issue