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

org.snapscript.studio.agent.event.ExecuteData Maven / Gradle / Ivy

package org.snapscript.studio.agent.event;

public class ExecuteData {

   private final String dependencies;
   private final String process;
   private final String resource;
   private final String project;
   private final boolean debug;
   
   public ExecuteData(String process, String project, String resource, String dependencies, boolean debug) {
      this.dependencies = dependencies;
      this.project = project;
      this.resource = resource;
      this.process = process;
      this.debug = debug;
   }
   
   public String getDependencies() {
      return dependencies;
   }

   public String getProcess() {
      return process;
   }
   
   public String getResource() {
      return resource;
   }

   public String getProject() {
      return project;
   }
   
   public boolean isDebug(){
      return debug;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy