ibm-information-center/dist/eclipse/plugins/i5OS.ic.rzahh_5.4.0.1/joblist.htm

74 lines
4.4 KiB
HTML
Raw Permalink Normal View History

2024-04-02 14:02:31 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-us" xml:lang="en-us">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="security" content="public" />
<meta name="Robots" content="index,follow" />
<meta http-equiv="PICS-Label" content='(PICS-1.1 "http://www.icra.org/ratingsv02.html" l gen true r (cz 1 lz 1 nz 1 oz 1 vz 1) "http://www.rsac.org/ratingsv01.html" l gen true r (n 0 s 0 v 0 l 0) "http://www.classify.org/safesurf/" l gen true r (SS~~000 1))' />
<meta name="DC.Type" content="reference" />
<meta name="DC.Title" content="JobList class" />
<meta name="abstract" content="" />
<meta name="description" content="" />
<meta name="copyright" content="(C) Copyright IBM Corporation 2006" />
<meta name="DC.Rights.Owner" content="(C) Copyright IBM Corporation 2006" />
<meta name="DC.Format" content="XHTML" />
<meta name="DC.Identifier" content="joblist" />
<meta name="DC.Language" content="en-us" />
<!-- All rights reserved. Licensed Materials Property of IBM -->
<!-- US Government Users Restricted Rights -->
<!-- Use, duplication or disclosure restricted by -->
<!-- GSA ADP Schedule Contract with IBM Corp. -->
<link rel="stylesheet" type="text/css" href="./ibmdita.css" />
<link rel="stylesheet" type="text/css" href="./ic.css" />
<title>JobList class</title>
</head>
<body id="joblist"><a name="joblist"><!-- --></a>
<!-- Java sync-link --><script language="Javascript" src="../rzahg/synch.js" type="text/javascript"></script>
<h1 class="topictitle1">JobList class</h1>
<div><p></p>
<div class="section"><p>You can use <a href="javadoc/com/ibm/as400/access/JobList.html#NAVBAR_TOP">JobList</a> class (in the access package) to list iSeries™ <a href="javadoc/com/ibm/as400/access/Job.html#NAVBAR_TOP">jobs</a>.</p>
<div class="note"><span class="notetitle">Note:</span> IBM<sup>®</sup> Toolbox
for Java™ also
provides <a href="resources.htm#resources">resource classes</a> that
present a generic framework and consistent programming interface for working
with various iSeries objects
and lists. After reading about the classes in the <a href="javadoc/com/ibm/as400/access/package-summary.html#NAVBAR_TOP">access package</a> and the <a href="javadoc/com/ibm/as400/resource/package-summary.html#NAVBAR_TOP">resource package</a>, you can choose the object that works
best for your application. The resource classes for working with jobs are <a href="javadoc/com/ibm/as400/resource/RJob.html#NAVBAR_TOP"> RJob</a>, <a href="javadoc/com/ibm/as400/resource/RJobList.html#NAVBAR_TOP"> RJobList</a>, and <a href="javadoc/com/ibm/as400/resource/RJobLog.html#NAVBAR_TOP"> RJobLog</a>.</div>
<p>With the JobList class, you can retrieve
the following:</p>
<ul><li><a href="javadoc/com/ibm/as400/access/JobList.html#GETJOBS()">All</a> jobs</li>
<li>Jobs by <a href="javadoc/com/ibm/as400/access/JobList.html#SETNAME(JAVA.LANG.STRING)">name</a>, <a href="javadoc/com/ibm/as400/access/JobList.html#SETNUMBER(JAVA.LANG.STRING)">job number</a>, or <a href="javadoc/com/ibm/as400/access/JobList.html#SETUSER(JAVA.LANG.STRING)">user</a></li>
</ul>
<p>Use the <a href="javadoc/com/ibm/as400/access/JobList.html#GETJOBS()">getJobs()</a> method to return a list of iSeries jobs
or <a href="javadoc/com/ibm/as400/access/JobList.html#GETLENGTH()"> getLength()</a> method to return the number of jobs retrieved
with the last getJobs().</p>
</div>
<div class="section" id="joblist__jbltex1"><a name="joblist__jbltex1"><!-- --></a><h4 class="sectiontitle">Example: Using JobList</h4><p>The following
example lists all active jobs on the system:</p>
<pre> // Create an AS400 object. List the
// jobs on this iSeries.
AS400 sys = new AS400("mySystem.myCompany.com");
// Create the job list object.
JobList jobList = new JobList(sys);
// Get the list of active jobs.
Enumeration list = jobList.getJobs();
// For each active job on the system
// print job information.
while (list.hasMoreElements())
{
Job j = (Job) list.nextElement();
System.out.println(j.getName() + "." +
j.getUser() + "." +
j.getNumber());
}</pre>
</div>
</div>
</body>
</html>