Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Groovy and WLST scripts can invoke Java methods on variables supplied in environment. Here are the available methods for use by script based plugins. If method returns POJO object, other methods can be called to find specific value. For example, wfcontext.getCurrentInstancegetInstance() returns Instance POJO, which provides additional methods like getInstancegetInstanceID(), getName() and getCode() etc.

  • wfcontext

    • Long getWorkflowExecutionId()

    • Long getWorkflowRequestId()

    • Long getPluginExecutionId()

    • String getWorkflowType()

      • Value will be either BUILD or DEPLOY, DEPLOY, PREDEPLOY, TEST or UTILITY.

    • Instance getCurrentInstance()

      • Instance object has the following methods

        • Long getInstanceID()

        • String getName()

        • String getCode()

          • Same as FD_INSTANCE_CODE

    • String getCurrentInstanceCode()

      • Same as FD_INSTANCE_CODE

    • Environment getCurrentEnvironment()

      • Environment object has the following methods.

        • Long getEnvironmentID()

        • String getName()

        • String getCode()

          • Same as FD_ENVIRONMENT_CODE

    • String getCurrentEnvironmentCode()

      • Same as FD_ENVIRONMENT_CODE

    • Project getCurrentProject()

      • Project object has the following methods.

        • String getName()

          • Same as FD_PROJECT_NAME

        • Long getProjectId()

        • SCMTypeEnum String getSCMType()

          • Java Enum with possible values Values will be either SVN, GIT, NONEPVCS, CVS, TFS

      String
          • , TFVC,PERF,FILE,OIC,SURROUND,NONE.

    • tring getCurrentProjectName()

      • Same as FD_PROJECT_NAME

    • String getArtifactsDirectory()

      • Same as FD_ARTIFACTS_DIR

    • String getTempDirectory()

      • Same as FD_TEMP_DIR

    • String getInternalDirectory()

      • Internal directory used by FlexDeploy for temporary scripts

    • Object getInput(String pName)

      • Returns value for specified input name.

    • Object getPropertyValue(String pKey)

      • Returns Project property value specified by key name.

    • Object getPropertyValue(String pInstanceCode, String pKey)

      • Returns environment instance property value for specified instance and key name.

      • If property is overridden at project level, overridden value is returned.

    • Object getCurrentInstancePropertyValue(String pKey)

      • Returns environment instance property value for current instance and key name.

      • If property is overridden at project level, overridden value is returned.

    • Object getPropertyValueOrDefault(String pKey, Object pDefault)

    • Object getPropertyValueOrDefault(String pInstanceCode, String pKey, Object pDefault)

    • Object getCurrentInstancePropertyValueOrDefault(String pKey, Object pDefault)

    • boolean isForceDeploy)

    • boolean isForceDeploy()

    • boolean isBuildWorkflow()

    • boolean isDeployWorkflow()

    • boolean isPreDeployWorkflow()

    • boolean isUtilityWorkflow()

    • boolean isTestWorkflow()

    • boolean isDeployOrUtilityWorkflow()

    • boolean isDeployOrPreDeployWorkflow()

    • Map<String, PropertyDefinition> getPropertyDefinitions()

      • PropertyDefinition object has the following methods.

        • Long getPropertyKeyDefinitionId()

        • String getPropertyKeyName()

        • String getDisplayName()

        • String getPropertyScope()

        • String getDataType()

        • String getSubDataType()

        • boolean isEncrypted()

        • boolean isRequired()

        • boolean isCustom()

    • List<ITSIssue> getIssues()

      • ITSIssue object has the following methods.

        • String getIssueNumber()

        • Long getIssueId()

        • Long getInstanceId()

        • String getDescription()

    • List<ScmCommit> getCommits()

      • ScmCommit object has the following methods.

        • String getRevision()

        • Long getCommitId()

        • String getCommitterEmail()

        • Timestamp getCommitDate()

        • String getCommitMessage()

        • String getCommitUser()

        • Long getInstanceId()