Openwings API Documentation (v1.1)

net.openwings.connector
Interface ConnectorClassArchiver


public interface ConnectorClassArchiver

This interface describes a tool that is used to archive a compiled connector.

See Also:
ConnectorSourceCompiler

Method Summary
 void createArchives(java.lang.String interfaceName, java.lang.String archiveName)
          This method creates the archive by the given archiveName based on the given interfaceName.
 void createArchives(java.lang.String interfaceName, java.lang.String archiveName, java.lang.String classpath)
          This method creates the archive by the given archiveName based on the given interfaceName.
 

Method Detail

createArchives

public void createArchives(java.lang.String interfaceName,
                           java.lang.String archiveName)
This method creates the archive by the given archiveName based on the given interfaceName. Here, no classpath has been specified, and a default should be used.

Parameters:
interfaceName - the interface to archive for
archiveName - the name of the archive to create. This includes the full path of where the archive is to be placed.

createArchives

public void createArchives(java.lang.String interfaceName,
                           java.lang.String archiveName,
                           java.lang.String classpath)
This method creates the archive by the given archiveName based on the given interfaceName. The classpath specified is used to locate the classes needed to build the archive.

Parameters:
interfaceName - the interface to archive for
archiveName - the name of the archive to create. This includes the full path of where the archive is to be placed.
classpath - the path used to locate the dependencies of the connector.

Openwings API Documentation (v1.1)