Changeset 4172
- Timestamp:
- Mar 12, 2008, 11:49:03 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.6-stable/www/admin/jobagents/list_agents.jsp
r4003 r4172 49 49 import="net.sf.basedb.util.Enumeration" 50 50 import="net.sf.basedb.util.ShareableUtil" 51 import="net.sf.basedb.util.jobagent.JobInfo" 51 52 import="net.sf.basedb.clients.web.Base" 52 53 import="net.sf.basedb.clients.web.PermissionUtil" … … 499 500 <tbl:cell column="jobs"> 500 501 <% 501 Set<Integer> jobs = item.getInfo().getJobs(); 502 if (jobs == null || jobs.size() == 0) 502 Set<JobInfo> jobs = item.getInfo().getJobInfo(); 503 if (jobs == null) 504 { 505 %> 506 Unknown 507 <% 508 } 509 else if (jobs.size() == 0) 503 510 { 504 511 %> … … 509 516 { 510 517 String separator = ""; 511 for ( int jobId: jobs)518 for (JobInfo jobInfo : jobs) 512 519 { 513 520 try 514 521 { 515 Job job = Job.getById(dc, jobI d);522 Job job = Job.getById(dc, jobInfo.getJobId()); 516 523 out.write(separator); 517 524 if (mode.hasPropertyLink())
Note: See TracChangeset
for help on using the changeset viewer.