Commit 8498094d authored by Quality Assurance's avatar Quality Assurance Committed by qa

Small format changes to support new source filtering;

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@6800 b35dd754-fafc-0310-a699-88a17e54d16e
parent fedc2c0e
......@@ -800,6 +800,7 @@ public class DbConnectionManager {
* there are certain cases where it's critical to know the database for
* performance reasons.
*/
@SuppressWarnings({"UnnecessarySemicolon"}) // Support for QDox parsing
public static enum DatabaseType {
oracle,
......@@ -816,7 +817,7 @@ public class DbConnectionManager {
interbase,
unknown
unknown;
}
private DbConnectionManager() {
......
......@@ -217,6 +217,7 @@ public class JDBCAuthProvider implements AuthProvider {
/**
* Indicates how the password is stored.
*/
@SuppressWarnings({"UnnecessarySemicolon"}) // Support for QDox Parser
public enum PasswordType {
/**
......@@ -232,7 +233,7 @@ public class JDBCAuthProvider implements AuthProvider {
/**
* The password is stored as a hex-encoded SHA-1 hash.
*/
sha1
sha1;
}
/**
......
......@@ -746,6 +746,7 @@ public class PluginManager {
/**
* An enumberation for plugin license agreement types.
*/
@SuppressWarnings({"UnnecessarySemicolon"}) // Support for QDox Parser
public enum License {
/**
......@@ -773,7 +774,7 @@ public class PluginManager {
* one of the other choices. The license agreement should be detailed in the
* plugin Readme.
*/
other
other;
}
/**
......
......@@ -94,6 +94,7 @@ public class SASLAuthentication {
}
}
@SuppressWarnings({"UnnecessarySemicolon"}) // Support for QDox Parser
public enum Status {
/**
* Entity needs to respond last challenge. Session is still negotiating
......@@ -108,7 +109,7 @@ public class SASLAuthentication {
/**
* SASL negotiation has been successful.
*/
authenticated
authenticated;
}
/**
......
......@@ -56,6 +56,7 @@ public interface Statistic {
/**
* The type of statistic.
*/
@SuppressWarnings({"UnnecessarySemicolon"}) // Support for QDox Parser
public enum Type {
/**
......@@ -73,13 +74,13 @@ public interface Statistic {
*/
// TODO: rate_total,
/**
/*
* The average count over a time period. An example would be the
* number of users in multi-user chats. Each time the {@link Statistic#sample()}
* method is invoked, it should return the current measurement of the data, irrelevant of
* previous reads of the data.
*/
count,
count;
/**
* The max count over a time period. An example would be the maximum number of users
......
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