[Waste-first] Nightly build results for waste-first
Maven User
maven@epic52.dep.state.fl.us
Fri, 26 Aug 2005 21:26:02 -0400
__ __
| \/ |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \ ~ intelligent projects ~
|_| |_\__,_|\_/\___|_||_| v. 1.0.2
build:start:
nightly-build:
[mkdir] Created dir: /3psw/home/maven-1.0.2/projects/waste-first/target
Now attaining goal number 0, which is clean
clean:clean:
[delete] Deleting directory /3psw/home/maven-1.0.2/projects/waste-first/target
clean:
Now attaining goal number 1, which is java:compile
java:prepare-filesystem:
[mkdir] Created dir: /3psw/home/maven-1.0.2/projects/waste-first/target/classes
java:compile:
[echo] Compiling to /3psw/home/maven-1.0.2/projects/waste-first/target/classes
[echo]
==========================================================
NOTE: Targetting JVM 1.4, classes
will not run on earlier JVMs
==========================================================
[javac] Compiling 219 source files to /3psw/home/maven-1.0.2/projects/waste-first/target/classes
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/Bulletin.java:20: cannot resolve symbol
symbol : class NotificationDAO
location: package service
import us.fl.state.dep.waste.bpss.first.service.NotificationDAO;
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/DisplayCodesAction.java:33: cannot resolve symbol
symbol : class NotificationDAO
location: package service
import us.fl.state.dep.waste.bpss.first.service.NotificationDAO;
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/DisplayNotificationsAction.java:20: cannot resolve symbol
symbol : class NotificationDAO
location: package service
import us.fl.state.dep.waste.bpss.first.service.NotificationDAO;
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/EditCodeAction.java:36: cannot resolve symbol
symbol : class NotificationDAO
location: package service
import us.fl.state.dep.waste.bpss.first.service.NotificationDAO;
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/Login.java:31: cannot resolve symbol
symbol : class NotificationDAO
location: package service
import us.fl.state.dep.waste.bpss.first.service.NotificationDAO;
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/PortalAction.java:29: cannot resolve symbol
symbol : class NotificationDAO
location: package service
import us.fl.state.dep.waste.bpss.first.service.NotificationDAO;
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/SaveCodeAction.java:36: cannot resolve symbol
symbol : class NotificationDAO
location: package service
import us.fl.state.dep.waste.bpss.first.service.NotificationDAO;
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/SaveNotificationAction.java:26: cannot resolve symbol
symbol : class NotificationDAO
location: package service
import us.fl.state.dep.waste.bpss.first.service.NotificationDAO;
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/ViewNotificationAction.java:22: cannot resolve symbol
symbol : class NotificationDAO
location: package service
import us.fl.state.dep.waste.bpss.first.service.NotificationDAO;
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/AssignmentAdminAction.java:92: cannot resolve symbol
symbol : method getAssignment (java.lang.String)
location: class us.fl.state.dep.waste.bpss.first.service.AssignmentService
Assignment a = AssignmentService.getAssignment (whereClause);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/AssignmentAdminAction.java:98: cannot resolve symbol
symbol : method getUserFacilities (java.lang.String)
location: class us.fl.state.dep.waste.bpss.first.service.AssignmentService
UserFacility[] uf = AssignmentService.getUserFacilities (ufWhereClause);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/AssignmentAdminAction.java:123: cannot resolve symbol
symbol : method getAssignments (java.lang.String)
location: class us.fl.state.dep.waste.bpss.first.service.AssignmentService
Assignment[] a = AssignmentService.getAssignments (whereClause);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/Bulletin.java:71: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.Bulletin
Notification not = (Notification) NotificationDAO.getNotification ((id), false);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/DisplayCodesAction.java:96: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.DisplayCodesAction
NotificationTypeCode[] ntc = NotificationDAO.getNotificationTypeCodes ();
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/DisplayCodesAction.java:99: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.DisplayCodesAction
PriorityCode[] pc = NotificationDAO.getPriorityCodes ();
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/DisplayCodesAction.java:108: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.DisplayCodesAction
RecipientTypeCode[] retc = NotificationDAO.getRecipientTypeCodes ();
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/DisplayNotificationsAction.java:75: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.DisplayNotificationsAction
ReceiptFolders[] folders = NotificationDAO.getReceiptFolders (str);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/DisplayNotificationsAction.java:91: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.DisplayNotificationsAction
Receipt[] r = NotificationDAO.getReceipts (str);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/DisplayNotificationsAction.java:95: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.DisplayNotificationsAction
nh[i] = (NotificationHeader) NotificationDAO
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/EditCodeAction.java:232: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.EditCodeAction
NotificationTypeCode code = NotificationDAO.getNotificationTypeCode(codeId);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/EditCodeAction.java:247: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.EditCodeAction
PriorityCode code = NotificationDAO.getPriorityCode(codeId);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/EditCodeAction.java:292: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.EditCodeAction
RecipientTypeCode code = NotificationDAO.getRecipientTypeCode(codeId);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/Login.java:109: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.Login
FirstVw[] rec = (FirstVw[]) NotificationDAO.getFirstVWs ();
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/Login.java:110: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.Login
DistrictCode[] districtCodes = (DistrictCode[]) NotificationDAO.getDistrictCode ();
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/PortalAction.java:81: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.PortalAction
Receipt[] inBox = NotificationDAO.getReceipts (str);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/PortalAction.java:83: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.PortalAction
NotificationHeader inboxItem = (NotificationHeader) NotificationDAO
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/SaveCodeAction.java:201: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.SaveCodeAction
String str = NotificationDAO.updateNotificationTypeCode(ntc);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/SaveCodeAction.java:203: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.SaveCodeAction
NotificationTypeCode ntcR = NotificationDAO.insertNotificationTypeCode(ntc);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/SaveCodeAction.java:229: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.SaveCodeAction
String str = NotificationDAO.updatePriorityCode(pc);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/SaveCodeAction.java:231: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.SaveCodeAction
PriorityCode fctcR = NotificationDAO.insertPriorityCode(pc);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/SaveCodeAction.java:314: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.SaveCodeAction
String str = NotificationDAO.updateRecipientTypeCode(rtc);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/SaveCodeAction.java:316: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.SaveCodeAction
RecipientTypeCode rtcR = NotificationDAO.insertRecipientTypeCode(rtc);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/SaveNotificationAction.java:126: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.SaveNotificationAction
n = NotificationDAO.insertNotification (n);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/SaveNotificationAction.java:140: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.SaveNotificationAction
Receipt ret1Sender = NotificationDAO.insertReceipt (r);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/SaveNotificationAction.java:179: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.SaveNotificationAction
n = NotificationDAO.insertNotification (n);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/SaveNotificationAction.java:193: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.SaveNotificationAction
Receipt ret1Sender = NotificationDAO.insertReceipt (r);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/SaveNotificationAction.java:237: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.SaveNotificationAction
Receipt ret1 = NotificationDAO.insertReceipt (newRec);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/SaveNotificationAction.java:262: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.SaveNotificationAction
DistrictUsers[] dUsers = (DistrictUsers[]) NotificationDAO.getDistrictUsers
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/SaveNotificationAction.java:277: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.SaveNotificationAction
Receipt ret1 = NotificationDAO.insertReceipt (newRec);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/ViewNotificationAction.java:97: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.ViewNotificationAction
Notification not = (Notification) NotificationDAO.getNotification (notificationId, false);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/ViewNotificationAction.java:98: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.ViewNotificationAction
FirstVw firstVw = (FirstVw) NotificationDAO
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/ViewNotificationAction.java:110: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.ViewNotificationAction
Receipt[] r = NotificationDAO.getReceipts("NOTIF_NOTIFICATION_ID = " + notificationId
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/ViewNotificationAction.java:117: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.ViewNotificationAction
String updateStr = NotificationDAO.updateReceipt(r[i]);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/ViewNotificationAction.java:137: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.ViewNotificationAction
Notification not = (Notification) NotificationDAO.getNotification (notificationId, false);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/ViewNotificationAction.java:138: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.ViewNotificationAction
FirstVw firstVw = (FirstVw) NotificationDAO
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/ViewNotificationAction.java:147: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.ViewNotificationAction
Receipt[] r = NotificationDAO.getReceipts("NOTIF_NOTIFICATION_ID = " + notificationId
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/ViewNotificationAction.java:154: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.ViewNotificationAction
String updateStr = NotificationDAO.updateReceipt(r[i]);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/ViewNotificationAction.java:173: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.ViewNotificationAction
Receipt[] r = NotificationDAO.getReceipts ("NOTIF_NOTIFICATION_ID = "
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/ViewNotificationAction.java:177: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.ViewNotificationAction
FirstVw fVw = (FirstVw) NotificationDAO.getFirstVW ("oracle_user_name = '"
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/ViewNotificationAction.java:195: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.ViewNotificationAction
Receipt[] r = NotificationDAO.getReceipts ("NOTIF_NOTIFICATION_ID = "
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/ViewNotificationAction.java:204: cannot resolve symbol
symbol : variable NotificationDAO
location: class us.fl.state.dep.waste.bpss.first.controllers.ViewNotificationAction
String ret = NotificationDAO.updateReceipt (r[0]);
^
/3psw/home/maven-1.0.2/projects/waste-first/src/us/fl/state/dep/waste/bpss/first/controllers/WFDef.java:70: getProcessDefinition(java.lang.Integer) in us.fl.state.dep.waste.bpss.first.service.WorkFlowDefService cannot be applied to (java.lang.Integer,int)
ProcessDefinition pd = WorkFlowDefService.getProcessDefinition(id, 0);
^
52 errors
BUILD FAILED
File...... /3psw/home/maven-1.0.2/.maven/cache/maven-java-plugin-1.5/plugin.jelly
Element... ant:javac
Line...... 63
Column.... 48
Compile failed; see the compiler error output for details.
Total time: 6 seconds
Finished at: Fri Aug 26 21:26:02 EDT 2005