Class Flow

java.lang.Object
io.gravitee.am.service.model.Flow

public class Flow extends Object
Entity used for both create and update operation
Author:
Titouan COMPIEGNE (titouan.compiegne at graviteesource.com), GraviteeSource Team
  • Constructor Details

    • Flow

      public Flow()
  • Method Details

    • getId

      public String getId()
    • setId

      public void setId(String id)
    • getName

      public String getName()
    • setName

      public void setName(String name)
    • getPre

      public List<Step> getPre()
    • setPre

      public void setPre(List<Step> pre)
    • getPost

      public List<Step> getPost()
    • setPost

      public void setPost(List<Step> post)
    • isEnabled

      public boolean isEnabled()
    • setEnabled

      public void setEnabled(boolean enabled)
    • getType

      public Type getType()
    • setType

      public void setType(Type type)
    • getCondition

      public String getCondition()
    • setCondition

      public void setCondition(String condition)