All Downloads are FREE. Search and download functionalities are using the official Maven repository.

website.automate.waml.io.model.action.StoreAction Maven / Gradle / Ivy

package website.automate.waml.io.model.action;

import java.util.Collections;
import java.util.Map;

public class StoreAction extends ElementStoreAction {

    private Map facts = Collections.emptyMap();
    
    public Map getFacts() {
        return facts;
    }

    public void setFacts(Map facts) {
        this.facts = facts;
    }
    
    @Override
    public Object getDefaultCriterionValue(){
        return facts;
    }
    
    @Override
    public boolean canBeShortNotated(){
      return getSelector() == null
          && super.canBeShortNotated();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy