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