Commit 32e36e0c authored by Tom Evans's avatar Tom Evans

Merge pull request #502 from akrherz/javadoc-fixes

Fix some javadoc warnings
parents 954f0998 21c598e0
......@@ -30,7 +30,7 @@ import java.util.List;
* regarding the port while hiding implementation details.
*
* @author Iain Shigeoka
* @Deprecated
* @deprecated
*/
@Deprecated
public class ServerPort {
......
......@@ -379,7 +379,7 @@ public class SessionManager extends BasicModule implements ClusterEventListener/
/**
* Creates a new <tt>ClientSession</tt> with the specified streamID.
*
* @param conn the connection to create the session from.
* @param connection the connection to create the session from.
* @param id the streamID to use for the new session.
* @return a newly created session.
*/
......
......@@ -302,7 +302,7 @@ public abstract class LocalSession implements Session {
/**
* Get XEP-0198 Stream manager for session
* @return
* @return The StreamManager for the session.
*/
public StreamManager getStreamManager() {
return streamManager;
......
......@@ -140,7 +140,7 @@ public class StreamManager {
}
/**
* Sends XEP-0198 acknowledgement <a /> to client from server
* Sends XEP-0198 acknowledgement &lt;a /&gt; to client from server
*/
public void sendServerAcknowledgement() {
if(isEnabled()) {
......
......@@ -21,7 +21,7 @@ public class CNCertificateIdentityMapping implements CertificateIdentityMapping
* Maps certificate CommonName as identity credentials
*
* @param certificate
* @return
* @return A List of names.
*/
@Override
public List<String> mapIdentity(X509Certificate certificate) {
......
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