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
-
Method Summary
Modifier and TypeMethodDescriptionGets the value of thesystemErrorStreamConsumer
field.Gets the value of thesystemOutStreamConsumer
field.void
setSystemErrorStreamConsumer
(StreamConsumer systemErrorStreamConsumer) Sets the new given value to the fieldsystemErrorStreamConsumer
of the request.void
setSystemOutStreamConsumer
(StreamConsumer systemOutStreamConsumer) Sets the new given value to the fieldsystemOutStreamConsumer
of the request.
-
Method Details
-
getSystemOutStreamConsumer
StreamConsumer getSystemOutStreamConsumer()Gets the value of the
systemOutStreamConsumer
field.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
systemOutStreamConsumer
field.
-
getSystemErrorStreamConsumer
StreamConsumer getSystemErrorStreamConsumer()Gets the value of the
systemErrorStreamConsumer
field.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
systemErrorStreamConsumer
field.
-