Commit 0dc753ca authored by Matt Tucker's avatar Matt Tucker Committed by matt

Javadoc fixes.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@789 b35dd754-fafc-0310-a699-88a17e54d16e
parent 4e24fc81
...@@ -66,7 +66,7 @@ public class ComponentManager { ...@@ -66,7 +66,7 @@ public class ComponentManager {
* to the specified JID. * to the specified JID.
* *
* @param jid the jid mapped to the component. * @param jid the jid mapped to the component.
* @return * @return the component with the specified id.
*/ */
public Component getComponent(String jid) { public Component getComponent(String jid) {
if (components.containsKey(validateJID(jid))) { if (components.containsKey(validateJID(jid))) {
......
...@@ -270,9 +270,10 @@ public class SessionManager extends BasicModule implements ConnectionCloseListen ...@@ -270,9 +270,10 @@ public class SessionManager extends BasicModule implements ConnectionCloseListen
private StreamIDFactory streamIDFactory; private StreamIDFactory streamIDFactory;
/** /**
* Creates a new <code>Session</code> * Creates a new <tt>Session</tt>.
*
* @param conn the connection to create the session from. * @param conn the connection to create the session from.
* @return * @return a newly created session.
* @throws UnauthorizedException * @throws UnauthorizedException
*/ */
public Session createSession(Connection conn) throws UnauthorizedException { public Session createSession(Connection conn) throws UnauthorizedException {
......
...@@ -3,7 +3,8 @@ ...@@ -3,7 +3,8 @@
<head> <head>
</head> </head>
<body> <body>
<p>Authentication service interfaces and classes. Custom authentication <p>Authentication service interfaces and classes. Custom
implementations can be created by extending the {@link AuthProvider} interface. authentication implementations can be created by extending the
{@link org.jivesoftware.messenger.auth.AuthProvider} interface.
</body> </body>
</html> </html>
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