Commit dcea025c authored by Guus der Kinderen's avatar Guus der Kinderen

Remove redundant modifiers on interfaces or interface components.

These add nothing, but warnings in tooling.
parent 10149310
......@@ -263,7 +263,7 @@ public class PluginFilter implements Filter {
* @throws ServletException if a servlet exception occurs.
* @return true if further filters in the chain should be run.
*/
public boolean doFilter(ServletRequest request, ServletResponse response)
boolean doFilter( ServletRequest request, ServletResponse response )
throws IOException, ServletException;
}
......
......@@ -39,7 +39,7 @@ public interface ConnectionProvider {
* @return true if the Connection objects returned by this provider are
* pooled.
*/
public boolean isPooled();
boolean isPooled();
/**
* Returns a database connection. When a Jive component is done with a
......@@ -52,20 +52,20 @@ public interface ConnectionProvider {
* @return a Connection object.
* @throws SQLException is an SQL error occured while retrieving the connection.
*/
public Connection getConnection() throws SQLException;
Connection getConnection() throws SQLException;
/**
* Starts the connection provider. For some connection providers, this
* will be a no-op. However, connection provider users should always call
* this method to make sure the connection provider is started.
*/
public void start();
void start();
/**
* This method should be called whenever properties have been changed so
* that the changes will take effect.
*/
public void restart();
void restart();
/**
* Tells the connection provider to destroy itself. For many connection
......@@ -74,5 +74,5 @@ public interface ConnectionProvider {
* from one connection provider to another to ensure that there are no
* dangling database connections.
*/
public void destroy();
void destroy();
}
\ No newline at end of file
......@@ -34,5 +34,5 @@ public interface ChannelHandler<T extends Packet> {
* @throws PacketException thrown if the packet is malformed (results in the sender's
* session being shutdown).
*/
public abstract void process(T packet) throws UnauthorizedException, PacketException;
void process( T packet ) throws UnauthorizedException, PacketException;
}
\ No newline at end of file
......@@ -38,7 +38,7 @@ public interface Connection extends Closeable {
*
* @return true if the socket remains valid, false otherwise.
*/
public boolean validate();
boolean validate();
/**
* Initializes the connection with it's owning session. Allows the
......@@ -47,7 +47,7 @@ public interface Connection extends Closeable {
*
* @param session the session that owns this connection
*/
public void init(LocalSession session);
void init( LocalSession session );
/**
* Returns the raw IP address of this <code>InetAddress</code>
......@@ -57,7 +57,7 @@ public interface Connection extends Closeable {
* @return the raw IP address of this object.
* @throws java.net.UnknownHostException if IP address of host could not be determined.
*/
public byte[] getAddress() throws UnknownHostException;
byte[] getAddress() throws UnknownHostException;
/**
* Returns the IP address string in textual presentation.
......@@ -65,7 +65,7 @@ public interface Connection extends Closeable {
* @return the raw IP address in a string format.
* @throws java.net.UnknownHostException if IP address of host could not be determined.
*/
public String getHostAddress() throws UnknownHostException;
String getHostAddress() throws UnknownHostException;
/**
* Gets the host name for this IP address.
......@@ -93,7 +93,7 @@ public interface Connection extends Closeable {
* @see java.net.InetAddress#getCanonicalHostName
* @see SecurityManager#checkConnect
*/
public String getHostName() throws UnknownHostException;
String getHostName() throws UnknownHostException;
/**
* Returns the local underlying {@link javax.security.cert.X509Certificate}
......@@ -103,7 +103,7 @@ public interface Connection extends Closeable {
* first followed by any certificate authorities. If no certificates
* is present for the connection, then <tt>null</tt> is returned.
*/
public Certificate[] getLocalCertificates();
Certificate[] getLocalCertificates();
/**
* Returns the underlying {@link javax.security.cert.X509Certificate} for
......@@ -112,7 +112,7 @@ public interface Connection extends Closeable {
* @return an ordered array of peer certificates, with the peer's own
* certificate first followed by any certificate authorities.
*/
public Certificate[] getPeerCertificates();
Certificate[] getPeerCertificates();
/**
* Keeps track if the other peer of this session presented a self-signed certificate. When
......@@ -122,7 +122,7 @@ public interface Connection extends Closeable {
*
* @param isSelfSigned true if the other peer presented a self-signed certificate.
*/
public void setUsingSelfSignedCertificate(boolean isSelfSigned);
void setUsingSelfSignedCertificate( boolean isSelfSigned );
/**
* Returns true if the other peer of this session presented a self-signed certificate. When
......@@ -132,7 +132,7 @@ public interface Connection extends Closeable {
*
* @return true if the other peer of this session presented a self-signed certificate.
*/
public boolean isUsingSelfSignedCertificate();
boolean isUsingSelfSignedCertificate();
/**
* Close this session including associated socket connection. The order of
......@@ -147,28 +147,28 @@ public interface Connection extends Closeable {
* (idempotent, try-with-resources, etc.)
*/
@Override
public void close();
void close();
/**
* Notification message indicating that the server is being shutdown. Implementors
* should send a stream error whose condition is system-shutdown before closing
* the connection.
*/
public void systemShutdown();
void systemShutdown();
/**
* Returns true if the connection/session is closed.
*
* @return true if the connection is closed.
*/
public boolean isClosed();
boolean isClosed();
/**
* Returns true if this connection is secure.
*
* @return true if the connection is secure (e.g. SSL/TLS)
*/
public boolean isSecure();
boolean isSecure();
/**
* Registers a listener for close event notification. Registrations after
......@@ -181,7 +181,7 @@ public interface Connection extends Closeable {
* @param listener the listener to register for events.
* @param handbackMessage the object to send in the event notification.
*/
public void registerCloseListener(ConnectionCloseListener listener, Object handbackMessage);
void registerCloseListener( ConnectionCloseListener listener, Object handbackMessage );
/**
* Removes a registered close event listener. Registered listeners must
......@@ -191,7 +191,7 @@ public interface Connection extends Closeable {
*
* @param listener the listener to deregister for close events.
*/
public void removeCloseListener(ConnectionCloseListener listener);
void removeCloseListener( ConnectionCloseListener listener );
/**
* Delivers the packet to this connection without checking the recipient.
......@@ -200,7 +200,7 @@ public interface Connection extends Closeable {
* @param packet the packet to deliver.
* @throws org.jivesoftware.openfire.auth.UnauthorizedException if a permission error was detected.
*/
public void deliver(Packet packet) throws UnauthorizedException;
void deliver( Packet packet ) throws UnauthorizedException;
/**
* Delivers raw text to this connection. This is a very low level way for sending
......@@ -213,7 +213,7 @@ public interface Connection extends Closeable {
*
* @param text the XML stanzas represented kept in a String.
*/
public void deliverRawText(String text);
void deliverRawText( String text );
/**
* Returns true if the connected client is a flash client. Flash clients need
......@@ -223,7 +223,7 @@ public interface Connection extends Closeable {
*
* @return true if the connected client is a flash client.
*/
public boolean isFlashClient();
boolean isFlashClient();
/**
* Sets whether the connected client is a flash client. Flash clients need to
......@@ -233,7 +233,7 @@ public interface Connection extends Closeable {
*
* @param flashClient true if the if the connection is a flash client.
*/
public void setFlashClient(boolean flashClient);
void setFlashClient( boolean flashClient );
/**
* Returns the major version of XMPP being used by this connection
......@@ -243,7 +243,7 @@ public interface Connection extends Closeable {
*
* @return the major XMPP version being used by this connection.
*/
public int getMajorXMPPVersion();
int getMajorXMPPVersion();
/**
* Returns the minor version of XMPP being used by this connection
......@@ -253,7 +253,7 @@ public interface Connection extends Closeable {
*
* @return the minor XMPP version being used by this connection.
*/
public int getMinorXMPPVersion();
int getMinorXMPPVersion();
/**
* Sets the XMPP version information. In most cases, the version should be "1.0".
......@@ -263,7 +263,7 @@ public interface Connection extends Closeable {
* @param majorVersion the major version.
* @param minorVersion the minor version.
*/
public void setXMPPVersion(int majorVersion, int minorVersion);
void setXMPPVersion( int majorVersion, int minorVersion );
/**
* Returns true if the connection is using compression.
......
......@@ -28,5 +28,5 @@ public interface ConnectionCloseListener {
*
* @param handback The handback object associated with the connection listener during Connection.registerCloseListener()
*/
public void onConnectionClose(Object handback);
void onConnectionClose( Object handback );
}
......@@ -30,36 +30,36 @@ public interface ConnectionManager {
* and unsecured connections. Clients will initially connect using an unsecure
* connection and may secure it by using StartTLS.
*/
final int DEFAULT_PORT = 5222;
int DEFAULT_PORT = 5222;
/**
* The default legacy Jabber port for SSL traffic. This old method, and soon
* to be deprecated, uses encrypted connections as soon as they are created.
*/
final int DEFAULT_SSL_PORT = 5223;
int DEFAULT_SSL_PORT = 5223;
/**
* The default XMPP port for external components.
*/
final int DEFAULT_COMPONENT_PORT = 5275;
int DEFAULT_COMPONENT_PORT = 5275;
/**
* The XMPP port for external components using SSL traffic.
*/
final int DEFAULT_COMPONENT_SSL_PORT = 5276;
int DEFAULT_COMPONENT_SSL_PORT = 5276;
/**
* The default XMPP port for server2server communication.
*/
final int DEFAULT_SERVER_PORT = 5269;
int DEFAULT_SERVER_PORT = 5269;
/**
* The default XMPP port for connection multiplex.
*/
final int DEFAULT_MULTIPLEX_PORT = 5262;
int DEFAULT_MULTIPLEX_PORT = 5262;
/**
* The default XMPP port for connection multiplex.
*/
final int DEFAULT_MULTIPLEX_SSL_PORT = 5263;
int DEFAULT_MULTIPLEX_SSL_PORT = 5263;
/**
* Returns an array of the ports managed by this connection manager.
......@@ -67,7 +67,7 @@ public interface ConnectionManager {
* @return an iterator of the ports managed by this connection manager
* (can be an empty but never null).
*/
public Collection<ServerPort> getPorts();
Collection<ServerPort> getPorts();
/**
* Sets if the port listener for unsecured clients will be available or not. When disabled
......@@ -76,7 +76,7 @@ public interface ConnectionManager {
*
* @param enabled true if new unsecured clients will be able to connect to the server.
*/
public void enableClientListener(boolean enabled);
void enableClientListener( boolean enabled );
/**
* Returns true if the port listener for unsecured clients is available. When disabled
......@@ -85,7 +85,7 @@ public interface ConnectionManager {
*
* @return true if the port listener for unsecured clients is available.
*/
public boolean isClientListenerEnabled();
boolean isClientListenerEnabled();
/**
* Sets if the port listener for secured clients will be available or not. When disabled
......@@ -94,7 +94,7 @@ public interface ConnectionManager {
*
* @param enabled true if new secured clients will be able to connect to the server.
*/
public void enableClientSSLListener(boolean enabled);
void enableClientSSLListener( boolean enabled );
/**
* Returns true if the port listener for secured clients is available. When disabled
......@@ -103,7 +103,7 @@ public interface ConnectionManager {
*
* @return true if the port listener for unsecured clients is available.
*/
public boolean isClientSSLListenerEnabled();
boolean isClientSSLListenerEnabled();
/**
* Sets if the port listener for external components will be available or not. When disabled
......@@ -112,7 +112,7 @@ public interface ConnectionManager {
*
* @param enabled true if new external components will be able to connect to the server.
*/
public void enableComponentListener(boolean enabled);
void enableComponentListener( boolean enabled );
/**
* Returns true if the port listener for external components is available. When disabled
......@@ -121,7 +121,7 @@ public interface ConnectionManager {
*
* @return true if the port listener for external components is available.
*/
public boolean isComponentListenerEnabled();
boolean isComponentListenerEnabled();
/**
* Sets if the port listener for remote servers will be available or not. When disabled
......@@ -130,7 +130,7 @@ public interface ConnectionManager {
*
* @param enabled true if new remote servers will be able to connect to the server.
*/
public void enableServerListener(boolean enabled);
void enableServerListener( boolean enabled );
/**
* Returns true if the port listener for remote servers is available. When disabled
......@@ -139,7 +139,7 @@ public interface ConnectionManager {
*
* @return true if the port listener for remote servers is available.
*/
public boolean isServerListenerEnabled();
boolean isServerListenerEnabled();
/**
* Sets if the port listener for connection managers will be available or not. When disabled
......@@ -148,7 +148,7 @@ public interface ConnectionManager {
*
* @param enabled true if new connection managers will be able to connect to the server.
*/
public void enableConnectionManagerListener(boolean enabled);
void enableConnectionManagerListener( boolean enabled );
/**
* Returns true if the port listener for connection managers is available. When disabled
......@@ -157,49 +157,49 @@ public interface ConnectionManager {
*
* @return true if the port listener for connection managers is available.
*/
public boolean isConnectionManagerListenerEnabled();
boolean isConnectionManagerListenerEnabled();
/**
* Sets the port to use for unsecured clients. Default port: 5222.
*
* @param port the port to use for unsecured clients.
*/
public void setClientListenerPort(int port);
void setClientListenerPort( int port );
/**
* Returns the port to use for unsecured clients. Default port: 5222.
*
* @return the port to use for unsecured clients.
*/
public int getClientListenerPort();
int getClientListenerPort();
/**
* Sets the port to use for secured clients. Default port: 5223.
*
* @param port the port to use for secured clients.
*/
public void setClientSSLListenerPort(int port);
void setClientSSLListenerPort( int port );
/**
* Returns the port to use for secured clients. Default port: 5223.
*
* @return the port to use for secured clients.
*/
public int getClientSSLListenerPort();
int getClientSSLListenerPort();
/**
* Sets the port to use for external components.
*
* @param port the port to use for external components.
*/
public void setComponentListenerPort(int port);
void setComponentListenerPort( int port );
/**
* Returns the port to use for external components.
*
* @return the port to use for external components.
*/
public int getComponentListenerPort();
int getComponentListenerPort();
/**
* Sets the port to use for remote servers. This port is used for remote servers to connect
......@@ -207,7 +207,7 @@ public interface ConnectionManager {
*
* @param port the port to use for remote servers.
*/
public void setServerListenerPort(int port);
void setServerListenerPort( int port );
/**
* Returns the port to use for remote servers. This port is used for remote servers to connect
......@@ -215,7 +215,7 @@ public interface ConnectionManager {
*
* @return the port to use for remote servers.
*/
public int getServerListenerPort();
int getServerListenerPort();
/**
* Sets the port to use for connection managers. This port is used for connection managers
......@@ -223,7 +223,7 @@ public interface ConnectionManager {
*
* @param port the port to use for connection managers.
*/
public void setConnectionManagerListenerPort(int port);
void setConnectionManagerListenerPort( int port );
/**
* Returns the port to use for remote servers. This port is used for connection managers
......@@ -231,5 +231,5 @@ public interface ConnectionManager {
*
* @return the port to use for connection managers.
*/
public int getConnectionManagerListenerPort();
int getConnectionManagerListenerPort();
}
......@@ -37,5 +37,5 @@ public interface PacketDeliverer {
* @param packet the packet to route
* @throws PacketException if the packet is null or the packet could not be routed.
*/
public void deliver(Packet packet) throws UnauthorizedException, PacketException;
void deliver( Packet packet ) throws UnauthorizedException, PacketException;
}
......@@ -37,12 +37,12 @@ public interface PresenceManager {
/**
* Sort by username.
*/
public static final int SORT_USERNAME = 0;
int SORT_USERNAME = 0;
/**
* Sort by online time.
*/
public static final int SORT_ONLINE_TIME = 1;
int SORT_ONLINE_TIME = 1;
/**
* <p>Returns the availability of the user.<p>
......@@ -50,7 +50,7 @@ public interface PresenceManager {
* @param user the user who's availability is in question
* @return true if the user as available for messaging (1 or more available sessions)
*/
public boolean isAvailable(User user);
boolean isAvailable( User user );
/**
* Returns the user's current presence, or <tt>null</tt> if the user is unavailable.
......@@ -60,7 +60,7 @@ public interface PresenceManager {
* @param user the user.
* @return the user's current presence.
*/
public Presence getPresence(User user);
Presence getPresence( User user );
/**
* Returns all presences for the user, or <tt>null</tt> if the user is unavailable.
......@@ -68,7 +68,7 @@ public interface PresenceManager {
* @param username the name of the user.
* @return the Presence packets for all the users's connected sessions.
*/
public Collection<Presence> getPresences(String username);
Collection<Presence> getPresences( String username );
/**
* Probes the presence of the given XMPPAddress and attempts to send it to the given user. If
......@@ -78,7 +78,7 @@ public interface PresenceManager {
* @param prober The user requesting the probe
* @param probee The XMPPAddress whos presence we would like sent have have probed
*/
public void probePresence(JID prober, JID probee);
void probePresence( JID prober, JID probee );
/**
* Handle a presence probe sent by a remote server. The logic to apply is the following: If
......@@ -88,7 +88,7 @@ public interface PresenceManager {
*
* @param packet the received probe presence from a remote server.
*/
public void handleProbe(Presence packet) throws UnauthorizedException;
void handleProbe( Presence packet ) throws UnauthorizedException;
/**
* Returns true if the the prober is allowed to see the presence of the probee.
......@@ -99,7 +99,7 @@ public interface PresenceManager {
* @throws UserNotFoundException If the probee does not exist in the local server or the prober
* is not present in the roster of the probee.
*/
public boolean canProbePresence(JID prober, String probee) throws UserNotFoundException;
boolean canProbePresence( JID prober, String probee ) throws UserNotFoundException;
/**
* Sends unavailable presence from all of the user's available resources to the remote user.
......@@ -111,21 +111,21 @@ public interface PresenceManager {
* @param recipientJID JID of the remote user that will receive the unavailable presences.
* @param userJID JID of the local user.
*/
public void sendUnavailableFromSessions(JID recipientJID, JID userJID);
void sendUnavailableFromSessions( JID recipientJID, JID userJID );
/**
* Notification message saying that the sender of the given presence just became available.
*
* @param presence the presence sent by the available user.
*/
public void userAvailable(Presence presence);
void userAvailable( Presence presence );
/**
* Notification message saying that the sender of the given presence just became unavailable.
*
* @param presence the presence sent by the unavailable user.
*/
public void userUnavailable(Presence presence);
void userUnavailable( Presence presence );
/**
* Returns the status sent by the user in his last unavailable presence or <tt>null</tt> if the
......@@ -135,7 +135,7 @@ public interface PresenceManager {
* @return the status sent by the user in his last unavailable presence or <tt>null</tt> if the
* user is online or never set such information.
*/
public String getLastPresenceStatus(User user);
String getLastPresenceStatus( User user );
/**
* Returns the number of milliseconds since the user went offline or -1 if such information
......@@ -145,5 +145,5 @@ public interface PresenceManager {
* @return the number of milliseconds since the user went offline or -1 if such information
* is not available or if the user is online.
*/
public long getLastActivity(User user);
long getLastActivity( User user );
}
\ No newline at end of file
......@@ -33,5 +33,5 @@ public interface RoutableChannelHandler extends ChannelHandler<Packet> {
*
* @return the XMPP address.
*/
public JID getAddress();
JID getAddress();
}
......@@ -29,5 +29,5 @@ public interface StreamID {
*
* @return The unique ID for this stream
*/
public String getID();
String getID();
}
\ No newline at end of file
......@@ -28,5 +28,5 @@ public interface StreamIDFactory {
*
* @return A new, unique stream id
*/
public StreamID createStreamID();
StreamID createStreamID();
}
......@@ -32,14 +32,14 @@ public interface AdminProvider {
*
* @return The list of admin users.
*/
public List<JID> getAdmins();
List<JID> getAdmins();
/**
* Sets the list of admin accounts, by JID.
*
* @param admins List of JIDs of accounts to grant admin access to.
*/
public void setAdmins(List<JID> admins);
void setAdmins( List<JID> admins );
/**
* Indicates whether the admin list is read-only or not. In other words, whether an admin can
......@@ -47,6 +47,6 @@ public interface AdminProvider {
*
* @return True or false if the admin list can be edited.
*/
public boolean isReadOnly();
boolean isReadOnly();
}
......@@ -32,10 +32,10 @@ import java.util.Iterator;
public interface AuditManager {
// Presence transitions
public static final int PRESENCE_UNAVAILABLE_AVAILABLE = 1;
public static final int PRESENCE_AVAILABLE_AVAILABLE = 2;
public static final int PRESENCE_AVAILABLE_UNAVAILABLE = 4;
public static final int PRESENCE_UNAVAILABLE_UNAVAILABLE = 8;
int PRESENCE_UNAVAILABLE_AVAILABLE = 1;
int PRESENCE_AVAILABLE_AVAILABLE = 2;
int PRESENCE_AVAILABLE_UNAVAILABLE = 4;
int PRESENCE_UNAVAILABLE_UNAVAILABLE = 8;
/**
* Determines if auditing is enabled at all.
......
......@@ -59,7 +59,7 @@ public interface AuthProvider {
* @throws UnsupportedOperationException if the provider does not
* support the operation (this is an optional operation).
*/
public String getPassword(String username) throws UserNotFoundException,
String getPassword( String username ) throws UserNotFoundException,
UnsupportedOperationException;
/**
......@@ -72,7 +72,7 @@ public interface AuthProvider {
* @throws UnsupportedOperationException if the provider does not
* support the operation (this is an optional operation).
*/
public void setPassword(String username, String password)
void setPassword( String username, String password )
throws UserNotFoundException, UnsupportedOperationException;
/**
......@@ -83,7 +83,7 @@ public interface AuthProvider {
* @return true if this UserProvider is able to retrieve user passwords from the
* backend user store.
*/
public boolean supportsPasswordRetrieval();
boolean supportsPasswordRetrieval();
boolean isScramSupported();
String getSalt(String username) throws UnsupportedOperationException, UserNotFoundException;
......
......@@ -42,19 +42,19 @@ public interface AuthorizationMapping {
* @param principal The autheticated principal requesting authorization.
* @return The name of the default username to use.
*/
public String map(String principal);
String map( String principal );
/**
* Returns the short name of the Policy
*
* @return The short name of the Policy
*/
public abstract String name();
String name();
/**
* Returns a description of the Policy
*
* @return The description of the Policy.
*/
public abstract String description();
String description();
}
\ No newline at end of file
......@@ -46,19 +46,19 @@ public interface AuthorizationPolicy {
* @param principal The principal requesting the username.
* @return true is the user is authorized to be principal
*/
public boolean authorize(String username, String principal);
boolean authorize( String username, String principal );
/**
* Returns the short name of the Policy
*
* @return The short name of the Policy
*/
public abstract String name();
String name();
/**
* Returns a description of the Policy
*
* @return The description of the Policy.
*/
public abstract String description();
String description();
}
\ No newline at end of file
......@@ -48,7 +48,7 @@ public interface ComponentEventListener {
*
* @param componentJID address where the component can be located (e.g. search.myserver.com)
*/
public void componentRegistered(JID componentJID);
void componentRegistered( JID componentJID );
/**
* A component was removed. This means that no other cluster node has this component
......@@ -56,7 +56,7 @@ public interface ComponentEventListener {
*
* @param componentJID address where the component was located (e.g. search.myserver.com)
*/
public void componentUnregistered(JID componentJID);
void componentUnregistered( JID componentJID );
/**
* The server has received a disco#info response from the component. Once a component
......@@ -66,5 +66,5 @@ public interface ComponentEventListener {
*
* @param iq the IQ packet with the disco#info sent by the component.
*/
public void componentInfoReceived(IQ iq);
void componentInfoReceived( IQ iq );
}
......@@ -70,7 +70,7 @@ public interface Plugin {
* @param manager the plugin manager.
* @param pluginDirectory the directory where the plugin is located.
*/
public void initializePlugin(PluginManager manager, File pluginDirectory);
void initializePlugin( PluginManager manager, File pluginDirectory );
/**
* Destroys the plugin.<p>
......@@ -81,6 +81,6 @@ public interface Plugin {
* garbage collection executed after this method is called must be able
* to clean up all plugin classes.
*/
public void destroyPlugin();
void destroyPlugin();
}
\ No newline at end of file
......@@ -45,7 +45,7 @@ public interface DiscoInfoProvider {
* @param senderJID the XMPPAddress of user that sent the disco info request.
* @return an Iterator (of Element) with the target entity's identities.
*/
public abstract Iterator<Element> getIdentities(String name, String node, JID senderJID);
Iterator<Element> getIdentities( String name, String node, JID senderJID );
/**
* Returns an Iterator (of String) with the supported features. The features to include are the
......@@ -57,7 +57,7 @@ public interface DiscoInfoProvider {
* @param senderJID the XMPPAddress of user that sent the disco info request.
* @return an Iterator (of String) with the supported features.
*/
public abstract Iterator<String> getFeatures(String name, String node, JID senderJID);
Iterator<String> getFeatures( String name, String node, JID senderJID );
/**
* Returns an XDataForm with the extended information about the entity or null if none. Each bit
......@@ -68,7 +68,7 @@ public interface DiscoInfoProvider {
* @param senderJID the XMPPAddress of user that sent the disco info request.
* @return an XDataForm with the extended information about the entity or null if none.
*/
public abstract DataForm getExtendedInfo(String name, String node, JID senderJID);
DataForm getExtendedInfo( String name, String node, JID senderJID );
/**
* Returns true if we can provide information related to the requested name and node. For
......@@ -81,5 +81,5 @@ public interface DiscoInfoProvider {
* @param senderJID the XMPPAddress of user that sent the disco info request.
* @return true if we can provide information related to the requested name and node.
*/
public abstract boolean hasInfo(String name, String node, JID senderJID);
boolean hasInfo( String name, String node, JID senderJID );
}
......@@ -44,6 +44,6 @@ public interface DiscoItemsProvider {
* @param senderJID the XMPPAddress of user that sent the disco items request.
* @return an Iterator (of DiscoItem) with the target entity's items or null if none.
*/
public abstract Iterator<DiscoItem> getItems(String name, String node, JID senderJID);
Iterator<DiscoItem> getItems( String name, String node, JID senderJID );
}
......@@ -40,5 +40,5 @@ public interface ServerFeaturesProvider {
*
* @return an Iterator (of String) with the supported features by the server.
*/
public abstract Iterator<String> getFeatures();
Iterator<String> getFeatures();
}
......@@ -46,5 +46,5 @@ public interface ServerIdentitiesProvider {
*
* @return an Iterator (of Element) with identities of protocols supported by the server.
*/
public abstract Iterator<Element> getIdentities();
Iterator<Element> getIdentities();
}
......@@ -42,5 +42,5 @@ public interface ServerItemsProvider {
* @return an Iterator (of DiscoServerItem) with the items associated with the server or null
* if none.
*/
public abstract Iterator<DiscoServerItem> getItems();
Iterator<DiscoServerItem> getItems();
}
......@@ -46,5 +46,5 @@ public interface UserIdentitiesProvider {
*
* @return an Iterator (of Element) with identities of protocols supported by users.
*/
public abstract Iterator<Element> getIdentities();
Iterator<Element> getIdentities();
}
......@@ -49,5 +49,5 @@ public interface UserItemsProvider {
* @param senderJID the XMPPAddress of user that sent the disco items request.
* @return an Iterator (of Element) with the target entity's items or null if none.
*/
public abstract Iterator<Element> getUserItems(String name, JID senderJID);
Iterator<Element> getUserItems( String name, JID senderJID );
}
......@@ -35,7 +35,7 @@ public interface GroupEventListener {
* @param group the group.
* @param params event parameters.
*/
public void groupCreated(Group group, Map params);
void groupCreated( Group group, Map params );
/**
* A group is being deleted.
......@@ -43,7 +43,7 @@ public interface GroupEventListener {
* @param group the group.
* @param params event parameters.
*/
public void groupDeleting(Group group, Map params);
void groupDeleting( Group group, Map params );
/**
* A group's name, description, or an extended property was changed.
......@@ -51,7 +51,7 @@ public interface GroupEventListener {
* @param group the group.
* @param params event parameters.
*/
public void groupModified(Group group, Map params);
void groupModified( Group group, Map params );
/**
* A member was added to a group.
......@@ -59,7 +59,7 @@ public interface GroupEventListener {
* @param group the group.
* @param params event parameters.
*/
public void memberAdded(Group group, Map params);
void memberAdded( Group group, Map params );
/**
* A member was removed from a group.
......@@ -67,7 +67,7 @@ public interface GroupEventListener {
* @param group the group.
* @param params event parameters.
*/
public void memberRemoved(Group group, Map params);
void memberRemoved( Group group, Map params );
/**
* An administrator was added to a group.
......@@ -75,7 +75,7 @@ public interface GroupEventListener {
* @param group the group.
* @param params event parameters.
*/
public void adminAdded(Group group, Map params);
void adminAdded( Group group, Map params );
/**
* An administrator was removed from a group.
......@@ -83,5 +83,5 @@ public interface GroupEventListener {
* @param group the group.
* @param params event parameters.
*/
public void adminRemoved(Group group, Map params);
void adminRemoved( Group group, Map params );
}
\ No newline at end of file
......@@ -33,33 +33,33 @@ public interface SessionEventListener {
*
* @param session the authenticated session of a non anonymous user.
*/
public void sessionCreated(Session session);
void sessionCreated( Session session );
/**
* An authenticated session of a non anonymous user was destroyed.
*
* @param session the authenticated session of a non anonymous user.
*/
public void sessionDestroyed(Session session);
void sessionDestroyed( Session session );
/**
* Notification event indicating that an anonymous user has authenticated with the server.
*
* @param session the authenticated session of an anonymous user.
*/
public void anonymousSessionCreated(Session session);
void anonymousSessionCreated( Session session );
/**
* An authenticated session of an anonymous user was destroyed.
*
* @param session the authenticated session of an anonymous user.
*/
public void anonymousSessionDestroyed(Session session);
void anonymousSessionDestroyed( Session session );
/**
* A session has finished resource binding.
*
* @param session the session on which resource binding was performed.
*/
public void resourceBound(Session session);
void resourceBound( Session session );
}
\ No newline at end of file
......@@ -35,7 +35,7 @@ public interface UserEventListener {
* @param user the user.
* @param params event parameters.
*/
public void userCreated(User user, Map<String,Object> params);
void userCreated( User user, Map<String, Object> params );
/**
* A user is being deleted.
......@@ -43,7 +43,7 @@ public interface UserEventListener {
* @param user the user.
* @param params event parameters.
*/
public void userDeleting(User user, Map<String,Object> params);
void userDeleting( User user, Map<String, Object> params );
/**
* A user's name, email, or an extended property was changed.
......@@ -51,5 +51,5 @@ public interface UserEventListener {
* @param user the user.
* @param params event parameters.
*/
public void userModified(User user, Map<String,Object> params);
void userModified( User user, Map<String, Object> params );
}
\ No newline at end of file
......@@ -29,18 +29,18 @@ public interface FileTransferManager extends Module {
/**
* The Stream Initiation, SI, namespace.
*/
static final String NAMESPACE_SI = "http://jabber.org/protocol/si";
String NAMESPACE_SI = "http://jabber.org/protocol/si";
/**
* Namespace for the file transfer profile of Stream Initiation.
*/
static final String NAMESPACE_SI_FILETRANSFER =
String NAMESPACE_SI_FILETRANSFER =
"http://jabber.org/protocol/si/profile/file-transfer";
/**
* Bytestreams namespace
*/
static final String NAMESPACE_BYTESTREAMS = "http://jabber.org/protocol/bytestreams";
String NAMESPACE_BYTESTREAMS = "http://jabber.org/protocol/bytestreams";
/**
* Checks an incoming file transfer request to see if it should be accepted or rejected.
......
......@@ -33,34 +33,34 @@ public interface FileTransferProgress {
* @return the number of bytes that has been transferred.
* @throws UnsupportedOperationException
*/
public long getAmountTransferred() throws UnsupportedOperationException;
long getAmountTransferred() throws UnsupportedOperationException;
/**
* Returns the fully qualified JID of the initiator of the file transfer.
*
* @return the fully qualified JID of the initiator of the file transfer.
*/
public String getInitiator();
String getInitiator();
public void setInitiator(String initiator);
void setInitiator( String initiator );
/**
* Returns the full qualified JID of the target of the file transfer.
*
* @return the fully qualified JID of the target
*/
public String getTarget();
String getTarget();
public void setTarget(String target);
void setTarget( String target );
/**
* Returns the unique session id that correlates to the file transfer.
*
* @return Returns the unique session id that correlates to the file transfer.
*/
public String getSessionID();
String getSessionID();
public void setSessionID(String streamID);
void setSessionID( String streamID );
/**
* When the file transfer is being caried out by another thread this will set the Future
......@@ -68,13 +68,13 @@ public interface FileTransferProgress {
*
* @param future the furute that is carrying out the transfer
*/
public void setTransferFuture(Future<?> future);
void setTransferFuture( Future<?> future );
public void setInputStream(InputStream initiatorInputStream);
void setInputStream( InputStream initiatorInputStream );
public InputStream getInputStream();
InputStream getInputStream();
public void setOutputStream(OutputStream targetOutputStream);
void setOutputStream( OutputStream targetOutputStream );
public OutputStream getOutputStream();
OutputStream getOutputStream();
}
......@@ -32,21 +32,21 @@ public interface ProxyTransfer extends Cacheable, FileTransferProgress {
*
* @param digest the digest which uniquely identifies this transfer.
*/
public void setTransferDigest(String digest);
void setTransferDigest( String digest );
/**
* Returns the transfer digest uniquely identifies a file transfer in the system.
*
* @return the transfer digest uniquely identifies a file transfer in the system.
*/
public String getTransferDigest();
String getTransferDigest();
/**
* Returns true if the Bytestream is ready to be activated and the proxy transfer can begin.
*
* @return true if the Bytestream is ready to be activated.
*/
public boolean isActivatable();
boolean isActivatable();
/**
* Transfers the file from the initiator to the target.
......@@ -54,5 +54,5 @@ public interface ProxyTransfer extends Cacheable, FileTransferProgress {
* @throws java.io.IOException when an error occurs either reading from the input stream or
* writing to the output stream.
*/
public void doTransfer() throws IOException;
void doTransfer() throws IOException;
}
......@@ -43,10 +43,10 @@ import java.util.List;
@Deprecated
public interface DataForm {
public static final String TYPE_FORM = "form";
public static final String TYPE_SUBMIT = "submit";
public static final String TYPE_CANCEL = "cancel";
public static final String TYPE_RESULT = "result";
String TYPE_FORM = "form";
String TYPE_SUBMIT = "submit";
String TYPE_CANCEL = "cancel";
String TYPE_RESULT = "result";
/**
* Sets the description of the data. It is similar to the title on a web page or an X window.
......@@ -54,7 +54,7 @@ public interface DataForm {
*
* @param title description of the data.
*/
public abstract void setTitle(String title);
void setTitle( String title );
/**
* Sets the list of instructions that explain how to fill out the form and what the form is
......@@ -63,7 +63,7 @@ public interface DataForm {
*
* @param instructions list of instructions that explain how to fill out the form.
*/
public abstract void setInstructions(List instructions);
void setInstructions( List instructions );
/**
* Returns the meaning of the data within the context. The data could be part of a form
......@@ -82,7 +82,7 @@ public interface DataForm {
*
* @return the form's type.
*/
public abstract String getType();
String getType();
/**
* Returns the description of the data. It is similar to the title on a web page or an X
......@@ -90,7 +90,7 @@ public interface DataForm {
*
* @return description of the data.
*/
public abstract String getTitle();
String getTitle();
/**
* Returns an Iterator for the list of instructions that explain how to fill out the form and
......@@ -100,7 +100,7 @@ public interface DataForm {
*
* @return an Iterator for the list of instructions that explain how to fill out the form.
*/
public abstract Iterator getInstructions();
Iterator getInstructions();
/**
* Returns the field of the form whose variable matches the specified variable.
......@@ -110,21 +110,21 @@ public interface DataForm {
* @param variable the variable to look for in the form fields.
* @return the field of the form whose variable matches the specified variable.
*/
public FormField getField(String variable);
FormField getField( String variable );
/**
* Returns an Iterator for the fields that are part of the form.
*
* @return an Iterator for the fields that are part of the form.
*/
public abstract Iterator getFields();
Iterator getFields();
/**
* Returns the number of fields included in the form.
*
* @return the number of fields included in the form.
*/
public abstract int getFieldsSize();
int getFieldsSize();
/**
* Adds a new instruction to the list of instructions that explain how to fill out the form
......@@ -133,14 +133,14 @@ public interface DataForm {
*
* @param instruction the new instruction that explain how to fill out the form.
*/
public abstract void addInstruction(String instruction);
void addInstruction( String instruction );
/**
* Adds a new field as part of the form.
*
* @param field the field to add to the form.
*/
public abstract void addField(FormField field);
void addField( FormField field );
/**
* Adds a field to the list of fields that will be returned from a search. Each field represents
......@@ -149,7 +149,7 @@ public interface DataForm {
*
* @param field the field to add to the list of fields that will be returned from a search.
*/
public abstract void addReportedField(FormField field);
void addReportedField( FormField field );
/**
* Adds a new row of items of reported data. The list of items to add will be formed by
......@@ -158,5 +158,5 @@ public interface DataForm {
*
* @param itemFields list of FormFields to add as a row in the report.
*/
public abstract void addItemFields(ArrayList itemFields);
void addItemFields( ArrayList itemFields );
}
......@@ -29,16 +29,16 @@ import java.util.Iterator;
@Deprecated
public interface FormField {
public static final String TYPE_BOOLEAN = "boolean";
public static final String TYPE_FIXED = "fixed";
public static final String TYPE_HIDDEN = "hidden";
public static final String TYPE_JID_MULTI = "jid-multi";
public static final String TYPE_JID_SINGLE = "jid-single";
public static final String TYPE_LIST_MULTI = "list-multi";
public static final String TYPE_LIST_SINGLE = "list-single";
public static final String TYPE_TEXT_MULTI = "text-multi";
public static final String TYPE_TEXT_PRIVATE = "text-private";
public static final String TYPE_TEXT_SINGLE = "text-single";
String TYPE_BOOLEAN = "boolean";
String TYPE_FIXED = "fixed";
String TYPE_HIDDEN = "hidden";
String TYPE_JID_MULTI = "jid-multi";
String TYPE_JID_SINGLE = "jid-single";
String TYPE_LIST_MULTI = "list-multi";
String TYPE_LIST_SINGLE = "list-single";
String TYPE_TEXT_MULTI = "text-multi";
String TYPE_TEXT_PRIVATE = "text-private";
String TYPE_TEXT_SINGLE = "text-single";
/**
* Adds a default value to the question if the question is part of a form to fill out.
......@@ -46,12 +46,12 @@ public interface FormField {
*
* @param value a default value or an answered value of the question.
*/
public void addValue(String value);
void addValue( String value );
/**
* Removes all the values of the field.
*/
public void clearValues();
void clearValues();
/**
* Adds an available option to the question that the user has in order to answer
......@@ -60,7 +60,7 @@ public interface FormField {
* @param label a label that represents the option.
* @param value the value of the option.
*/
public void addOption(String label, String value);
void addOption( String label, String value );
/**
* Sets an indicative of the format for the data to answer. Valid formats are:
......@@ -82,14 +82,14 @@ public interface FormField {
*
* @param type an indicative of the format for the data to answer.
*/
public abstract void setType(String type);
void setType( String type );
/**
* Sets if the question must be answered in order to complete the questionnaire.
*
* @param required if the question must be answered in order to complete the questionnaire.
*/
public abstract void setRequired(boolean required);
void setRequired( boolean required );
/**
* Sets the label of the question which should give enough information to the user to
......@@ -97,7 +97,7 @@ public interface FormField {
*
* @param label the label of the question.
*/
public abstract void setLabel(String label);
void setLabel( String label );
/**
* Sets a description that provides extra clarification about the question. This information
......@@ -109,21 +109,21 @@ public interface FormField {
*
* @param description provides extra clarification about the question.
*/
public abstract void setDescription(String description);
void setDescription( String description );
/**
* Returns true if the question must be answered in order to complete the questionnaire.
*
* @return true if the question must be answered in order to complete the questionnaire.
*/
public abstract boolean isRequired();
boolean isRequired();
/**
* Returns the variable name that the question is filling out.
*
* @return the variable name of the question.
*/
public abstract String getVariable();
String getVariable();
/**
* Returns an Iterator for the default values of the question if the question is part
......@@ -132,7 +132,7 @@ public interface FormField {
*
* @return an Iterator for the default values or answered values of the question.
*/
public abstract Iterator<String> getValues();
Iterator<String> getValues();
/**
* Returns an indicative of the format for the data to answer. Valid formats are:
......@@ -154,7 +154,7 @@ public interface FormField {
*
* @return format for the data to answer.
*/
public abstract String getType();
String getType();
/**
* Returns the label of the question which should give enough information to the user to
......@@ -162,7 +162,7 @@ public interface FormField {
*
* @return label of the question.
*/
public abstract String getLabel();
String getLabel();
/**
* Returns a description that provides extra clarification about the question. This information
......@@ -174,5 +174,5 @@ public interface FormField {
*
* @return description that provides extra clarification about the question.
*/
public abstract String getDescription();
String getDescription();
}
......@@ -20,7 +20,7 @@ public interface GroupAwareMap<K, V> extends Map<K, V> {
* @param key The target, presumably a JID
* @return True if the target is in the key list, or in any groups in the key list
*/
public boolean includesKey(Object key);
boolean includesKey( Object key );
/**
* Returns true if the map contains a value referencing the given JID. If the JID
......@@ -30,7 +30,7 @@ public interface GroupAwareMap<K, V> extends Map<K, V> {
* @param value The target, presumably a JID
* @return True if the target is in the key list, or in any groups in the key list
*/
public boolean includesValue(Object value);
boolean includesValue( Object value );
/**
* Returns the groups that are implied (resolvable) from the keys in the map.
......
......@@ -120,7 +120,7 @@ public interface IQRegisterInfo {
*
* @return the location type.
*/
public int getFieldStoreLocation();
int getFieldStoreLocation();
/**
* Sets the location for storing field information.
......@@ -129,7 +129,7 @@ public interface IQRegisterInfo {
* @throws org.jivesoftware.openfire.auth.UnauthorizedException
* If you don't have permission to adjust this setting
*/
public void setFieldStoreLocation(int location) throws UnauthorizedException;
void setFieldStoreLocation( int location ) throws UnauthorizedException;
/**
* Determines if users can automatically register user accounts
......@@ -137,7 +137,7 @@ public interface IQRegisterInfo {
*
* @return True if open registration is supported
*/
public boolean isOpenRegistrationSupported();
boolean isOpenRegistrationSupported();
/**
* Tells the server whether to support open registration or not.
......@@ -146,7 +146,7 @@ public interface IQRegisterInfo {
* @throws org.jivesoftware.openfire.auth.UnauthorizedException
* If you don't have permission to change this setting
*/
public void setOpenRegistrationSupported(boolean isSupported) throws UnauthorizedException;
void setOpenRegistrationSupported( boolean isSupported ) throws UnauthorizedException;
/**
* Determines if a given field is required for registration.
......@@ -154,7 +154,7 @@ public interface IQRegisterInfo {
* @param fieldType The field to check
* @return True if the field is required
*/
public boolean isFieldRequired(int fieldType);
boolean isFieldRequired( int fieldType );
/**
* Tells the server whether to require a registration field or not.
......@@ -164,7 +164,7 @@ public interface IQRegisterInfo {
* @throws org.jivesoftware.openfire.auth.UnauthorizedException
* If you don't have permission to change this setting
*/
public void setFieldRequired(int fieldType, boolean isRequired) throws UnauthorizedException;
void setFieldRequired( int fieldType, boolean isRequired ) throws UnauthorizedException;
/**
* Get the setting type from a field's element name. This is a convenience
......@@ -173,7 +173,7 @@ public interface IQRegisterInfo {
* @param fieldElementName The known element name
* @return The field type, one of the static int types defined in this class
*/
public int getFieldType(String fieldElementName);
int getFieldType( String fieldElementName );
/**
* Obtain the element name from a field type. This is a convience for
......@@ -182,5 +182,5 @@ public interface IQRegisterInfo {
* @param fieldType The known field type
* @return The field element name
*/
public String getFieldElementName(int fieldType);
String getFieldElementName( int fieldType );
}
......@@ -29,7 +29,7 @@ public interface SessionListener {
* @param session the session.
* @param connection the connection.
*/
public void connectionOpened(HttpSession session, HttpConnection connection);
void connectionOpened( HttpSession session, HttpConnection connection );
/**
* A conneciton was closed.
......@@ -37,12 +37,12 @@ public interface SessionListener {
* @param session the session.
* @param connection the connection.
*/
public void connectionClosed(HttpSession session, HttpConnection connection);
void connectionClosed( HttpSession session, HttpConnection connection );
/**
* A session ended.
*
* @param session the session.
*/
public void sessionClosed(HttpSession session);
void sessionClosed( HttpSession session );
}
\ No newline at end of file
......@@ -30,20 +30,20 @@ public interface LockOutEventListener {
*
* @param flag The LockOutFlag that was set, which includes the username of the account and start/end times.
*/
public void accountLocked(LockOutFlag flag);
void accountLocked( LockOutFlag flag );
/**
* Notifies the listeners that an account was just enabled (lockout removed).
*
* @param username The username of the account that was enabled.
*/
public void accountUnlocked(String username);
void accountUnlocked( String username );
/**
* Notifies the listeners that a locked out account attempted to log in.
*
* @param username The username of the account that tried to log in.
*/
public void lockedAccountDenied(String username);
void lockedAccountDenied( String username );
}
......@@ -33,21 +33,21 @@ public interface LockOutProvider {
* @return The LockOutFlag instance describing the accounts disabled status or null if user
* account specified is not currently locked out (disabled).
*/
public LockOutFlag getDisabledStatus(String username);
LockOutFlag getDisabledStatus( String username );
/**
* Sets the locked out (disabled) status of an account according to a LockOutFlag.
*
* @param flag A LockOutFlag instance to describe the disabled status of a user.
*/
public void setDisabledStatus(LockOutFlag flag);
void setDisabledStatus( LockOutFlag flag );
/**
* Unsets the locked out (disabled) status of an account, thereby enabling it/cancelling the disable.
*
* @param username User to enable.
*/
public void unsetDisabledStatus(String username);
void unsetDisabledStatus( String username );
/**
* Returns true if this LockOutProvider is read-only. When read-only,
......@@ -55,7 +55,7 @@ public interface LockOutProvider {
*
* @return true if the lock out provider is read-only.
*/
public boolean isReadOnly();
boolean isReadOnly();
/**
* Returns true if the LockOutProvider allows for a delayed start to the lockout.
......@@ -65,7 +65,7 @@ public interface LockOutProvider {
*
* @return true if the lock out provider provides this feature.
*/
public boolean isDelayedStartSupported();
boolean isDelayedStartSupported();
/**
* Returns true if the LockOutProvider allows for a timeout after which the lock out will expire.
......@@ -75,7 +75,7 @@ public interface LockOutProvider {
*
* @return true if the lcok out provider provides this feature.
*/
public boolean isTimeoutSupported();
boolean isTimeoutSupported();
/**
* Returns true if the lock out flags should not be cached, meaning every status lookup will
......@@ -84,6 +84,6 @@ public interface LockOutProvider {
*
* @return true if disabled status should not be cached.
*/
public boolean shouldNotBeCached();
boolean shouldNotBeCached();
}
......@@ -32,5 +32,5 @@ public interface DatagramListener {
* @param datagramPacket the datagram packet received.
* @return ?
*/
public boolean datagramReceived(DatagramPacket datagramPacket);
boolean datagramReceived( DatagramPacket datagramPacket );
}
\ No newline at end of file
......@@ -25,37 +25,37 @@ import java.net.InetAddress;
*/
public interface ProxyCandidate {
public String getSID();
String getSID();
public String getPass();
String getPass();
public InetAddress getLocalhost();
InetAddress getLocalhost();
public InetAddress getHostA();
InetAddress getHostA();
public InetAddress getHostB();
InetAddress getHostB();
public void setHostA(InetAddress hostA);
void setHostA( InetAddress hostA );
public void setHostB(InetAddress hostB);
void setHostB( InetAddress hostB );
public void sendFromPortA(String host, int port);
void sendFromPortA( String host, int port );
public void sendFromPortB(String host, int port);
void sendFromPortB( String host, int port );
public int getPortA();
int getPortA();
public int getPortB();
int getPortB();
public void setPortA(int portA);
void setPortA( int portA );
public void setPortB(int portB);
void setPortB( int portB );
public int getLocalPortA();
int getLocalPortA();
public int getLocalPortB();
int getLocalPortB();
public void start();
void start();
public void stopAgent();
void stopAgent();
}
......@@ -29,6 +29,6 @@ public interface SessionListener {
*
* @param session the session that closed.
*/
public void sessionClosed(MediaProxySession session);
void sessionClosed( MediaProxySession session );
}
\ No newline at end of file
......@@ -37,14 +37,14 @@ public interface MUCRole {
*
* @return The presence of the user in the room.
*/
public Presence getPresence();
Presence getPresence();
/**
* Set the current presence status of a user in a chatroom.
*
* @param presence The presence of the user in the room.
*/
public void setPresence(Presence presence);
void setPresence( Presence presence );
/**
* Call this method to promote or demote a user's role in a chatroom.
......@@ -59,14 +59,14 @@ public interface MUCRole {
* @throws NotAllowedException Thrown if trying to change the moderator role to an owner or
* administrator.
*/
public void setRole(Role newRole) throws NotAllowedException;
void setRole( Role newRole ) throws NotAllowedException;
/**
* Obtain the role state of the user.
*
* @return The role status of this user.
*/
public Role getRole();
Role getRole();
/**
* Call this method to promote or demote a user's affiliation in a chatroom.
......@@ -74,14 +74,14 @@ public interface MUCRole {
* @param newAffiliation the new affiliation that the user will play.
* @throws NotAllowedException thrown if trying to ban an owner or an administrator.
*/
public void setAffiliation(Affiliation newAffiliation) throws NotAllowedException;
void setAffiliation( Affiliation newAffiliation ) throws NotAllowedException;
/**
* Obtain the affiliation state of the user.
*
* @return The affiliation status of this user.
*/
public Affiliation getAffiliation();
Affiliation getAffiliation();
/**
* Changes the nickname of the occupant within the room to the new nickname.
......@@ -95,13 +95,13 @@ public interface MUCRole {
*
* @return The user's nickname in the room or null if invisible.
*/
public String getNickname();
String getNickname();
/**
* Destroys this role after the occupant left the room. This role will be
* removed from MUCUser.
*/
public void destroy();
void destroy();
/**
* Returns true if the room occupant does not want to get messages broadcasted to all
......@@ -128,14 +128,14 @@ public interface MUCRole {
*
* @return The chatroom hosting this role.
*/
public MUCRoom getChatRoom();
MUCRoom getChatRoom();
/**
* Obtain the XMPPAddress representing this role in a room: room@server/nickname
*
* @return The Jabber ID that represents this role in the room.
*/
public JID getRoleAddress();
JID getRoleAddress();
/**
* Obtain the XMPPAddress of the user that joined the room. A <tt>null</tt> null value
......@@ -143,30 +143,30 @@ public interface MUCRole {
*
* @return The address of the user that joined the room or null if this role belongs to the room itself.
*/
public JID getUserAddress();
JID getUserAddress();
/**
* Returns true if this room occupant is hosted by this JVM.
*
* @return true if this room occupant is hosted by this JVM
*/
public boolean isLocal();
boolean isLocal();
/**
* Returns the id of the node that is hosting the room occupant.
*
* @return the id of the node that is hosting the room occupant.
*/
public NodeID getNodeID();
NodeID getNodeID();
/**
* Sends a packet to the user.
*
* @param packet The packet to send
*/
public void send(Packet packet);
void send( Packet packet );
public enum Role {
enum Role {
/**
* Runs moderated discussions. Is allowed to kick users, grant and revoke voice, etc.
......@@ -220,7 +220,7 @@ public interface MUCRole {
}
}
public enum Affiliation {
enum Affiliation {
/**
* Owner of the room.
......
......@@ -44,5 +44,5 @@ public interface MUCUser extends ChannelHandler<Packet> {
*
* @return the address of the packet handler.
*/
public JID getAddress();
JID getAddress();
}
\ No newline at end of file
......@@ -270,7 +270,7 @@ public interface MultiUserChatService extends Component {
*
* @param room the removed room in another cluster node.
*/
public void chatRoomRemoved(LocalMUCRoom room);
void chatRoomRemoved( LocalMUCRoom room );
/**
* Notification message indicating that a chat room has been created
......@@ -278,7 +278,7 @@ public interface MultiUserChatService extends Component {
*
* @param room the created room in another cluster node.
*/
public void chatRoomAdded(LocalMUCRoom room);
void chatRoomAdded( LocalMUCRoom room );
/**
* Removes the room associated with the given name.
......@@ -303,7 +303,7 @@ public interface MultiUserChatService extends Component {
*
* @return total chat time in milliseconds.
*/
public long getTotalChatTime();
long getTotalChatTime();
/**
* Retuns the number of existing rooms in the server (i.e. persistent or not,
......@@ -311,7 +311,7 @@ public interface MultiUserChatService extends Component {
*
* @return the number of existing rooms in the server.
*/
public int getNumberChatRooms();
int getNumberChatRooms();
/**
* Retuns the total number of occupants in all rooms in the server.
......@@ -319,14 +319,14 @@ public interface MultiUserChatService extends Component {
* @param onlyLocal true if only users connected to this JVM will be considered. Otherwise count cluster wise.
* @return the number of existing rooms in the server.
*/
public int getNumberConnectedUsers(boolean onlyLocal);
int getNumberConnectedUsers( boolean onlyLocal );
/**
* Retuns the total number of users that have joined in all rooms in the server.
*
* @return the number of existing rooms in the server.
*/
public int getNumberRoomOccupants();
int getNumberRoomOccupants();
/**
* Returns the total number of incoming messages since last reset.
......@@ -334,7 +334,7 @@ public interface MultiUserChatService extends Component {
* @param resetAfter True if you want the counter to be reset after results returned.
* @return the number of incoming messages through the service.
*/
public long getIncomingMessageCount(boolean resetAfter);
long getIncomingMessageCount( boolean resetAfter );
/**
* Returns the total number of outgoing messages since last reset.
......@@ -342,7 +342,7 @@ public interface MultiUserChatService extends Component {
* @param resetAfter True if you want the counter to be reset after results returned.
* @return the number of outgoing messages through the service.
*/
public long getOutgoingMessageCount(boolean resetAfter);
long getOutgoingMessageCount( boolean resetAfter );
/**
* Logs that a given message was sent to a room as part of a conversation. Every message sent
......
......@@ -35,7 +35,7 @@ public interface MUCServicePropertyEventListener {
* @param property the name of the property.
* @param params event parameters.
*/
public void propertySet(String service, String property, Map<String, Object> params);
void propertySet( String service, String property, Map<String, Object> params );
/**
* A property was deleted.
......@@ -44,6 +44,6 @@ public interface MUCServicePropertyEventListener {
* @param property the name of the property deleted.
* @param params event parameters.
*/
public void propertyDeleted(String service, String property, Map<String, Object> params);
void propertyDeleted( String service, String property, Map<String, Object> params );
}
\ No newline at end of file
......@@ -31,19 +31,19 @@ public interface PrivacyListEventListener {
*
* @param list the privacy list.
*/
public void privacyListCreated(PrivacyList list);
void privacyListCreated( PrivacyList list );
/**
* A privacy list is being deleted.
*
* @param listName name of the the privacy list that has been deleted.
*/
public void privacyListDeleting(String listName);
void privacyListDeleting( String listName );
/**
* Properties of the privacy list were changed.
*
* @param list the privacy list.
*/
public void privacyListModified(PrivacyList list);
void privacyListModified( PrivacyList list );
}
......@@ -43,6 +43,6 @@ public interface Result {
*
* @return Unique ID of the Result
*/
public String getUID();
String getUID();
}
\ No newline at end of file
......@@ -30,7 +30,7 @@ public interface RosterEventListener {
*
* @param roster the loaded roster.
*/
public void rosterLoaded(Roster roster);
void rosterLoaded( Roster roster );
/**
* Notification message indicating that a contact is about to be added to a roster. New
......@@ -43,7 +43,7 @@ public interface RosterEventListener {
* @param persistent true if the new contact is going to be saved to the database.
* @return false if the contact should not be persisted to the database.
*/
public boolean addingContact(Roster roster, RosterItem item, boolean persistent);
boolean addingContact( Roster roster, RosterItem item, boolean persistent );
/**
* Notification message indicating that a contact has been added to a roster.
......@@ -51,7 +51,7 @@ public interface RosterEventListener {
* @param roster the roster that was updated.
* @param item the new roster item.
*/
public void contactAdded(Roster roster, RosterItem item);
void contactAdded( Roster roster, RosterItem item );
/**
* Notification message indicating that a contact has been updated.
......@@ -59,7 +59,7 @@ public interface RosterEventListener {
* @param roster the roster that was updated.
* @param item the updated roster item.
*/
public void contactUpdated(Roster roster, RosterItem item);
void contactUpdated( Roster roster, RosterItem item );
/**
* Notification message indicating that a contact has been deleted from a roster.
......@@ -67,5 +67,5 @@ public interface RosterEventListener {
* @param roster the roster that was updated.
* @param item the roster item that was deleted.
*/
public void contactDeleted(Roster roster, RosterItem item);
void contactDeleted( Roster roster, RosterItem item );
}
......@@ -34,7 +34,7 @@ public interface SecurityAuditProvider {
* @param summary Short description of the event, similar to a subject.
* @param details Detailed description of the event, can be null if not desired.
*/
public void logEvent(String username, String summary, String details);
void logEvent( String username, String summary, String details );
/**
* Retrieves security events that have occurred, filtered by the parameters passed.
......@@ -51,7 +51,7 @@ public interface SecurityAuditProvider {
* @param endTime Most recent date of range of events to retrieve. Can be null for "now".
* @return Array of security events.
*/
public List<SecurityAuditEvent> getEvents(String username, Integer skipEvents, Integer numEvents, Date startTime, Date endTime);
List<SecurityAuditEvent> getEvents( String username, Integer skipEvents, Integer numEvents, Date startTime, Date endTime );
/**
* Retrieves a specific event by ID. The provider is expected to create and fill out to
......@@ -61,14 +61,14 @@ public interface SecurityAuditProvider {
* @return SecurityAuditEvent object with information from retrieved event.
* @throws EventNotFoundException if event was not found.
*/
public SecurityAuditEvent getEvent(Integer msgID) throws EventNotFoundException;
SecurityAuditEvent getEvent( Integer msgID ) throws EventNotFoundException;
/**
* Retrieves number of events recorded.
*
* @return Number of events that have been recorded.
*/
public Integer getEventCount();
Integer getEventCount();
/**
* Returns true if the provider logs can be read by Openfire for display from Openfire's
......@@ -80,7 +80,7 @@ public interface SecurityAuditProvider {
* @see #getAuditURL()
* @return True or false if the logs can be read remotely.
*/
public boolean isWriteOnly();
boolean isWriteOnly();
/**
* Retrieves a URL that can be visited to read the logs audited by this provider. This
......@@ -93,7 +93,7 @@ public interface SecurityAuditProvider {
* @see #isWriteOnly()
* @return String represented URL that can be visited to view the audit logs.
*/
public String getAuditURL();
String getAuditURL();
/**
* Returns true if the provider should not send user change (create, edit, delete, etc) related
......@@ -102,7 +102,7 @@ public interface SecurityAuditProvider {
*
* @return True if we should block user related security audit events from being handled.
*/
public boolean blockUserEvents();
boolean blockUserEvents();
/**
* Returns true if the provider should not send group change (create, edit, delete, etc) related
......@@ -111,6 +111,6 @@ public interface SecurityAuditProvider {
*
* @return True if we should block group related security audit events from being handled.
*/
public boolean blockGroupEvents();
boolean blockGroupEvents();
}
......@@ -33,7 +33,7 @@ public interface ClientSession extends Session {
*
* @return the Privacy list that overrides the default privacy list.
*/
public PrivacyList getActiveList();
PrivacyList getActiveList();
/**
* Sets the Privacy list that overrides the default privacy list. This list affects
......@@ -41,7 +41,7 @@ public interface ClientSession extends Session {
*
* @param activeList the Privacy list that overrides the default privacy list.
*/
public void setActiveList(PrivacyList activeList);
void setActiveList( PrivacyList activeList );
/**
* Returns the default Privacy list used for the session's user. This list is
......@@ -49,7 +49,7 @@ public interface ClientSession extends Session {
*
* @return the default Privacy list used for the session's user.
*/
public PrivacyList getDefaultList();
PrivacyList getDefaultList();
/**
* Sets the default Privacy list used for the session's user. This list is
......@@ -57,7 +57,7 @@ public interface ClientSession extends Session {
*
* @param defaultList the default Privacy list used for the session's user.
*/
public void setDefaultList(PrivacyList defaultList);
void setDefaultList( PrivacyList defaultList );
/**
* Returns the username associated with this session. Use this information
......@@ -67,7 +67,7 @@ public interface ClientSession extends Session {
* @throws UserNotFoundException if a user is not associated with a session
* (the session has not authenticated yet)
*/
public String getUsername() throws UserNotFoundException;
String getUsername() throws UserNotFoundException;
/**
* Returns true if the authetnicated user is an anonymous user or if
......@@ -88,7 +88,7 @@ public interface ClientSession extends Session {
*
* @return True if the session has already been initializsed
*/
public boolean isInitialized();
boolean isInitialized();
/**
* Sets the initialization state of the session.
......@@ -96,7 +96,7 @@ public interface ClientSession extends Session {
* @param isInit True if the session has been initialized
* @see #isInitialized
*/
public void setInitialized(boolean isInit);
void setInitialized( boolean isInit );
/**
* Returns true if the offline messages of the user should be sent to the user when
......@@ -108,7 +108,7 @@ public interface ClientSession extends Session {
* @return true if the offline messages of the user should be sent to the user when the user
* becomes online.
*/
public boolean canFloodOfflineMessages();
boolean canFloodOfflineMessages();
/**
* Returns true if the user requested to not receive offline messages when sending
......@@ -120,28 +120,28 @@ public interface ClientSession extends Session {
* @return true if the user requested to not receive offline messages when sending
* an available presence.
*/
public boolean isOfflineFloodStopped();
boolean isOfflineFloodStopped();
/**
* Obtain the presence of this session.
*
* @return The presence of this session or null if not authenticated
*/
public Presence getPresence();
Presence getPresence();
/**
* Set the presence of this session
*
* @param presence The presence for the session
*/
public void setPresence(Presence presence);
void setPresence( Presence presence );
/**
* Increments the conflict by one and returns new number of conflicts detected on this session.
*
* @return the new number of conflicts detected on this session.
*/
public int incrementConflictCount();
int incrementConflictCount();
/**
* Indicates, whether message carbons are enabled.
......
......@@ -26,7 +26,7 @@ import java.util.Collection;
*/
public interface ComponentSession extends Session {
public ExternalComponent getExternalComponent();
ExternalComponent getExternalComponent();
/**
* The ExternalComponent acts as a proxy of the remote connected component. Any Packet that is
......@@ -40,7 +40,7 @@ public interface ComponentSession extends Session {
*
* @author Gaston Dombiak
*/
public interface ExternalComponent extends Component {
interface ExternalComponent extends Component {
void setName(String name);
String getType();
......
......@@ -48,7 +48,7 @@ public interface IncomingServerSession extends ServerSession {
*
* @return domains, subdomains and virtual hosts that where validated.
*/
public Collection<String> getValidatedDomains();
Collection<String> getValidatedDomains();
/**
* Returns the domain or subdomain of the local server used by the remote server
......@@ -59,5 +59,5 @@ public interface IncomingServerSession extends ServerSession {
* @return the domain or subdomain of the local server used by the remote server
* when validating the session.
*/
public String getLocalDomain();
String getLocalDomain();
}
......@@ -41,12 +41,12 @@ public interface Session extends RoutableChannelHandler {
/**
* Version of the XMPP spec supported as MAJOR_VERSION.MINOR_VERSION (e.g. 1.0).
*/
public static final int MAJOR_VERSION = 1;
public static final int MINOR_VERSION = 0;
int MAJOR_VERSION = 1;
int MINOR_VERSION = 0;
public static final int STATUS_CLOSED = -1;
public static final int STATUS_CONNECTED = 1;
public static final int STATUS_AUTHENTICATED = 3;
int STATUS_CLOSED = -1;
int STATUS_CONNECTED = 1;
int STATUS_AUTHENTICATED = 3;
/**
* Obtain the address of the user. The address is used by services like the core
......@@ -57,14 +57,14 @@ public interface Session extends RoutableChannelHandler {
* @return the address of the packet handler.
*/
@Override
public JID getAddress();
JID getAddress();
/**
* Obtain the current status of this session.
*
* @return The status code for this session
*/
public int getStatus();
int getStatus();
/**
* Obtain the stream ID associated with this sesison. Stream ID's are generated by the server
......@@ -72,42 +72,42 @@ public interface Session extends RoutableChannelHandler {
*
* @return This session's assigned stream ID
*/
public StreamID getStreamID();
StreamID getStreamID();
/**
* Obtain the name of the server this session belongs to.
*
* @return the server name.
*/
public String getServerName();
String getServerName();
/**
* Obtain the date the session was created.
*
* @return the session's creation date.
*/
public Date getCreationDate();
Date getCreationDate();
/**
* Obtain the time the session last had activity.
*
* @return The last time the session received activity.
*/
public Date getLastActiveDate();
Date getLastActiveDate();
/**
* Obtain the number of packets sent from the client to the server.
*
* @return The number of packets sent from the client to the server.
*/
public long getNumClientPackets();
long getNumClientPackets();
/**
* Obtain the number of packets sent from the server to the client.
*
* @return The number of packets sent from the server to the client.
*/
public long getNumServerPackets();
long getNumServerPackets();
/**
* Close this session including associated socket connection. The order of
......@@ -118,28 +118,28 @@ public interface Session extends RoutableChannelHandler {
* <li>Close the socket.
* </ul>
*/
public void close();
void close();
/**
* Returns true if the connection/session is closed.
*
* @return true if the connection is closed.
*/
public boolean isClosed();
boolean isClosed();
/**
* Returns true if this connection is secure.
*
* @return true if the connection is secure (e.g. SSL/TLS)
*/
public boolean isSecure();
boolean isSecure();
/**
* Returns the peer certificates associated with this session, if any.
*
* @return certificates, possibly empty or null.
*/
public Certificate[] getPeerCertificates();
Certificate[] getPeerCertificates();
/**
* Returns the IP address string in textual presentation.
......@@ -147,7 +147,7 @@ public interface Session extends RoutableChannelHandler {
* @return the raw IP address in a string format.
* @throws java.net.UnknownHostException if IP address of host could not be determined.
*/
public String getHostAddress() throws UnknownHostException;
String getHostAddress() throws UnknownHostException;
/**
* Gets the host name for this IP address.
......@@ -175,10 +175,10 @@ public interface Session extends RoutableChannelHandler {
* @see java.net.InetAddress#getCanonicalHostName
* @see SecurityManager#checkConnect
*/
public String getHostName() throws UnknownHostException;
String getHostName() throws UnknownHostException;
@Override
public abstract void process(Packet packet);
void process( Packet packet );
/**
* Delivers raw text to this connection. This is a very low level way for sending
......@@ -191,7 +191,7 @@ public interface Session extends RoutableChannelHandler {
*
* @param text the XML stanzas represented kept in a String.
*/
public void deliverRawText(String text);
void deliverRawText( String text );
/**
* Verifies that the connection is still live. Typically this is done by
......@@ -201,14 +201,14 @@ public interface Session extends RoutableChannelHandler {
*
* @return true if the socket remains valid, false otherwise.
*/
public boolean validate();
boolean validate();
/**
* Returns the TLS cipher suite name, if any.
* Always returns a valid string, though the string may be "NONE"
* @return cipher suite name.
*/
public String getCipherSuiteName();
String getCipherSuiteName();
/**
* Returns the locale that is used for this session (e.g. {@link Locale#ENGLISH}).
......
......@@ -28,35 +28,35 @@ public interface Statistic {
*
* @return the name of a stat.
*/
public String getName();
String getName();
/**
* Returns the type of a stat.
*
* @return the type of a stat.
*/
public Type getStatType();
Type getStatType();
/**
* Returns a description of the stat.
*
* @return a description of the stat.
*/
public String getDescription();
String getDescription();
/**
* Returns the units that relate to the stat.
*
* @return the name of the units that relate to the stat.
*/
public String getUnits();
String getUnits();
/**
* Returns the current sample of data.
*
* @return a sample of the data.
*/
public double sample();
double sample();
/**
* Returns true if the sample value represents only the value of the cluster node
......@@ -74,13 +74,13 @@ public interface Statistic {
* @return true if the sample value represents only the value of the cluster node
* or otherwise it represents the value of the entire cluster.
*/
public boolean isPartialSample();
boolean isPartialSample();
/**
* The type of statistic.
*/
@SuppressWarnings({"UnnecessarySemicolon"}) // Support for QDox Parser
public enum Type {
enum Type {
/**
* The average rate over time. For example, the averave kb/s in bandwidth used for
......
......@@ -38,7 +38,7 @@ public interface PresenceEventListener {
* @param session the session that is now available.
* @param presence the received available presence.
*/
public void availableSession(ClientSession session, Presence presence);
void availableSession( ClientSession session, Presence presence );
/**
* Notification message indicating that a session that was available is no longer
......@@ -49,7 +49,7 @@ public interface PresenceEventListener {
* @param session the session that is no longer available.
* @param presence the received unavailable presence.
*/
public void unavailableSession(ClientSession session, Presence presence);
void unavailableSession( ClientSession session, Presence presence );
/**
* Notification message indicating that an available session has changed its
......@@ -59,7 +59,7 @@ public interface PresenceEventListener {
* @param session the affected session.
* @param presence the received available presence with the new information.
*/
public void presenceChanged(ClientSession session, Presence presence);
void presenceChanged( ClientSession session, Presence presence );
/**
* Notification message indicating that a user has successfully subscribed
......@@ -68,7 +68,7 @@ public interface PresenceEventListener {
* @param subscriberJID the user that initiated the subscription.
* @param authorizerJID the user that authorized the subscription.
*/
public void subscribedToPresence(JID subscriberJID, JID authorizerJID);
void subscribedToPresence( JID subscriberJID, JID authorizerJID );
/**
* Notification message indicating that a user has unsubscribed
......@@ -77,5 +77,5 @@ public interface PresenceEventListener {
* @param unsubscriberJID the user that initiated the unsubscribe request.
* @param recipientJID the recipient user of the unsubscribe request.
*/
public void unsubscribedToPresence(JID unsubscriberJID, JID recipientJID);
void unsubscribedToPresence( JID unsubscriberJID, JID recipientJID );
}
......@@ -32,5 +32,5 @@ public interface UserNameProvider {
* @param entity JID of the entity to return its name.
* @return the name of the entity specified by the following JID.
*/
abstract String getUserName(JID entity);
String getUserName( JID entity );
}
......@@ -34,7 +34,7 @@ public interface UserProvider {
* @return the User.
* @throws UserNotFoundException if the User could not be loaded.
*/
public User loadUser(String username) throws UserNotFoundException;
User loadUser( String username ) throws UserNotFoundException;
/**
* Creates a new user. This method should throw an
......@@ -48,7 +48,7 @@ public interface UserProvider {
* @return a new User.
* @throws UserAlreadyExistsException if the username is already in use.
*/
public User createUser(String username, String password, String name, String email)
User createUser( String username, String password, String name, String email )
throws UserAlreadyExistsException;
/**
......@@ -58,14 +58,14 @@ public interface UserProvider {
*
* @param username the username to delete.
*/
public void deleteUser(String username);
void deleteUser( String username );
/**
* Returns the number of users in the system.
*
* @return the total number of users.
*/
public int getUserCount();
int getUserCount();
/**
* Returns an unmodifiable Collections of all users in the system. The
......@@ -76,14 +76,14 @@ public interface UserProvider {
*
* @return an unmodifiable Collection of all users.
*/
public Collection<User> getUsers();
Collection<User> getUsers();
/**
* Returns an unmodifiable Collection of usernames of all users in the system.
*
* @return an unmodifiable Collection of all usernames in the system.
*/
public Collection<String> getUsernames();
Collection<String> getUsernames();
/**
* Returns an unmodifiable Collections of users in the system within the
......@@ -100,7 +100,7 @@ public interface UserProvider {
* @param numResults the total number of results to return.
* @return an unmodifiable Collection of users within the specified range.
*/
public Collection<User> getUsers(int startIndex, int numResults);
Collection<User> getUsers( int startIndex, int numResults );
/**
* Sets the user's name. This method should throw an UnsupportedOperationException
......@@ -110,7 +110,7 @@ public interface UserProvider {
* @param name the name.
* @throws UserNotFoundException if the user could not be found.
*/
public void setName(String username, String name) throws UserNotFoundException;
void setName( String username, String name ) throws UserNotFoundException;
/**
* Sets the user's email address. This method should throw an
......@@ -121,7 +121,7 @@ public interface UserProvider {
* @param email the email address.
* @throws UserNotFoundException if the user could not be found.
*/
public void setEmail(String username, String email) throws UserNotFoundException;
void setEmail( String username, String email ) throws UserNotFoundException;
/**
* Sets the date the user was created. This method should throw an
......@@ -132,7 +132,7 @@ public interface UserProvider {
* @param creationDate the date the user was created.
* @throws UserNotFoundException if the user could not be found.
*/
public void setCreationDate(String username, Date creationDate) throws UserNotFoundException;
void setCreationDate( String username, Date creationDate ) throws UserNotFoundException;
/**
* Sets the date the user was last modified. This method should throw an
......@@ -143,7 +143,7 @@ public interface UserProvider {
* @param modificationDate the date the user was last modified.
* @throws UserNotFoundException if the user could not be found.
*/
public void setModificationDate(String username, Date modificationDate)
void setModificationDate( String username, Date modificationDate )
throws UserNotFoundException;
/**
......@@ -160,7 +160,7 @@ public interface UserProvider {
* @throws UnsupportedOperationException if the provider does not
* support the operation (this is an optional operation).
*/
public Set<String> getSearchFields() throws UnsupportedOperationException;
Set<String> getSearchFields() throws UnsupportedOperationException;
/**
* Searches for users based on a set of fields and a query string. The fields must
......@@ -177,7 +177,7 @@ public interface UserProvider {
* @throws UnsupportedOperationException if the provider does not
* support the operation (this is an optional operation).
*/
public Collection<User> findUsers(Set<String> fields, String query)
Collection<User> findUsers( Set<String> fields, String query )
throws UnsupportedOperationException;
/**
......@@ -203,8 +203,8 @@ public interface UserProvider {
* @throws UnsupportedOperationException if the provider does not
* support the operation (this is an optional operation).
*/
public Collection<User> findUsers(Set<String> fields, String query, int startIndex,
int numResults) throws UnsupportedOperationException;
Collection<User> findUsers( Set<String> fields, String query, int startIndex,
int numResults ) throws UnsupportedOperationException;
/**
* Returns true if this UserProvider is read-only. When read-only,
......@@ -212,20 +212,20 @@ public interface UserProvider {
*
* @return true if the user provider is read-only.
*/
public boolean isReadOnly();
boolean isReadOnly();
/**
* Returns true if this UserProvider requires a name to be set on User objects.
*
* @return true if an name is required with this provider.
*/
public boolean isNameRequired();
boolean isNameRequired();
/**
* Returns true if this UserProvider requires an email address to be set on User objects.
*
* @return true if an email address is required with this provider.
*/
public boolean isEmailRequired();
boolean isEmailRequired();
}
\ No newline at end of file
......@@ -32,7 +32,7 @@ public interface VCardListener {
* @param username the username for which the vCard was created.
* @param vCard the vcard created.
*/
public void vCardCreated(String username, Element vCard);
void vCardCreated( String username, Element vCard );
/**
* A vCard was updated.
......@@ -40,7 +40,7 @@ public interface VCardListener {
* @param username the user for which the vCard was updated.
* @param vCard the vcard updated.
*/
public void vCardUpdated(String username, Element vCard);
void vCardUpdated( String username, Element vCard );
/**
* A vCard was deleted.
......@@ -48,5 +48,5 @@ public interface VCardListener {
* @param username the user for which the vCard was deleted.
* @param vCard the vcard deleted.
*/
public void vCardDeleted(String username, Element vCard);
void vCardDeleted( String username, Element vCard );
}
......@@ -8,7 +8,7 @@ public interface Encryptor {
* @param value The clear text attribute
* @return The encrypted attribute, or null
*/
public abstract String encrypt(String value);
String encrypt( String value );
/**
* Decrypt an encrypted String.
......@@ -16,7 +16,7 @@ public interface Encryptor {
* @param value The encrypted attribute in Base64 encoding
* @return The clear text attribute, or null
*/
public abstract String decrypt(String value);
String decrypt( String value );
/**
* Set the encryption key. This will apply the user-defined key,
......@@ -25,6 +25,6 @@ public interface Encryptor {
*
* @param key The encryption key
*/
public abstract void setKey(String key);
void setKey( String key );
}
\ No newline at end of file
......@@ -292,7 +292,7 @@ public class HttpClientWithTimeoutFeedFetcher extends AbstractFeedFetcher {
}
public interface CredentialSupplier {
public Credentials getCredentials(String realm, String host);
Credentials getCredentials( String realm, String host );
}
......
......@@ -34,7 +34,7 @@ public interface PropertyEventListener {
* @param property the name of the property.
* @param params event parameters.
*/
public void propertySet(String property, Map<String, Object> params);
void propertySet( String property, Map<String, Object> params );
/**
* A property was deleted.
......@@ -42,7 +42,7 @@ public interface PropertyEventListener {
* @param property the name of the property deleted.
* @param params event parameters.
*/
public void propertyDeleted(String property, Map<String, Object> params);
void propertyDeleted( String property, Map<String, Object> params );
/**
* An XML property was set. The parameter map <tt>params</tt> will contain the
......@@ -51,7 +51,7 @@ public interface PropertyEventListener {
* @param property the name of the property.
* @param params event parameters.
*/
public void xmlPropertySet(String property, Map<String, Object> params);
void xmlPropertySet( String property, Map<String, Object> params );
/**
* An XML property was deleted.
......@@ -59,6 +59,6 @@ public interface PropertyEventListener {
* @param property the name of the property.
* @param params event parameters.
*/
public void xmlPropertyDeleted(String property, Map<String, Object> params);
void xmlPropertyDeleted( String property, Map<String, Object> params );
}
\ No newline at end of file
......@@ -38,5 +38,5 @@ public interface Cacheable extends java.io.Serializable {
*
* @return the size of the Object in bytes.
*/
public int getCachedSize() throws CannotCalculateSizeException;
int getCachedSize() throws CannotCalculateSizeException;
}
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