Interface JavaToolRequest
- All Known Implementing Classes:
AbstractJavaToolRequest
public interface JavaToolRequest
Specifies the minimum parameters used to control a
JavaTool invocation.- Since:
- 0.5
- Author:
- Tony Chemit <chemit@codelutin.com>
-
Method Summary
Modifier and TypeMethodDescriptionGets the value of thesystemErrorStreamConsumerfield.Gets the value of thesystemOutStreamConsumerfield.voidsetSystemErrorStreamConsumer(StreamConsumer systemErrorStreamConsumer) Sets the new given value to the fieldsystemErrorStreamConsumerof the request.voidsetSystemOutStreamConsumer(StreamConsumer systemOutStreamConsumer) Sets the new given value to the fieldsystemOutStreamConsumerof the request.
-
Method Details
-
getSystemOutStreamConsumer
StreamConsumer getSystemOutStreamConsumer()Gets the value of thesystemOutStreamConsumerfield. This option field if filled is used by the commandline tool to consume system ouput stream of the jarsigner command.- Returns:
- the value of the
systemOutStreamConsumerfield.
-
getSystemErrorStreamConsumer
StreamConsumer getSystemErrorStreamConsumer()Gets the value of thesystemErrorStreamConsumerfield. This option field if filled is used by the commandline tool to consume system error stream of the jarsigner command.- Returns:
- the value of the
systemErrorStreamConsumerfield.
-