SYNTAX mfpdev adapter create [ --type|-t --group|-g [--package|-p ] ] DESCRIPTION Creates a new MobileFirst adapter. Adapters are used to securely connect back-end systems to client applications and cloud services. Adapters are built as Maven projects and can be written in JavaScript or Java. Prerequisite: Maven must be installed and the 'mvn' command must be in the system path. Follow the instructions on the Apache Maven web site to download and install Maven. The mfpdev adapter create command creates a new adapter of the specified type. It uses MobileFirst plug-ins that are installed from the maven central repository to generate the adapter. The adapter files are placed in a new directory at the root of your app that is given the name of the adapter. OPTIONS Specifies the name of the adapter. A directory of this name is created in the root directory of your app. --type|-t: The type of adapter to create. The following types are valid: http - HTTP sql - SQL java - Java --package|-p: (Java adapters only. Required.) The name of the package that contains the Java adapter classes. --group|-g: The Maven group ID for the adapter. EXAMPLES Interactive Mode: $ mfpdev adapter create Prompts you to specify information about the new adapter. Use the up and down arrow keys on your keyboard to move through the selections, and press the Enter key to select. Direct Mode: $ mfpdev adapter create testAdapter -t java -p com.test.package -g com.test.group Creates a Java adapter named testAdapter, where com.test.package contains the Java classes, and the group ID is com.test.group.