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

org.openmetadata.service.apps.NativeApplication Maven / Gradle / Ivy

There is a newer version: 1.5.11
Show newest version
package org.openmetadata.service.apps;

import org.openmetadata.schema.entity.app.App;
import org.quartz.Job;
import org.quartz.JobExecutionContext;

public interface NativeApplication extends Job {
  void init(App app);

  void install();

  void triggerOnDemand();

  void configure();

  void cleanup();

  void raisePreviewMessage(App app);

  default void startApp(JobExecutionContext jobExecutionContext) {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy