All Packages Class Hierarchy This Package Previous Next Index
Class com.ibm.as400.access.WriterJobList
java.lang.Object
|
+----com.ibm.as400.access.PrintObjectList
|
+----com.ibm.as400.access.WriterJobList
- public class WriterJobList
- extends PrintObjectList
- implements Serializable
The WriterJobList class is used to build a list of AS/400 writer job objects of type
WriterJob. The list can be filtered by writer job name or output queue.
- See Also:
- WriterJob
-
WriterJobList()
- Constructs a WriterJobList object.
-
WriterJobList(AS400)
- Constructs a WriterJobList object.
-
getQueueFilter()
- Returns the output queue filter.
-
getWriterFilter()
- Returns the writer filter.
-
setQueueFilter(String)
- Sets the output queue filter.
-
setWriterFilter(String)
- Sets writer list filter.
WriterJobList
public WriterJobList()
- Constructs a WriterJobList object. The AS/400 system must
be set later. This constructor is provided for visual application
builders that support JavaBeans. It is not intended for use
by application programmers.
- See Also:
- setSystem
WriterJobList
public WriterJobList(AS400 system)
- Constructs a WriterJobList object. It uses the system name provided.
The default list filter will list all writer jobs on the specified system.
- Parameters:
- system - The AS/400 on which the writer jobs exist.
getQueueFilter
public String getQueueFilter()
- Returns the output queue filter.
getWriterFilter
public String getWriterFilter()
- Returns the writer filter.
setQueueFilter
public void setQueueFilter(String queueFilter) throws PropertyVetoException
- Sets the output queue filter. Only writers active for this output queue
will be listed.
- Parameters:
- queueFilter - Specifies the library and output queue name for which the writer
jobs will be listed. The format of the queueFilter string must be in the
format of /QSYS.LIB/libname.LIB/queuename.OUTQ, where
libname is the library name that contains the queue for which to list writer
jobs. It must be a specific library name.
queuename is the name of an output queue for which to list writer jobs.
It must be a specific output queue name.
- Throws: PropertyVetoException
- If the change is vetoed.
setWriterFilter
public void setWriterFilter(String writerFilter) throws PropertyVetoException
- Sets writer list filter.
- Parameters:
- writerFilter - The name of the writers to list.
writer is the name of the writers to list.
It can be a specific name, a generic name, or the special value *ALL.
The default for the writerFilter is *ALL.
- Throws: PropertyVetoException
- If the change is vetoed.
All Packages Class Hierarchy This Package Previous Next Index