Interface ConfigStepChooseModel

All Superinterfaces:
ConfigStep

public interface ConfigStepChooseModel extends ConfigStep
Lets the user choose a model. The reference ID and UUID of the selected model will be passed as transformer parameters to any XSL transformations performed later in the publish. type: pre-step Example XML:

  <choose-model>
      <ref>start-model-ref</ref>
      <uuid>start-model-uuid</uuid>
      <title>Choose start model</title>
  </choose-model>
 
  • Method Details

    • getModelReferenceID

      String getModelReferenceID()
      The name of the transform parameter used for the reference ID of the selected model. XML tag: "ref"
      Returns:
      The name of the transformer parameter used for the reference ID of the selected model.
    • setModelReferenceID

      void setModelReferenceID(String referenceID)
    • getModelUUID

      String getModelUUID()
      The name of the transform parameter used for the UUID of the selected model. XML tag: "uuid"
      Returns:
      The name of the transform parameter used for the UUID of the selected model.
    • setModelUUID

      void setModelUUID(String modelUUID)
    • getDialogTitle

      String getDialogTitle()
      The title of the dialog shown to the user when selecting a model. XML tag: "title"
      Returns:
      The title of the dialog shown to the user when selecting a model.
    • setDialogTitle

      void setDialogTitle(String dialogTitle)