Commit a414d781 authored by Christian Schudt's avatar Christian Schudt

Re-add semicolons in enums to satisfy qdox build.

These are actually not required by Java compiler and therefore have been removed with dfb69a76, but qdox needs them.
parent fdc23fa1
......@@ -446,6 +446,6 @@ public class MulticastRouter extends BasicModule implements ServerFeaturesProvid
/**
* These addressees are the primary recipients of the stanza.
*/
to
to;
}
}
......@@ -36,7 +36,7 @@ class ClearspaceVCardTranslator {
// Represents the type of action that was performed.
enum Action {
MODIFY, CREATE, UPDATE, DELETE, NO_ACTION
MODIFY, CREATE, UPDATE, DELETE, NO_ACTION;
}
/**
......@@ -131,7 +131,7 @@ class ClearspaceVCardTranslator {
*/
enum VCardField {
TITLE, ORG_ORGUNIT, ADR_WORK, ADR_HOME, EMAIL_USERID, EMAIL_PREF_USERID, FN,
PHOTO_TYPE, PHOTO_BINVAL, URL, TZ, PHONE_HOME, PHONE_WORK, FAX_WORK, MOBILE_WORK, PAGER_WORK
PHOTO_TYPE, PHOTO_BINVAL, URL, TZ, PHONE_HOME, PHONE_WORK, FAX_WORK, MOBILE_WORK, PAGER_WORK;
}
private static ClearspaceVCardTranslator instance = new ClearspaceVCardTranslator();
......
......@@ -25,7 +25,7 @@ package org.jivesoftware.openfire.clearspace;
*/
public class ConnectionException extends Exception {
public enum ErrorType {AUTHENTICATION, PAGE_NOT_FOUND, UPDATE_STATE, UNKNOWN_HOST, SERVICE_NOT_AVAIBLE, OTHER}
public enum ErrorType {AUTHENTICATION, PAGE_NOT_FOUND, UPDATE_STATE, UNKNOWN_HOST, SERVICE_NOT_AVAIBLE, OTHER;}
private ErrorType errorType;
......
......@@ -77,6 +77,6 @@ public class ExternalComponentConfiguration {
/**
* The XMPP entity is NOT allowed to connect to the server.
*/
blocked
blocked;
}
}
......@@ -254,7 +254,7 @@ public class HistoryStrategy {
* Strategy type.
*/
public enum Type {
defaulType, none, all, number
defaulType, none, all, number;
}
/**
......
......@@ -34,7 +34,7 @@ public abstract class MUCEventDelegate {
public enum InvitationResult {
HANDLED_BY_DELEGATE,
HANDLED_BY_OPENFIRE,
REJECTED
REJECTED;
}
/**
......
......@@ -162,7 +162,7 @@ public class SASLAuthentication {
/**
* SASL negotiation has been successful.
*/
authenticated
authenticated;
}
/**
......
......@@ -53,5 +53,5 @@ public enum TLSStatus {
/**
* Handshaking is OK.
*/
OK
OK;
}
......@@ -2308,6 +2308,6 @@ public abstract class Node {
/**
* Dynamically specify a replyto of the item publisher.
*/
publisher
publisher;
}
}
......@@ -103,6 +103,6 @@ public class RemoteServerConfiguration implements Cacheable, Externalizable {
/**
* The XMPP entity is NOT allowed to connect to the server.
*/
blocked
blocked;
}
}
......@@ -383,6 +383,6 @@ public class RemoteServerManager {
* Only the XMPP entities listed in the <b>allowed list</b> are able to connect to
* the server.
*/
whitelist
whitelist;
}
}
......@@ -136,6 +136,6 @@ public class PropertyEventDispatcher {
/**
* An XML property was deleted.
*/
xml_property_deleted
xml_property_deleted;
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment