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