FindBugs Bug Detector Report

The following document contains the results of FindBugs

FindBugs Version is 3.0.1

Threshold is medium

Effort is min

Summary

Classes Bugs Errors Missing Classes
987 246 0 0

Files

Class Bugs
edu.columbia.rascal.business.jobs.email.IacucExpirationReminder 1
edu.columbia.rascal.business.pdfGenerator.PdfConstructionHelper 5
edu.columbia.rascal.business.pdfGenerator.irb.IrbClosureDataSheetPDFService 1
edu.columbia.rascal.business.pdfGenerator.irb.IrbProtocolHeaderDatasheetPDFService 4
edu.columbia.rascal.business.pdfGenerator.irb.IrbProtocolHeaderDatasheetPDFService$1 1
edu.columbia.rascal.business.service.AppendixHService 1
edu.columbia.rascal.business.service.CoiBusinessInterestService 1
edu.columbia.rascal.business.service.CoiSnapshotGeneratorService 1
edu.columbia.rascal.business.service.CoiUserAnswerService$2 1
edu.columbia.rascal.business.service.IacucAdverseEventDataSheetPDFService 1
edu.columbia.rascal.business.service.IacucAdverseEventService 1
edu.columbia.rascal.business.service.IacucAnimalNumberService$1 1
edu.columbia.rascal.business.service.IacucDrugService$1 1
edu.columbia.rascal.business.service.IacucLocationService$1 1
edu.columbia.rascal.business.service.IacucLocationService$2 1
edu.columbia.rascal.business.service.IacucProtocolDataSheetPDFService 1
edu.columbia.rascal.business.service.IacucProtocolHeaderService 2
edu.columbia.rascal.business.service.IrbApprovalService 2
edu.columbia.rascal.business.service.IrbClosureService 1
edu.columbia.rascal.business.service.IrbCommitteeMemberService 1
edu.columbia.rascal.business.service.IrbPdfStampHandlerService$TextStamp 1
edu.columbia.rascal.business.service.IrbProtocolHeaderService 3
edu.columbia.rascal.business.service.IrbProtocolService 2
edu.columbia.rascal.business.service.IrbStaffService 1
edu.columbia.rascal.business.service.PtComplianceService 2
edu.columbia.rascal.business.service.PtProposalHeaderService 3
edu.columbia.rascal.business.service.PtSnapshotService 6
edu.columbia.rascal.business.service.ServiceLocator 181
edu.columbia.rascal.business.service.TccourseHeaderService 1
edu.columbia.rascal.business.service.review.iacuc.IacucAdminForm 6
edu.columbia.rascal.business.service.review.iacuc.IacucCorrespondence 1
edu.columbia.rascal.business.service.review.iacuc.IacucListener 1
edu.columbia.rascal.business.service.review.iacuc.IacucTaskForm 6
edu.columbia.rascal.business.velos.CancerCenterXMLService 2
edu.columbia.rascal.business.velos.CancerCenterXMLService$CancerCenterSchemaOutputResolver 1

edu.columbia.rascal.business.jobs.email.IacucExpirationReminder

Bug Category Details Line Priority
Found reliance on default encoding in edu.columbia.rascal.business.jobs.email.IacucExpirationReminder.writeToLogFile(String): new java.io.FileWriter(String, boolean) I18N DM_DEFAULT_ENCODING 251 High

edu.columbia.rascal.business.pdfGenerator.PdfConstructionHelper

Bug Category Details Line Priority
Redundant nullcheck of cellValue, which is known to be non-null in edu.columbia.rascal.business.pdfGenerator.PdfConstructionHelper.setPdfTableCell(PdfPTable, int, Font, int, String) STYLE RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE 435 High
Redundant nullcheck of cellValue, which is known to be non-null in edu.columbia.rascal.business.pdfGenerator.PdfConstructionHelper.setPdfTableCell(PdfPTable, int, Font, String) STYLE RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE 452 High
Redundant nullcheck of cellValue, which is known to be non-null in edu.columbia.rascal.business.pdfGenerator.PdfConstructionHelper.setPdfTableCell(PdfPTable, Font, String) STYLE RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE 418 High
Redundant nullcheck of listSymbol, which is known to be non-null in edu.columbia.rascal.business.pdfGenerator.PdfConstructionHelper.createPdfList(boolean, float, String) STYLE RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE 129 Medium
Repeated conditional test in edu.columbia.rascal.business.pdfGenerator.PdfConstructionHelper.createPdfList(boolean, float, String) CORRECTNESS RpC_REPEATED_CONDITIONAL_TEST 129 High

edu.columbia.rascal.business.pdfGenerator.irb.IrbClosureDataSheetPDFService

Bug Category Details Line Priority
Redundant nullcheck of subjects, which is known to be non-null in edu.columbia.rascal.business.pdfGenerator.irb.IrbClosureDataSheetPDFService.addSubjects(IrbClosure, Document) STYLE RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE 392 Medium

edu.columbia.rascal.business.pdfGenerator.irb.IrbProtocolHeaderDatasheetPDFService

Bug Category Details Line Priority
edu.columbia.rascal.business.pdfGenerator.irb.IrbProtocolHeaderDatasheetPDFService.addFutureUse(IrbProtocolHeader, Document) invokes inefficient new Integer(int) constructor; use Integer.valueOf(int) instead PERFORMANCE DM_NUMBER_CTOR 874 Medium
Redundant nullcheck of subjects, which is known to be non-null in edu.columbia.rascal.business.pdfGenerator.irb.IrbProtocolHeaderDatasheetPDFService.addSubjects(IrbProtocolHeader, Document) STYLE RCN_REDUNDANT_NULLCHECK_OF_NONNULL_VALUE 1992 Medium
Nullcheck of devices at line 1464 of value previously dereferenced in edu.columbia.rascal.business.pdfGenerator.irb.IrbProtocolHeaderDatasheetPDFService.addDevices(IrbProtocolHeader, Document) CORRECTNESS RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE 1464 Medium
Nullcheck of drugs at line 1241 of value previously dereferenced in edu.columbia.rascal.business.pdfGenerator.irb.IrbProtocolHeaderDatasheetPDFService.addDrugs(IrbProtocolHeader, Document) CORRECTNESS RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE 1241 Medium

edu.columbia.rascal.business.pdfGenerator.irb.IrbProtocolHeaderDatasheetPDFService$1

Bug Category Details Line Priority
Boxed value is unboxed and then immediately reboxed in edu.columbia.rascal.business.pdfGenerator.irb.IrbProtocolHeaderDatasheetPDFService$1.compare(IrbStaff, IrbStaff) PERFORMANCE BX_UNBOXING_IMMEDIATELY_REBOXED 2596 Medium

edu.columbia.rascal.business.service.AppendixHService

Bug Category Details Line Priority
Call to Integer.equals(Long) in edu.columbia.rascal.business.service.AppendixHService.givePersonnelPermissions(AppendixH) CORRECTNESS EC_UNRELATED_TYPES 705 High

edu.columbia.rascal.business.service.CoiBusinessInterestService

Bug Category Details Line Priority
Return value of java.util.List.size() ignored, but method has no side effect STYLE RV_RETURN_VALUE_IGNORED_NO_SIDE_EFFECT 278 Medium

edu.columbia.rascal.business.service.CoiSnapshotGeneratorService

Bug Category Details Line Priority
Return value of java.util.Map.containsKey(Object) ignored, but method has no side effect STYLE RV_RETURN_VALUE_IGNORED_NO_SIDE_EFFECT 343 Medium

edu.columbia.rascal.business.service.CoiUserAnswerService$2

Bug Category Details Line Priority
Possible null pointer dereference of i1 on branch that might be infeasible in edu.columbia.rascal.business.service.CoiUserAnswerService$2.compare(CoiUserAnswer, CoiUserAnswer) STYLE NP_NULL_ON_SOME_PATH_MIGHT_BE_INFEASIBLE 597 Medium

edu.columbia.rascal.business.service.IacucAdverseEventDataSheetPDFService

Bug Category Details Line Priority
Useless object stored in variable sb of method edu.columbia.rascal.business.service.IacucAdverseEventDataSheetPDFService.addSignatures(Document, IacucAdverseEvent, IacucProtocolHeader) STYLE UC_USELESS_OBJECT 249 Medium

edu.columbia.rascal.business.service.IacucAdverseEventService

Bug Category Details Line Priority
edu.columbia.rascal.business.service.IacucAdverseEventService.getAdverseEventDataFromProcess() makes inefficient use of keySet iterator instead of entrySet iterator PERFORMANCE WMI_WRONG_MAP_ITERATOR 404 Medium

edu.columbia.rascal.business.service.IacucAnimalNumberService$1

Bug Category Details Line Priority
Boxed value is unboxed and then immediately reboxed in edu.columbia.rascal.business.service.IacucAnimalNumberService$1.compare(IacucAnimalNumber, IacucAnimalNumber) PERFORMANCE BX_UNBOXING_IMMEDIATELY_REBOXED 67 Medium

edu.columbia.rascal.business.service.IacucDrugService$1

Bug Category Details Line Priority
Boxed value is unboxed and then immediately reboxed in edu.columbia.rascal.business.service.IacucDrugService$1.compare(IacucDrugs, IacucDrugs) PERFORMANCE BX_UNBOXING_IMMEDIATELY_REBOXED 195 Medium

edu.columbia.rascal.business.service.IacucLocationService$1

Bug Category Details Line Priority
Boxed value is unboxed and then immediately reboxed in edu.columbia.rascal.business.service.IacucLocationService$1.compare(IacucLocation, IacucLocation) PERFORMANCE BX_UNBOXING_IMMEDIATELY_REBOXED 161 Medium

edu.columbia.rascal.business.service.IacucLocationService$2

Bug Category Details Line Priority
Boxed value is unboxed and then immediately reboxed in edu.columbia.rascal.business.service.IacucLocationService$2.compare(IacucLocation, IacucLocation) PERFORMANCE BX_UNBOXING_IMMEDIATELY_REBOXED 209 Medium

edu.columbia.rascal.business.service.IacucProtocolDataSheetPDFService

Bug Category Details Line Priority
Switch statement found in edu.columbia.rascal.business.service.IacucProtocolDataSheetPDFService.appendixRequired(IacucProtocolHeader, String) where default case is missing STYLE SF_SWITCH_NO_DEFAULT 4251 Medium

edu.columbia.rascal.business.service.IacucProtocolHeaderService

Bug Category Details Line Priority
edu.columbia.rascal.business.service.IacucProtocolHeaderService.getRecordHeadingForModCon(IacucProtocolHeader, RascalUser) invokes inefficient new Long(String) constructor; use Long.valueOf(String) instead PERFORMANCE DM_NUMBER_CTOR 1150 Medium
Switch statement found in edu.columbia.rascal.business.service.IacucProtocolHeaderService.regulateHazardFlag(String, boolean, IacucProtocolHeader) where default case is missing STYLE SF_SWITCH_NO_DEFAULT 614 Medium

edu.columbia.rascal.business.service.IrbApprovalService

Bug Category Details Line Priority
edu.columbia.rascal.business.service.IrbApprovalService.addPermissions(IrbApproval) invokes inefficient new Integer(int) constructor; use Integer.valueOf(int) instead PERFORMANCE DM_NUMBER_CTOR 600 Medium
edu.columbia.rascal.business.service.IrbApprovalService.delete_aroundBody0(IrbApprovalService, IrbApproval) invokes inefficient new Integer(int) constructor; use Integer.valueOf(int) instead PERFORMANCE DM_NUMBER_CTOR 74 Medium

edu.columbia.rascal.business.service.IrbClosureService

Bug Category Details Line Priority
Nullcheck of oldOnes at line 432 of value previously dereferenced in edu.columbia.rascal.business.service.IrbClosureService.setReasons(Vector, IrbClosure) CORRECTNESS RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE 432 Medium

edu.columbia.rascal.business.service.IrbCommitteeMemberService

Bug Category Details Line Priority
Suspicious comparison of Long references in edu.columbia.rascal.business.service.IrbCommitteeMemberService.isActiveCommitteeMemberThisCommittee(Integer, Long) CORRECTNESS RC_REF_COMPARISON 81 High

edu.columbia.rascal.business.service.IrbPdfStampHandlerService$TextStamp

Bug Category Details Line Priority
Unread field: edu.columbia.rascal.business.service.IrbPdfStampHandlerService$TextStamp.textRotation; should this field be static? PERFORMANCE SS_SHOULD_BE_STATIC 130 Medium

edu.columbia.rascal.business.service.IrbProtocolHeaderService

Bug Category Details Line Priority
Primitive boxed just to call toString in edu.columbia.rascal.business.service.IrbProtocolHeaderService.generateNewConsentNumber(long) PERFORMANCE DM_BOXED_PRIMITIVE_TOSTRING 2343 High
edu.columbia.rascal.business.service.IrbProtocolHeaderService.copyApprover(IrbApproval, IrbProtocolHeader) invokes inefficient new Integer(int) constructor; use Integer.valueOf(int) instead PERFORMANCE DM_NUMBER_CTOR 1827 Medium
Return value of java.util.Vector.size() ignored, but method has no side effect STYLE RV_RETURN_VALUE_IGNORED_NO_SIDE_EFFECT 661 Medium

edu.columbia.rascal.business.service.IrbProtocolService

Bug Category Details Line Priority
Boxed value is unboxed and then immediately reboxed in edu.columbia.rascal.business.service.IrbProtocolService.getAttachedHipaaForm(IrbProtocol) PERFORMANCE BX_UNBOXING_IMMEDIATELY_REBOXED 1039 Medium
Suspicious comparison of Long references in edu.columbia.rascal.business.service.IrbProtocolService.getAttachedHipaaForm(IrbProtocol) CORRECTNESS RC_REF_COMPARISON 1043 High

edu.columbia.rascal.business.service.IrbStaffService

Bug Category Details Line Priority
edu.columbia.rascal.business.service.IrbStaffService.setAllSequencesToZero(IrbStaff) invokes inefficient new Integer(int) constructor; use Integer.valueOf(int) instead PERFORMANCE DM_NUMBER_CTOR 307 Medium

edu.columbia.rascal.business.service.PtComplianceService

Bug Category Details Line Priority
Dead store to protocolNumYearMod in edu.columbia.rascal.business.service.PtComplianceService.getIRBProtocolListForProposalTracking(Long) STYLE DLS_DEAD_LOCAL_STORE 183 Medium
Useless object stored in variable statusDateRange of method edu.columbia.rascal.business.service.PtComplianceService.buildQueryForPIProtocolList(long) STYLE UC_USELESS_OBJECT 380 Medium

edu.columbia.rascal.business.service.PtProposalHeaderService

Bug Category Details Line Priority
Dead store to row in edu.columbia.rascal.business.service.PtProposalHeaderService.getAttachedHazmats(PtProposalHeader) STYLE DLS_DEAD_LOCAL_STORE 426 Medium
Return value of java.util.Set.size() ignored, but method has no side effect STYLE RV_RETURN_VALUE_IGNORED_NO_SIDE_EFFECT 1511 Medium
Switch statement found in edu.columbia.rascal.business.service.PtProposalHeaderService.regulateHazardFlag(String, boolean, PtProposalHeader) where default case is missing STYLE SF_SWITCH_NO_DEFAULT 651 Medium

edu.columbia.rascal.business.service.PtSnapshotService

Bug Category Details Line Priority
Boxed value is unboxed and then immediately reboxed in edu.columbia.rascal.business.service.PtSnapshotService.addSignatureLine(PdfPTable, PtApproval) PERFORMANCE BX_UNBOXING_IMMEDIATELY_REBOXED 1314 Medium
Possible null pointer dereference of proposal in edu.columbia.rascal.business.service.PtSnapshotService.addHeader(Document, PtProposalHeader, String, String) CORRECTNESS NP_NULL_ON_SOME_PATH 676 Medium
Possible null pointer dereference of ru in edu.columbia.rascal.business.service.PtSnapshotService.addPersonel(Document, PtProposalHeader) CORRECTNESS NP_NULL_ON_SOME_PATH 935 Medium
Possible null pointer dereference of ru in edu.columbia.rascal.business.service.PtSnapshotService.addPersonel(Document, PtProposalHeader) CORRECTNESS NP_NULL_ON_SOME_PATH 935 Medium
Nullcheck of ru at line 945 of value previously dereferenced in edu.columbia.rascal.business.service.PtSnapshotService.addPersonel(Document, PtProposalHeader) CORRECTNESS RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE 935 High
Nullcheck of proposal at line 681 of value previously dereferenced in edu.columbia.rascal.business.service.PtSnapshotService.addHeader(Document, PtProposalHeader, String, String) CORRECTNESS RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE 676 Medium

edu.columbia.rascal.business.service.ServiceLocator

Bug Category Details Line Priority
Write to static field edu.columbia.rascal.business.service.ServiceLocator.appendixAService from instance method edu.columbia.rascal.business.service.ServiceLocator.setAppendixAService(AppendixAService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 1830 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.appendixAccessControlService from instance method edu.columbia.rascal.business.service.ServiceLocator.setAppendixAccessControlService(AppendixAccessControlService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 1807 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.appendixApprovalService from instance method edu.columbia.rascal.business.service.ServiceLocator.setAppendixApprovalService(AppendixApprovalService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 1819 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.appendixBPPEService from instance method edu.columbia.rascal.business.service.ServiceLocator.setAppendixBPPEService(AppendixBPPEService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 1841 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.appendixBService from instance method edu.columbia.rascal.business.service.ServiceLocator.setAppendixBService(AppendixBService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 1852 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.appendixCPPEService from instance method edu.columbia.rascal.business.service.ServiceLocator.setAppendixCPPEService(AppendixCPPEService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 1875 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.appendixCService from instance method edu.columbia.rascal.business.service.ServiceLocator.setAppendixCService(AppendixCService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 1886 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.appendixChemicalService from instance method edu.columbia.rascal.business.service.ServiceLocator.setAppendixChemicalService(AppendixChemicalService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 1864 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.appendixDService from instance method edu.columbia.rascal.business.service.ServiceLocator.setAppendixDService(AppendixDService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 1897 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.appendixEService from instance method edu.columbia.rascal.business.service.ServiceLocator.setAppendixEService(AppendixEService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 1908 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.appendixFService from instance method edu.columbia.rascal.business.service.ServiceLocator.setAppendixFService(AppendixFService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 1919 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.appendixGService from instance method edu.columbia.rascal.business.service.ServiceLocator.setAppendixGService(AppendixGService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 1930 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.appendixHService from instance method edu.columbia.rascal.business.service.ServiceLocator.setAppendixHService(AppendixHService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 1941 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.appendixIControlSubsService from instance method edu.columbia.rascal.business.service.ServiceLocator.setAppendixIControlSubsService(AppendixIControlSubsService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 1951 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.appendixIService from instance method edu.columbia.rascal.business.service.ServiceLocator.setAppendixIService(AppendixIService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 1946 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.appendixIsotopeService from instance method edu.columbia.rascal.business.service.ServiceLocator.setAppendixIsotopeService(AppendixIsotopeService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 1964 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.appendixLocationService from instance method edu.columbia.rascal.business.service.ServiceLocator.setAppendixLocationService(AppendixLocationService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 1976 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.appendixService from instance method edu.columbia.rascal.business.service.ServiceLocator.setAppendixService(AppendixService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 1987 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.appendixTrackingService from instance method edu.columbia.rascal.business.service.ServiceLocator.setAppendixTrackingService(AppendixTrackingService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 1999 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.atunesService from instance method edu.columbia.rascal.business.service.ServiceLocator.setAtunesService(AtunesService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 4055 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.cURascalJdbcAccessorService from instance method edu.columbia.rascal.business.service.ServiceLocator.setCURascalJdbcAccessorService(CURascalJdbcAccessorService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2241 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.coiConflictHeaderService from instance method edu.columbia.rascal.business.service.ServiceLocator.setCoiConflictHeaderService(CoiConflictHeaderService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 281 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.coiDisclosureService from instance method edu.columbia.rascal.business.service.ServiceLocator.setCoiDisclosureService(CoiDisclosureService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2044 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.coiProcessService from instance method edu.columbia.rascal.business.service.ServiceLocator.setCoiProcessService(CoiProcessService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2077 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.coiQuestionLookupService from instance method edu.columbia.rascal.business.service.ServiceLocator.setCoiQuestionLookupService(CoiQuestionLookupService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 271 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.consentAccessControlService from instance method edu.columbia.rascal.business.service.ServiceLocator.setConsentAccessControlService(ConsentAccessControlService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2121 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.consentAttachmentHistoryService from instance method edu.columbia.rascal.business.service.ServiceLocator.setConsentAttachmentHistoryService(ConsentAttachmentHistoryService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2133 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.consentContactService from instance method edu.columbia.rascal.business.service.ServiceLocator.setConsentContactService(ConsentContactService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2145 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.consentDataSheetService from instance method edu.columbia.rascal.business.service.ServiceLocator.setConsentDataSheetService(ConsentDataSheetService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2157 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.consentDynamicParagraphService from instance method edu.columbia.rascal.business.service.ServiceLocator.setConsentDynamicParagraphService(ConsentDynamicParagraphService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2169 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.consentFormElementService from instance method edu.columbia.rascal.business.service.ServiceLocator.setConsentFormElementService(ConsentFormElementService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2181 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.consentHeaderService from instance method edu.columbia.rascal.business.service.ServiceLocator.setConsentHeaderService(ConsentHeaderService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2193 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.consentSignatureLineService from instance method edu.columbia.rascal.business.service.ServiceLocator.setConsentSignatureLineService(ConsentSignatureLineService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2205 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.consentStaticParagraphService from instance method edu.columbia.rascal.business.service.ServiceLocator.setConsentStaticParagraphService(ConsentStaticParagraphService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2217 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.consentSuggestedParagraphService from instance method edu.columbia.rascal.business.service.ServiceLocator.setConsentSuggestedParagraphService(ConsentSuggestedParagraphService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2229 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.hipaaAccessControlService from instance method edu.columbia.rascal.business.service.ServiceLocator.setHipaaAccessControlService(HipaaAccessControlService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2253 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.hipaaAnswerService from instance method edu.columbia.rascal.business.service.ServiceLocator.setHipaaAnswerService(HipaaAnswerService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2264 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.hipaaFormService from instance method edu.columbia.rascal.business.service.ServiceLocator.setHipaaFormService(HipaaFormService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2275 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.hipaaHeaderFormQuestionService from instance method edu.columbia.rascal.business.service.ServiceLocator.setHipaaHeaderFormQuestionService(HipaaHeaderFormQuestionService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2287 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.hipaaHeaderFormService from instance method edu.columbia.rascal.business.service.ServiceLocator.setHipaaHeaderFormService(HipaaHeaderFormService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2299 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.hipaaHeaderService from instance method edu.columbia.rascal.business.service.ServiceLocator.setHipaaHeaderService(HipaaHeaderService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2310 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.hipaaIrbResolutionService from instance method edu.columbia.rascal.business.service.ServiceLocator.setHipaaIrbResolutionService(HipaaIrbResolutionService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2322 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.hipaaNotesService from instance method edu.columbia.rascal.business.service.ServiceLocator.setHipaaNotesService(HipaaNotesService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2333 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.hipaaQuestionLookupService from instance method edu.columbia.rascal.business.service.ServiceLocator.setHipaaQuestionLookupService(HipaaQuestionLookupService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2345 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.hipaaReviewerService from instance method edu.columbia.rascal.business.service.ServiceLocator.setHipaaReviewerService(HipaaReviewerService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2357 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.hipaaStatusService from instance method edu.columbia.rascal.business.service.ServiceLocator.setHipaaStatusService(HipaaStatusService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2368 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.hzAppendixHeaderService from instance method edu.columbia.rascal.business.service.ServiceLocator.setHzAppendixHeaderService(HzAppendixHeaderService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2380 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.hzAttestationService from instance method edu.columbia.rascal.business.service.ServiceLocator.setHzAttestationService(HzAttestationService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2392 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.hzCorrespondenceService from instance method edu.columbia.rascal.business.service.ServiceLocator.setHzCorrespondenceService(HzCorrespondenceService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2404 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.hzStaffService from instance method edu.columbia.rascal.business.service.ServiceLocator.setHzStaffService(HzStaffService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2425 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.hzStatusService from instance method edu.columbia.rascal.business.service.ServiceLocator.setHzStatusService(HzStatusService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2436 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.iacucAdverseEventService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIacucAdverseEventService(IacucAdverseEventService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2450 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.iacucAttachmentService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIacucAttachmentService(IacucAttachmentService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2463 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.iacucProtocolHeaderService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIacucProtocolHeaderService(IacucProtocolHeaderService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2518 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.iacucQuestionService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIacucQuestionService(IacucQuestionService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2531 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.iacucStaffService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIacucStaffService(IacucStaffService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2553 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbAdverseEventAttachmentService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbAdverseEventAttachmentService(IrbAdverseEventAttachmentService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2565 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbAdverseEventProductService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbAdverseEventProductService(IrbAdverseEventProductService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2577 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbAdverseEventReportedToService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbAdverseEventReportedToService(IrbAdverseEventReportedToService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2589 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbAdverseEventResultService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbAdverseEventResultService(IrbAdverseEventResultService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2601 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbAdverseEventService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbAdverseEventService(IrbAdverseEventService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2613 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbAffiliatedInstitutionService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbAffiliatedInstitutionService(IrbAffiliatedInstitutionService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2625 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbAgendaAddendumService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbAgendaAddendumService(IrbAgendaAddendumService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2637 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbAgendaDataSheetService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbAgendaDataSheetService(IrbAgendaDataSheetService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2649 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbAgendaEventReviewerService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbAgendaEventReviewerService(IrbAgendaEventReviewerService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2661 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbAgendaEventService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbAgendaEventService(IrbAgendaEventService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2673 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbAgendaHeaderService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbAgendaHeaderService(IrbAgendaHeaderService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2685 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbAgendaProtocolParticipantService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbAgendaProtocolParticipantService(IrbAgendaProtocolParticipantService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2697 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbAgendaStatusService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbAgendaStatusService(IrbAgendaStatusService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2709 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbApprovalLetterHistoryService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbApprovalLetterHistoryService(IrbApprovalLetterHistoryService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3991 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbApprovalLetterService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbApprovalLetterService(IrbApprovalLetterService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2721 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbApprovalService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbApprovalService(IrbApprovalService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2732 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbAttachmentHistoryService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbAttachmentHistoryService(IrbAttachmentHistoryService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2744 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbAttachmentService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbAttachmentService(IrbAttachmentService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2756 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbChildInvolvementAnswerService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbChildInvolvementAnswerService(IrbChildInvolvementAnswerService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2768 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbClosureAttachmentService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbClosureAttachmentService(IrbClosureAttachmentService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3206 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbClosureReasonService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbClosureReasonService(IrbClosureReasonService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3229 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbClosureService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbClosureService(IrbClosureService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3217 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbCommitteeMemberService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbCommitteeMemberService(IrbCommitteeMemberService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2780 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbCommitteeService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbCommitteeService(IrbCommitteeService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2791 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbConcurrentStudyService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbConcurrentStudyService(IrbConcurrentStudyService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2803 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbCorrespondenceRecipientService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbCorrespondenceRecipientService(IrbCorrespondenceRecipientService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2815 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbCorrespondenceService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbCorrespondenceService(IrbCorrespondenceService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2827 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbDataSecurityService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbDataSecurityService(IrbDataSecurityService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 261 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbDataSheetService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbDataSheetService(IrbDataSheetService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2838 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbDeviceService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbDeviceService(IrbDeviceService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2971 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbEventCommitteeService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbEventCommitteeService(IrbEventCommitteeService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2850 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbExemptionSelectionService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbExemptionSelectionService(IrbExemptionSelectionService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2862 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbExemptionTypeService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbExemptionTypeService(IrbExemptionTypeService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2874 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbExpeditableAnswerService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbExpeditableAnswerService(IrbExpeditableAnswerService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2890 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbExpeditableQuestionService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbExpeditableQuestionService(IrbExpeditableQuestionService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2902 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbFacilityService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbFacilityService(IrbFacilityService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2913 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbFundingService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbFundingService(IrbFundingService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2924 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbHumanSpecimenService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbHumanSpecimenService(IrbHumanSpecimenService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2936 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbInvalidationReasonService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbInvalidationReasonService(IrbInvalidationReasonService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2948 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbInvestigationalProductService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbInvestigationalProductService(IrbInvestigationalProductService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2960 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbLocationService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbLocationService(IrbLocationService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2983 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbMeetingAttendantService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbMeetingAttendantService(IrbMeetingAttendantService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 2995 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbMeetingAttributesService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbMeetingAttributesService(IrbMeetingAttributesService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3007 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbModificationService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbModificationService(IrbModificationService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3019 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbNotesService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbNotesService(IrbNotesService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3030 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbOfficialIrbOfRecordService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbOfficialIrbOfRecordService(IrbOfficialIrbOfRecordService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3043 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbPrimaryResearchQuestionService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbPrimaryResearchQuestionService(IrbPrimaryResearchQuestionService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3055 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbProtocolHeaderService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbProtocolHeaderService(IrbProtocolHeaderService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3067 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbProtocolRisksBenefitsService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbProtocolRisksBenefitsService(IrbProtocolRisksBenefitsService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 4042 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbProtocolService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbProtocolService(IrbProtocolService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3078 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbProtocolSnapshotService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbProtocolSnapshotService(IrbProtocolSnapshotService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 229 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbRecruitmentMediaService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbRecruitmentMediaService(IrbRecruitmentMediaService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3090 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbRenewalAdverseEventService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbRenewalAdverseEventService(IrbRenewalAdverseEventService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3102 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbRenewalService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbRenewalService(IrbRenewalService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3113 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbResearchProcedureService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbResearchProcedureService(IrbResearchProcedureService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3125 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbReviewerService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbReviewerService(IrbReviewerService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3136 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbSpecialSubjectPopulationService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbSpecialSubjectPopulationService(IrbSpecialSubjectPopulationService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3148 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbStaffProcedureHistoryService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbStaffProcedureHistoryService(IrbStaffProcedureHistoryService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3160 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbStaffService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbStaffService(IrbStaffService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3171 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbStatusService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbStatusService(IrbStatusService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3182 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbSubjectPopulationService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbSubjectPopulationService(IrbSubjectPopulationService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3194 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbUnanticipatedAttachmentService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbUnanticipatedAttachmentService(IrbUnanticipatedAttachmentService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3241 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbUnanticipatedProblemService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbUnanticipatedProblemService(IrbUnanticipatedProblemService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3253 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.irbUnanticipatedReportedToService from instance method edu.columbia.rascal.business.service.ServiceLocator.setIrbUnanticipatedReportedToService(IrbUnanticipatedReportedToService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3265 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.ptAccessControlService from instance method edu.columbia.rascal.business.service.ServiceLocator.setPtAccessControlService(PtAccessControlService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3277 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.ptAgencyAddressService from instance method edu.columbia.rascal.business.service.ServiceLocator.setPtAgencyAddressService(PtAgencyAddressService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3289 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.ptApprovalService from instance method edu.columbia.rascal.business.service.ServiceLocator.setPtApprovalService(PtApprovalService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3300 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.ptAttachDocumentsService from instance method edu.columbia.rascal.business.service.ServiceLocator.setPtAttachDocumentsService(PtAttachDocumentsService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3312 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.ptBudgetService from instance method edu.columbia.rascal.business.service.ServiceLocator.setPtBudgetService(PtBudgetService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3323 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.ptComplianceService from instance method edu.columbia.rascal.business.service.ServiceLocator.setPtComplianceService(PtComplianceService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3334 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.ptCorrespondenceRecipientService from instance method edu.columbia.rascal.business.service.ServiceLocator.setPtCorrespondenceRecipientService(PtCorrespondenceRecipientService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3346 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.ptCorrespondenceService from instance method edu.columbia.rascal.business.service.ServiceLocator.setPtCorrespondenceService(PtCorrespondenceService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3358 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.ptIncomeSourceService from instance method edu.columbia.rascal.business.service.ServiceLocator.setPtIncomeSourceService(PtIncomeSourceService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3370 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.ptInstitutionUsageService from instance method edu.columbia.rascal.business.service.ServiceLocator.setPtInstitutionUsageService(PtInstitutionUsageService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3382 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.ptNotesService from instance method edu.columbia.rascal.business.service.ServiceLocator.setPtNotesService(PtNotesService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3393 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.ptProposalHeaderService from instance method edu.columbia.rascal.business.service.ServiceLocator.setPtProposalHeaderService(PtProposalHeaderService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3405 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.ptSpaceService from instance method edu.columbia.rascal.business.service.ServiceLocator.setPtSpaceService(PtSpaceService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3416 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.ptSubAwardInstitutionService from instance method edu.columbia.rascal.business.service.ServiceLocator.setPtSubAwardInstitutionService(PtSubAwardInstitutionService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3439 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.ptTrackingService from instance method edu.columbia.rascal.business.service.ServiceLocator.setPtTrackingService(PtTrackingService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3450 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalActivityTypeService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalActivityTypeService(RascalActivityTypeService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3472 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalAdministrativeLocationService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalAdministrativeLocationService(RascalAdministrativeLocationService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3484 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalAdverseEventService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalAdverseEventService(RascalAdverseEventService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3496 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalAffiliatedInstitutionService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalAffiliatedInstitutionService(RascalAffiliatedInstitutionService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3508 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalAgencyService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalAgencyService(RascalAgencyService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3519 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalAppendixPPEService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalAppendixPPEService(RascalAppendixPPEService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3531 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalApprovalTypeService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalApprovalTypeService(RascalApprovalTypeService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3543 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalChildInvolveQuestionService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalChildInvolveQuestionService(RascalChildInvolveQuestionService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3555 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalChildInvolveTypeService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalChildInvolveTypeService(RascalChildInvolveTypeService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3567 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalClosureReasonService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalClosureReasonService(RascalClosureReasonService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3784 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalConsentSignatureLineService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalConsentSignatureLineService(RascalConsentSignatureLineService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3579 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalCountryService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalCountryService(RascalCountryService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3591 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalDepartmentService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalDepartmentService(RascalDepartmentService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3603 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalDocumentTypesService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalDocumentTypesService(RascalDocumentTypesService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3615 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalFacilityService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalFacilityService(RascalFacilityService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3627 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalIndIdeHolderTypeService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalIndIdeHolderTypeService(RascalIndIdeHolderTypeService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3654 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalInvalidationReasonService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalInvalidationReasonService(RascalInvalidationReasonService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3666 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalLdapService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalLdapService(RascalLdapService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 4015 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalPermissionsManager from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalPermissionsManager(RascalPermissionsManager) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3678 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalRecruitmentMediaService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalRecruitmentMediaService(RascalRecruitmentMediaService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3689 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalRenewalStudyStatusService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalRenewalStudyStatusService(RascalRenewalStudyStatusService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3701 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalReportDistributionService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalReportDistributionService(RascalReportDistributionService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3713 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalReportedToLookupService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalReportedToLookupService(RascalReportedToLookupService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3725 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalResearchProcedureService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalResearchProcedureService(RascalResearchProcedureService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3737 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalResultService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalResultService(RascalResultService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3748 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalSpeciesService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalSpeciesService(RascalSpeciesService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3760 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalSubjectPopulationService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalSubjectPopulationService(RascalSubjectPopulationService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3772 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.rascalUserService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRascalUserService(RascalUserService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3795 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.ruAuthorizedDepartmentService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRuAuthorizedDepartmentService(RuAuthorizedDepartmentService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3807 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.ruIcmexpSurgeryTrainingService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRuIcmexpSurgeryTrainingService(RuIcmexpSurgeryTrainingService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3819 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.ruOccHealthProgEnrollmentService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRuOccHealthProgEnrollmentService(RuOccHealthProgEnrollmentService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3831 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.ruRadiationSafetyBadgeService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRuRadiationSafetyBadgeService(RuRadiationSafetyBadgeService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3843 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.ruSimpleTrainingEnrollmentService from instance method edu.columbia.rascal.business.service.ServiceLocator.setRuSimpleTrainingEnrollmentService(RuSimpleTrainingEnrollmentService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3855 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.tcaccessControlService from instance method edu.columbia.rascal.business.service.ServiceLocator.setTcaccessControlService(TcaccessControlService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3867 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.tcanswerService from instance method edu.columbia.rascal.business.service.ServiceLocator.setTcanswerService(TcanswerService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3878 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.tccourseComplianceLookupService from instance method edu.columbia.rascal.business.service.ServiceLocator.setTccourseComplianceLookupService(TccourseComplianceLookupService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3890 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.tccourseHeaderService from instance method edu.columbia.rascal.business.service.ServiceLocator.setTccourseHeaderService(TccourseHeaderService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3902 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.tcdivisionService from instance method edu.columbia.rascal.business.service.ServiceLocator.setTcdivisionService(TcdivisionService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3913 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.tcquestionService from instance method edu.columbia.rascal.business.service.ServiceLocator.setTcquestionService(TcquestionService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3924 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.tcreferenceService from instance method edu.columbia.rascal.business.service.ServiceLocator.setTcreferenceService(TcreferenceService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3935 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.tcrequiredCourseService from instance method edu.columbia.rascal.business.service.ServiceLocator.setTcrequiredCourseService(TcrequiredCourseService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3947 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.tcuserEhsService from instance method edu.columbia.rascal.business.service.ServiceLocator.setTcuserEhsService(TcuserEhsService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3958 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.tcuserHeaderService from instance method edu.columbia.rascal.business.service.ServiceLocator.setTcuserHeaderService(TcuserHeaderService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3969 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.tcuserRequiredCourseService from instance method edu.columbia.rascal.business.service.ServiceLocator.setTcuserRequiredCourseService(TcuserRequiredCourseService) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 3981 High
Write to static field edu.columbia.rascal.business.service.ServiceLocator.transactionManager from instance method edu.columbia.rascal.business.service.ServiceLocator.setTransactionManager(PlatformTransactionManager) STYLE ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD 4001 High
Unused field: edu.columbia.rascal.business.service.ServiceLocator.rascalDrugsLookupService PERFORMANCE UUF_UNUSED_FIELD Medium

edu.columbia.rascal.business.service.TccourseHeaderService

Bug Category Details Line Priority
Useless object stored in variable row of method edu.columbia.rascal.business.service.TccourseHeaderService.getAllByRid(int, boolean, int) STYLE UC_USELESS_OBJECT 130 Medium

edu.columbia.rascal.business.service.review.iacuc.IacucAdminForm

Bug Category Details Line Priority
edu.columbia.rascal.business.service.review.iacuc.IacucAdminForm.getApprovalDate() may expose internal representation by returning IacucAdminForm.approvalDate MALICIOUS_CODE EI_EXPOSE_REP 45 Medium
edu.columbia.rascal.business.service.review.iacuc.IacucAdminForm.getEndDate() may expose internal representation by returning IacucAdminForm.endDate MALICIOUS_CODE EI_EXPOSE_REP 66 Medium
edu.columbia.rascal.business.service.review.iacuc.IacucAdminForm.getSuspensionDate() may expose internal representation by returning IacucAdminForm.suspensionDate MALICIOUS_CODE EI_EXPOSE_REP 58 Medium
edu.columbia.rascal.business.service.review.iacuc.IacucAdminForm.setApprovalDate(Date) may expose internal representation by storing an externally mutable object into IacucAdminForm.approvalDate MALICIOUS_CODE EI_EXPOSE_REP2 54 Medium
edu.columbia.rascal.business.service.review.iacuc.IacucAdminForm.setEndDate(Date) may expose internal representation by storing an externally mutable object into IacucAdminForm.endDate MALICIOUS_CODE EI_EXPOSE_REP2 70 Medium
edu.columbia.rascal.business.service.review.iacuc.IacucAdminForm.setSuspensionDate(Date) may expose internal representation by storing an externally mutable object into IacucAdminForm.suspensionDate MALICIOUS_CODE EI_EXPOSE_REP2 62 Medium

edu.columbia.rascal.business.service.review.iacuc.IacucCorrespondence

Bug Category Details Line Priority
edu.columbia.rascal.business.service.review.iacuc.IacucCorrespondence.getCreationDate() may expose internal representation by returning IacucCorrespondence.creationDate MALICIOUS_CODE EI_EXPOSE_REP 65 Medium

edu.columbia.rascal.business.service.review.iacuc.IacucListener

Bug Category Details Line Priority
Class edu.columbia.rascal.business.service.review.iacuc.IacucListener defines non-transient non-serializable instance field headerService BAD_PRACTICE SE_BAD_FIELD Medium

edu.columbia.rascal.business.service.review.iacuc.IacucTaskForm

Bug Category Details Line Priority
edu.columbia.rascal.business.service.review.iacuc.IacucTaskForm.getDate() may expose internal representation by returning IacucTaskForm.date MALICIOUS_CODE EI_EXPOSE_REP 146 Medium
edu.columbia.rascal.business.service.review.iacuc.IacucTaskForm.getEndTime() may expose internal representation by returning IacucTaskForm.endTime MALICIOUS_CODE EI_EXPOSE_REP 86 Medium
edu.columbia.rascal.business.service.review.iacuc.IacucTaskForm.setDate(Date) may expose internal representation by storing an externally mutable object into IacucTaskForm.date MALICIOUS_CODE EI_EXPOSE_REP2 150 Medium
edu.columbia.rascal.business.service.review.iacuc.IacucTaskForm.setEndTime(Date) may expose internal representation by storing an externally mutable object into IacucTaskForm.endTime MALICIOUS_CODE EI_EXPOSE_REP2 84 Medium
edu.columbia.rascal.business.service.review.iacuc.IacucTaskForm defines compareTo(IacucTaskForm) and uses Object.equals() BAD_PRACTICE EQ_COMPARETO_USE_OBJECT_EQUALS 260 Medium
Possible null pointer dereference of IacucTaskForm.endTime in edu.columbia.rascal.business.service.review.iacuc.IacucTaskForm.compareTo(IacucTaskForm) CORRECTNESS NP_NULL_ON_SOME_PATH 263 Medium

edu.columbia.rascal.business.velos.CancerCenterXMLService

Bug Category Details Line Priority
Found reliance on default encoding in edu.columbia.rascal.business.velos.CancerCenterXMLService.generateSchemas(): java.io.ByteArrayOutputStream.toString() I18N DM_DEFAULT_ENCODING 134 High
Found reliance on default encoding in edu.columbia.rascal.business.velos.CancerCenterXMLService.generateXML(VelosReadyQueue): java.io.ByteArrayOutputStream.toString() I18N DM_DEFAULT_ENCODING 100 High

edu.columbia.rascal.business.velos.CancerCenterXMLService$CancerCenterSchemaOutputResolver

Bug Category Details Line Priority
Should edu.columbia.rascal.business.velos.CancerCenterXMLService$CancerCenterSchemaOutputResolver be a _static_ inner class? PERFORMANCE SIC_INNER_SHOULD_BE_STATIC 68 Medium