Commit cce43137 authored by Matt Tucker's avatar Matt Tucker Committed by matt

Initial check-in.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk/src/plugins/gateway@4212 b35dd754-fafc-0310-a699-88a17e54d16e
parents
File added
<?xml version="1.0" encoding="UTF-8"?>
<plugin>
<!-- Main plugin class -->
<class>org.jivesoftware.wildfire.gateway.GatewayPlugin</class>
<!-- Plugin meta-data -->
<name>IM Gateway</name>
<description>Provides gateway connectivity to the public AIM and ICQ networks</description>
<author></author>
<version>.1</version>
<date>07/02/2006</date>
<minServerVersion>3.0.0</minServerVersion>
</plugin>
\ No newline at end of file
/**
* $Revision$
* $Date$
*
* Copyright (C) 2006 Jive Software. All rights reserved.
*
* This software is published under the terms of the GNU Public License (GPL),
* a copy of which is included in this distribution.
*/
package org.jivesoftware.wildfire.gateway;
import org.jivesoftware.wildfire.container.Plugin;
import org.jivesoftware.wildfire.container.PluginManager;
import java.io.File;
/**
* IM Gateway plugin.
*
* @author
*/
public class GatewayPlugin implements Plugin {
public void initializePlugin(PluginManager manager, File pluginDirectory) {
}
public void destroyPlugin() {
}
}
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