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

Constructor Index

 o WriterJobList()
Constructs a WriterJobList object.
 o WriterJobList(AS400)
Constructs a WriterJobList object.

Method Index

 o getQueueFilter()
Returns the output queue filter.
 o getWriterFilter()
Returns the writer filter.
 o setQueueFilter(String)
Sets the output queue filter.
 o setWriterFilter(String)
Sets writer list filter.

Constructors

 o 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
 o 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.

Methods

 o getQueueFilter
 public String getQueueFilter()
Returns the output queue filter.

 o getWriterFilter
 public String getWriterFilter()
Returns the writer filter.

 o 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.
 o 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