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