manifest files and the Java client
Azad Bolour
Hi,
Correct me if I am wrong, but as far as I can tell, the cloud foundry Java API does not directly support the creation of an application based on the the manifest file as defined in: http://docs.cloudfoundry.org/devguide/deploy-apps/manifest.html My reading of the code is that the implementation of the create application function in the Java client boils down to the createApplication method of the class CloudControllerClientImpl: public void createApplication( String appName, Staging staging, Integer disk, Integer memory, List<String> uris, List<String> serviceNames) But the uris parameters does not appear in the manifest specification. How should I define the uris parameter in terms of the fields in the manifest? Is there sample code somewhere that would clue me into how to do this? Many thanks. Azad |
|