github.com/TIBCOSoftware/flogo-lib@v0.5.9/core/activity/config.go (about)

     1  package activity
     2  
     3  type Config struct {
     4  	Ref         string                 `json:"ref"`
     5  	Settings    map[string]interface{} `json:"settings,omitempty"`
     6  	InputAttrs  map[string]interface{} `json:"input,omitempty"`
     7  	OutputAttrs map[string]interface{} `json:"output,omitempty"`
     8  }
     9  
    10  func (c *Config) FixUp(metadata *Metadata)  {
    11  
    12  	//fixup settings
    13  
    14  	//generate input
    15  
    16  	//fix up outputs
    17  }