SYNTAX mfpdev adapter pull [[ [ ][--password | -p] ] [--xml | -x]] [--configFile | -c] DESCRIPTION Pulls the configuration for an adapter from the MobileFirst Server. You must run this command from an adapter directory, which was created and given the name of your adapter when you created an adapter. If config.json does not exist, it will automatically be created. Note: The default configuration file is the config.json file at the root of your adapter project, but you can specify a different location and filename by using the --configFile flag. 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. OPTIONS : Name of the server profile for the MobileFirst Server that the configuration is being pulled from. For a list of defined servers, run 'mfpdev server info'. Define new servers by running 'mfpdev server add'. Runtime that you want to pull the configuration from. If not specified, the server's default runtime is used. [--password | -p ]: The password for the administrator login ID (user name) on the specified server. If not specified, you are prompted for the password for all mfpdev server management tasks. [--xml | -x]: Pulls the adapter configuration from the server that is specified in the adapter's pom.xml file. The --xml option and the server name are mutually exclusive. If both a server name and this option are specified, the server specified in the pom.xml file is used. [--configFile | -c]: Specifies the path and name of the configuration file to use if it is different from the config.json in the root folder of the adapter project. EXAMPLES $ mfpdev adapter pull Pulls the adapter configuration from the default MobileFirst Server. Configuration file will be located at /config.json $ mfpdev adapter pull Server1 Pulls the adapter configuration from the MobileFirst Server Server1. Configuration file will be located at /config.json $ mfpdev adapter pull --configFile /alternate_config.json Pulls the adapter configuration and uses the alternate_config.json file that is in your adapterProject directory.