chore: ee split plugin schemas (#40488)
Co-authored-by: Nilesh Sarupriya <20905988+nsarupr@users.noreply.github.com>
This commit is contained in:
parent
d5eb1f3564
commit
352e68baff
|
|
@ -0,0 +1,3 @@
|
|||
package com.appsmith.server.plugins.solutions;
|
||||
|
||||
public interface PluginSchemaSolution extends PluginSchemaSolutionCE {}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
package com.appsmith.server.plugins.solutions;
|
||||
|
||||
import com.fasterxml.jackson.databind.JsonNode;
|
||||
import reactor.core.publisher.Mono;
|
||||
|
||||
public interface PluginSchemaSolutionCE {
|
||||
Mono<JsonNode> getPluginSchema(String pluginId);
|
||||
}
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
package com.appsmith.server.plugins.solutions;
|
||||
|
||||
import com.fasterxml.jackson.databind.JsonNode;
|
||||
import org.springframework.stereotype.Component;
|
||||
import reactor.core.publisher.Mono;
|
||||
|
||||
@Component
|
||||
public class PluginSchemaSolutionCEImpl implements PluginSchemaSolutionCE {
|
||||
@Override
|
||||
public Mono<JsonNode> getPluginSchema(String pluginId) {
|
||||
return Mono.empty();
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
package com.appsmith.server.plugins.solutions;
|
||||
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
@Component
|
||||
public class PluginSchemaSolutionImpl extends PluginSchemaSolutionCEImpl implements PluginSchemaSolution {}
|
||||
Loading…
Reference in New Issue
Block a user