Class SshResource
java.lang.Object
org.apache.camel.quarkus.component.ssh.it.SshResource
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) org.apache.camel.ProducerTemplate -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionjavax.ws.rs.core.Responsejavax.ws.rs.core.ResponsewriteToFile(String fileName, String content)
-
Field Details
-
producerTemplate
@Inject org.apache.camel.ProducerTemplate producerTemplate
-
-
Constructor Details
-
SshResource
public SshResource()
-
-
Method Details
-
writeToFile
@POST @Path("/file/{fileName}") @Consumes("text/plain") public javax.ws.rs.core.Response writeToFile(@PathParam("fileName") String fileName, String content) throws URISyntaxException - Throws:
URISyntaxException
-
readFile
@GET @Path("/file/{fileName}") @Produces("text/plain") public javax.ws.rs.core.Response readFile(@PathParam("fileName") String fileName) throws URISyntaxException - Throws:
URISyntaxException
-