[mud4j-commit] SF.net SVN: mud4j: [104] trunk/mud4j-telnet/src/java/net/sf/mud4j/telnet
Status: Pre-Alpha
Brought to you by:
mpurland
|
From: <mpu...@us...> - 2007-01-14 00:36:46
|
Revision: 104
http://mud4j.svn.sourceforge.net/mud4j/?rev=104&view=rev
Author: mpurland
Date: 2007-01-13 16:30:33 -0800 (Sat, 13 Jan 2007)
Log Message:
-----------
Add telnet server and controller.
Added Paths:
-----------
trunk/mud4j-telnet/src/java/net/sf/mud4j/telnet/TelnetController.java
trunk/mud4j-telnet/src/java/net/sf/mud4j/telnet/server/
trunk/mud4j-telnet/src/java/net/sf/mud4j/telnet/server/TelnetServer.java
Added: trunk/mud4j-telnet/src/java/net/sf/mud4j/telnet/TelnetController.java
===================================================================
--- trunk/mud4j-telnet/src/java/net/sf/mud4j/telnet/TelnetController.java (rev 0)
+++ trunk/mud4j-telnet/src/java/net/sf/mud4j/telnet/TelnetController.java 2007-01-14 00:30:33 UTC (rev 104)
@@ -0,0 +1,25 @@
+/**
+ * Copyright 2006 Matthew Purland (m.p...@gm...)
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package net.sf.mud4j.telnet;
+
+/**
+ * Telnet controller for handling requests for the presentation tier.
+ *
+ * @author Matthew Purland
+ */
+public class TelnetController {
+
+}
Added: trunk/mud4j-telnet/src/java/net/sf/mud4j/telnet/server/TelnetServer.java
===================================================================
--- trunk/mud4j-telnet/src/java/net/sf/mud4j/telnet/server/TelnetServer.java (rev 0)
+++ trunk/mud4j-telnet/src/java/net/sf/mud4j/telnet/server/TelnetServer.java 2007-01-14 00:30:33 UTC (rev 104)
@@ -0,0 +1,25 @@
+/**
+ * Copyright 2006 Matthew Purland (m.p...@gm...)
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package net.sf.mud4j.telnet.server;
+
+/**
+ * Provide interface for different implementations of telnet servers.
+ *
+ * @author Matthew Purland
+ */
+public interface TelnetServer {
+
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|