Previous Topic: Options in the Bundle ManifestNext Topic: Run Bundle Builder to Create a Bundle


Create the Folder Structure

Create the following folder structure under cs-home/connectors:

|- connectorname/
|- lib/
|- META-INF/
|- spring/
|- <root Java package folder>/
connectorname

Contains folders and files for the new connector. Choose a name that others will easily recognize.

This folder contains build.xml.

lib

Contains any third party JAR files required by the connector

META-INF

Contains the OSGi bundle manifest file, which is named manifest.mf.

spring

Contains connector.xml for the connector.

<root Java package folder>

This is the root Java package folder for classes included in the bundle. Contains the Java classes and any other resources that should be at runtime using the Java classloader.

For example, if the class com.ca.MyClass is in the bundle, this would be the com folder.