Commit f414fb5b authored by Bill Lynch's avatar Bill Lynch Committed by bill

Javadoc fixes


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@58 b35dd754-fafc-0310-a699-88a17e54d16e
parent ead9211b
......@@ -118,7 +118,7 @@ public class MetaDataFragment extends PayloadFragment {
/**
* Returns the value of the specified property. A <tt>null</tt> answer does not necessarily mean
* that the property does not exist. Use {@link includesProperty(String)} to find out whether
* that the property does not exist. Use {@link #includesProperty(String)} to find out whether
* the property exists or not.
*
* @param name the name of the property to get.
......@@ -172,7 +172,7 @@ public class MetaDataFragment extends PayloadFragment {
/**
* Returns true if the specified property is included in the XML hierarchy. A property could
* have a value associated or not. If the property has an associated value then
* {@link getProperty(String)} will return a String otherwise <tt>null</tt> will be answered.
* {@link #getProperty(String)} will return a String otherwise <tt>null</tt> will be answered.
*
* @param name the name of the property to find out.
* @return true if the specified property is included in the XML hierarchy.
......
......@@ -39,8 +39,6 @@ public interface ChatServer {
* Non-anonymous rooms is a JEP-0045 Multi-User Chat (MUC) feature
* that causes the server to send the real JID of all participants in
* room presence updates.
*
* @return
*/
boolean isUseAnonymousRooms();
......
......@@ -29,8 +29,8 @@ import java.util.List;
* </ul>
* <p/>
* In case the form represents a search, the report will be structured in columns and rows. Use
* {@link addReportedField(FormField)} to set the columns of the report whilst the report's rows
* can be configured using {@link addItemFields(ArrayList)}.
* {@link #addReportedField(FormField)} to set the columns of the report whilst the report's rows
* can be configured using {@link #addItemFields(ArrayList)}.
*
* @author gdombiak
*/
......
......@@ -40,8 +40,9 @@ import org.dom4j.QName;
* idea to do authorization in each handler. It would be nice if
* the framework could assert authorization policies across channels.
*
* <p>TODO: Verify responding to an iq 'get'</p>
*
* @author Iain Shigeoka
* @todo Verify responding to an iq 'get'
*/
public class IQVersionHandler extends IQHandler implements ServerFeaturesProvider {
......
......@@ -181,7 +181,7 @@ public interface MultiUserChatServer {
* the logged messages in memory until the logging process saves them to the database. It's
* possible to configure the logging process to run every X milliseconds and also the number
* of messages to log on each execution.
* @see com.jivesoftware.muc.spi.MultiUserChatServerImpl#initialize(ModuleContext, Container)
* @see org.jivesoftware.messenger.muc.spi.MultiUserChatServerImpl#initialize(org.jivesoftware.messenger.container.ModuleContext, org.jivesoftware.messenger.container.Container)
*
* @param room the room that received the message.
* @param message the message to log as part of the conversation in the room.
......
......@@ -42,8 +42,6 @@ public interface ConnectionManager {
* change connection configurations, it is expected that the primary events
* recorded are in protocol-level connection state changes such as the
* establishment of TLS over a previously insecure connection via SASL.
*
* @return
*/
ConnectionMonitor getConfigMonitor();
......
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