Add more constants

This commit is contained in:
Paul Schaub 2020-04-03 19:51:57 +02:00
parent 1923d174e4
commit e6a1cb2f87
3 changed files with 20 additions and 2 deletions

View File

@ -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";
}

View File

@ -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.
*/

View File

@ -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";
}