...
Method | Required | Description | |||||
---|---|---|---|---|---|---|---|
Project.setProjectPath(String pProjectPath) | Yes | Set Project path. For example. FlexDeploy/SOA/HR. In this example, SOA folder will be created if it does not exist and HR application will be created if it does not exist. You must make sure that you are defining last element in Project Path consistently as Application. For example, along with above example FlexDeploy/SOA/HR, if you used path as FlexDeploy/SOA/HR/Application, you will have issues. | |||||
Project.setProjectName(String pProjectName) | Yes | Set Project Name. | |||||
Project.setDeployPriority(Integer pDeployPriority) | Yes | Set Project Priority. If not supplied 1 is used. | |||||
Project.setDeployPriorityScope(String pDeployPriorityScope) | Yes | Defaults to Application. Possible values are Application,Folder,Global. | |||||
Project.setDescription(String pDescription) | Yes | ||||||
Project.setPartialDeploy(boolean) | No | true if partial deployment project is being created. | |||||
Project.setProjectType(String) | No | Required if partial deployment project. Examples are GENERAL, EBS, PARTIAL_FILE, PARTIAL_JDBC, OracleForms, ORACLE_DB, ORACLE_BI, ORACLE_APEX, MFT, SALESFORCE, UTILITY, MDS, SAP, OSB, GENERIC | |||||
Project.addProperty(String pPropertyName, Object pPropertyValue) | No | This depends on type of Project being created. For example,
| |||||
Project.addProperty(String pPropertyName, Object pPropertyValue, boolean pExpression) | No | Same as above method, except you can specify whether Property Value is expression or not by using boolean parameter. | |||||
Project.setActive(boolean pActive) | No | Default would be true. | |||||
Project.setWebhooksEnabled(boolean pWebhookEnabled) | No | Enables or disables webhook enabled flag for project. This was added in 5.3.0.2 | |||||
Change default stream name. | No | This must be done prior to adding any Stream. Project.getStreams(). get ( 0 ).setStreamName( "master" ); |
...