Mercurial > hg > LGDataverses
changeset 5:dd9adfc73390
adding class de.mpiwg.monographs.servlet.GetStudies.
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/DVN-web/src/main/java/de/mpiwg/monographs/servlet/GetStudies.java Thu May 07 16:18:48 2015 +0200 @@ -0,0 +1,85 @@ +package de.mpiwg.monographs.servlet; + +import java.io.IOException; +import java.util.List; +import java.util.logging.Logger; + +import javax.ejb.EJB; +import javax.inject.Inject; +import javax.servlet.ServletException; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +import org.codehaus.jettison.json.JSONArray; +import org.codehaus.jettison.json.JSONObject; +import org.swordapp.server.AuthCredentials; +import org.swordapp.server.SwordAuthException; +import org.swordapp.server.SwordServerException; + +import edu.harvard.iq.dvn.api.datadeposit.SwordAuth; +import edu.harvard.iq.dvn.core.admin.RoleServiceLocal; +import edu.harvard.iq.dvn.core.admin.UserServiceLocal; +import edu.harvard.iq.dvn.core.admin.VDCUser; +import edu.harvard.iq.dvn.core.study.StudyServiceLocal; +import edu.harvard.iq.dvn.core.vdc.VDCServiceLocal; +import edu.harvard.iq.dvn.core.web.study.StudyUI; + +public class GetStudies extends AbstractMonographServlet{ + + private static final long serialVersionUID = -5284971577250313161L; + + private static Logger LOGGER = Logger.getLogger(GetStudies.class.getCanonicalName()); + + @EJB VDCServiceLocal vdcService; + @EJB RoleServiceLocal roleService; + @EJB UserServiceLocal userService; + + @Inject + private SwordAuth swordAuth; + private @EJB StudyServiceLocal studyService; + + public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { + + LOGGER.info("XXXXXXXXXXXXXXX GetStudies XXXXXXXXXXXXXXXXXXX"); + + JSONObject jsonResponse = new JSONObject(); + try { + + response.setContentType("application/json"); + + + String userName = request.getParameter("user"); + String password = request.getParameter("password"); + + AuthCredentials authCredentials = new AuthCredentials(userName, password, null); + VDCUser user = swordAuth.auth(authCredentials); + + if(user != null){ + + String orderBy = "s.createTime"; + Boolean ascending = true; + List studyVersionIds = studyService.getAllStudyVersionIdsByContributor(user.getId(), orderBy, ascending); + List deaccessionedStudyVersionIds = studyService.getAllDeaccessionedStudyVersionIdsByContributor(user.getId(), orderBy, ascending); + + JSONArray studiesArray = new JSONArray(); + for (Object studyVersionId: studyVersionIds) { + StudyUI studyUI = new StudyUI((Long)studyVersionId,user); + + JSONObject studyJson = MonographUtils.jsonStudyUI(studyUI); + studiesArray.put(studyJson); + } + jsonResponse.put("studies", studiesArray); + jsonResponse.put("state", "ok"); + } + + } catch (Exception e) { + e.printStackTrace(); + } + + java.io.PrintWriter out = response.getWriter(); + out.print(jsonResponse); + out.flush(); + + } + +}
Binary file DVN-web/target/classes/de/mpiwg/monographs/servlet/AbstractMonographServlet.class has changed
Binary file DVN-web/target/classes/de/mpiwg/monographs/servlet/GetStudyInformation.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/datadeposit/CollectionDepositManagerImpl.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/datadeposit/CollectionListManagerImpl.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/datadeposit/ContainerManagerImpl.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/datadeposit/MediaResourceManagerImpl.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/datadeposit/ReceiptGenerator.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/datadeposit/ServiceDocumentManagerImpl.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/datadeposit/StatementManagerImpl.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/datadeposit/SwordConfigurationImpl.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/entities/DownloadInfoWriter.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/entities/DownloadInstance.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/entities/DownloadInstanceWriter.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/entities/MetadataFormats.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/entities/MetadataFormatsWriter.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/entities/MetadataInstance.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/entities/MetadataSearchFields.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/entities/MetadataSearchFieldsWriter.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/entities/MetadataSearchResults.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/entities/MetadataSearchResultsWriter.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/exceptions/AuthorizationRequiredException.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/exceptions/AuthorizationRequiredExceptionMapper.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/exceptions/NotFoundException.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/exceptions/NotFoundExceptionMapper.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/exceptions/PermissionDeniedException.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/exceptions/PermissionDeniedExceptionMapper.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/exceptions/ServiceUnavailableException.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/exceptions/ServiceUnavailableExceptionMapper.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/resources/DownloadInfoResourceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/resources/DownloadResourceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/resources/DvnApiRootResource.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/resources/FileAccessSingletonBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/resources/MetadataFormatsResourceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/resources/MetadataResourceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/resources/MetadataSearchFieldsResourceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/resources/MetadataSearchResultsResourceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/api/resources/MetadataSingletonBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/ContributorRequestBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/CreatorRequestBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/EditHarvestSiteService.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/EditHarvestSiteServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/EditLockssService.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/EditLockssServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/EditNetworkPrivilegesService.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/EditNetworkPrivilegesServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/EditUserGroupService.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/EditUserGroupServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/EditUserServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/EditVDCPrivilegesService.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/EditVDCPrivilegesServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/GroupServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/KeywordSearchServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/KeywordSearchTerm.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/LockssAuthServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/LockssAuthServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/NetworkPrivilegedUserBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/NetworkRoleRequest.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/NetworkRoleServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/NetworkRoleServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/PageDefServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/PageDefServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/PasswordEncryption.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/PrivilegedUserBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/RoleRequestServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/RoleRequestServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/UserGroupServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/admin/UserGroupServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/analysis/NetworkDataServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/analysis/NetworkDataServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/analysis/NetworkDataSubsetResult.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/analysis/NetworkMeasureParameter.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/catalog/CatalogServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/catalog/CatalogServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/doi/DOIEZIdServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/dublinCore/DCServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/dublinCore/DCServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/dublinCore/MappingException.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/gnrs/TestNRSServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/gnrs/TestNRSServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/harvest/DvnFastGetRecord.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/harvest/HarvestFormatType.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/harvest/HarvestStudyServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/harvest/HarvestStudyServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/harvest/HarvestTimerInfo.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/harvest/HarvesterServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/harvest/HarvesterServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/index/DVNAnalyzer$SavedStreams.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/index/DVNSearchAnalyzer$SavedStreams.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/index/DVNSearchAnalyzer.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/index/DocumentCollector.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/index/IndexServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/index/ResultsWithFacets.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/ControlledVocabulary.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/ControlledVocabularyValue.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/DataFileFormatType.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/EditStudyFilesService.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/EditStudyFilesServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/EditStudyPermissionsService.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/EditStudyPermissionsServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/EditStudyServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/EditTemplateService.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/EditTemplateServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/FileMetadataField.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/FileMetadataFieldValue.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/MetadataFieldGroup.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/MetadataFormatType.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/StudyAccessRequest.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/StudyComment$Status.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/StudyCommentService.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/StudyCommentServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/StudyExporterFactoryBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/StudyExporterFactoryLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/StudyFieldConstant.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/StudyFieldServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/StudyFieldServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/StudyFileActivity.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/StudyFileEditBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/StudyFileServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/StudyFileServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/StudyRelPublication.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/StudyServiceBean$ConvertedFilenamesFilter.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/StudyServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/StudyVersion$VersionState.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/SummaryStatisticType.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/TemplateFileCategory.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/TemplateServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/TemplateServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/VariableFormatType.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/VariableIntervalType.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/VariableRangeItem.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/VariableRangeType.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/VariableServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/VariableServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/VersionContributor.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/WeightedVarRelationship.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/study/WeightedVarRelationshipId.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/util/AlphaNumericComparator.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/util/FieldInputLevelConstant.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/util/WebStatisticsSupport.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/CaptchaServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/CustomQuestionResponse.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/CustomQuestionResponseUI.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/CustomQuestionValue.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/GuestBookQuestionnaire.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/GuestBookResponseServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/GuestBookResponseUI.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/HandlePrefixServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/HandlePrefixServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/HarvestingDataverse.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/HarvestingDataverseServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/HarvestingDataverseServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/LockssConfig$ServerAccess.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/NetworkContactSubject.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/StudyAccessRequestServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/StudyAccessRequestServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/VDCCollectionServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/VDCCollectionServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/VDCGroupRelationship.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/VDCGroupRelationshipId.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/VDCGroupServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/VDCGroupServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/VDCNetworkServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/VDCNetworkServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/VDCNetworkStatsServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/vdc/VDCNetworkStatsServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/visualization/DataVariableMapping.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/visualization/SortVarGroupByName.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/visualization/VarGroupType.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/visualization/VarGrouping$GroupingType.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/visualization/VarGrouping.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/visualization/VisualizationDisplay.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/visualization/VisualizationServiceBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/visualization/VisualizationServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/BasicSearchFragment.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/DataverseGrouping$1.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/DataverseGroupingObject.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/ExploreDataPage$ExportFileResource.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/VisualizationLineDefinition.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/ChooseDataverseForCreateStudy.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/DefaultSortOrderPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/DisplayStudyField.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/EditBannerFooterPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/EditContactUsPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/EditControlledVocabularyPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/EditDepositUseTermsPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/EditGuestbookQuestionnairePage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/EditHomePanelsPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/EditLockssConfigPage$HarvestType.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/EditLockssConfigPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/EditStudyCommentsPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/EditUseTermsPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/GuestBookResponseDataPage$ExportFileResource.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/GuestBookResponseDataPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/ManageControlledVocabularyPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/ManageTemplatesPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/OptionsPage$ContributorSetting.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/OptionsPage$ExportFileResource.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/OptionsPage$RoleListItem.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/PrivilegedUsersPage$ContributorSetting.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/PrivilegedUsersPage$RoleListItem.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/PrivilegedUsersPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/admin/SearchFieldsPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/collection/AddLinkPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/collection/CollectionModel.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/collection/CollectionUI.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/collection/EditCollectionPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/collection/ManageCollectionsPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/common/StatusMessage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/common/VDCApplicationBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/common/VDCRenderBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/common/VDCRequestBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/common/VDCSessionBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/component/DvnInlineHelp.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/component/DvnInlineHelpSupport.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/component/DvnInlineHelpSupportTag.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/component/DvnInlineHelpTag.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/component/DvnTooltip.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/component/DvnTooltipTag.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/component/VDCCollectionTree$UrlNodeUserObject.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/component/VDCCollectionTree.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/customComponent/scroller/ScrollerComponent.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/customComponent/scroller/ScrollerTag.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/dataaccess/CensusAccessObject.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/dataaccess/CensusInputStream.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/dataaccess/DataAccess.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/dataaccess/DataAccessObject.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/dataaccess/DataAccessRequest.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/dataaccess/DataFileConverter.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/dataaccess/ExportTermsOfUse.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/dataaccess/FileAccessObject.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/dataaccess/HttpAccessObject.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/dataaccess/ImageThumbConverter.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/dataaccess/OptionalAccessService.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/dataaccess/PackageWithTermsOfUse.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/dataaccess/StoredOriginalFile.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/dvnremote/DvnTermsOfUseAccess.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/dvnremote/ICPSRauth.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/dvnremote/LockssServerAuth.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/login/AccountTermsOfUsePage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/login/AddAccountPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/login/EditAccountPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/login/EditPasswordPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/login/FileRequestPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/login/ForgotPasswordPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/login/LoginWorkflowBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/AddClassificationsPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/AllUsersDataBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/AllUsersPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/CommentReviewPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/DeleteClassificationsPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/DeleteSubnetworkPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/EditAccountUseTermsPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/EditExportSchedulePage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/EditNetworkAnnouncementsPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/EditNetworkDVRequirementsPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/EditNetworkDepositUseTermsPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/EditNetworkDownloadUseTermsPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/EditNetworkNamePage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/EditOAISetPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/EditSubnetworkPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/EditUserGroupPage$InternetAddressValidator.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/EditUserGroupPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/IndexLockFileNameFilter.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/ManageClassificationsPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/ManageDataversesPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/ManageSubnetworksPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/MyDataversePage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/NetworkPrivilegedUsersPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/OAISetsPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/UserGroupsInfoBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/UserGroupsPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/UtilitiesPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/networkAdmin/ViewUserGroupPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/oai/catalog/DVNOAICatalog.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/oai/catalog/DVNXML2ddi.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/oai/catalog/DVNXMLRecordFactory.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/push/NetworkStatsItemDetailer.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/push/NetworkStatsListener.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/push/NetworkStatsState$1.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/push/NetworkStatsState.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/push/beans/NetworkStatsBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/push/beans/NetworkStatsItemBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/push/stubs/ItemType.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/push/stubs/NetworkStatsStubServer.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/servlet/CensusRepositoryServlet.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/servlet/DDIExportServlet.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/servlet/DataVisServlet.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/servlet/ErrorPageServlet.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/servlet/FileDownloadServlet$FileDownloadObject.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/servlet/FileDownloadServlet.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/servlet/LoginFilter.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/servlet/SWORDv2CollectionServlet.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/servlet/SWORDv2ContainerServlet.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/servlet/SWORDv2MediaResourceServlet.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/servlet/SWORDv2ServiceDocumentServlet.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/servlet/SWORDv2StatementServlet.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/servlet/StudyGlobalIdServlet.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/servlet/TermsOfUseFilter.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/servlet/VDCFacesServlet.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/servlet/VDCHandleRegistrationServlet.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/servlet/VDCIngestServlet.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/servlet/VDCNetworkServlet.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/servlet/VDCSummaryStatisticsServlet$1.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/servlet/VDCSummaryStatisticsServlet.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/site/BrowseDataversesPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/site/ClassificationList$1.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/site/ClassificationList.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/site/ClassificationUI.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/site/DeleteDataversePage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/site/EditHarvestSitePage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/site/HarvestSitesPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/DeaccessionStudyPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/DeleteTemplatePage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/EditGuestBookResponsePage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/EditStudyFilesPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/EditStudyPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/EditVariablePage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/FacetResultUI.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/FileCategoryUI.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/ManageStudiesList$VersionPopupMode.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/ManageStudiesList.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/MigrateDataExplorationPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/SetUpDataExplorationPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/StudyCommentUI.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/StudyCommentsFragment.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/StudyFileUI$DownloadFormat.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/StudyFormBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/StudyMapValue.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/StudyPage$StudyActionRequestType.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/StudyPage$StudyDeleteRequestType.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/StudyPermissionsPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/StudyVersionDifferencesPage$catalogInfoDifferenceItem.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/StudyVersionDifferencesPage$studyFileDifferenceItem.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/StudyVersionDifferencesPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/TemplateFieldUI.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/TemplateFormPage$TemplateFieldControlledVocabulary.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/TemplateFormPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/TermsOfUsePage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/VersionNotesPopupBean$ActionType.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/study/VersionNotesPopupBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/subsetting/AnalysisApplicationBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/subsetting/AnalysisPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/subsetting/AnalysisResultsPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/subsetting/NetworkDataAnalysisPage$IOExceptionInProgress.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/subsetting/NetworkDataAnalysisPage$NetworkDataAnalysisEvent.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/subsetting/NetworkDataAnalysisPage$RFileResource.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/subsetting/NetworkDataAnalysisPage.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/util/AllPhaseListener.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/util/CharacterValidator.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/util/EmailValidator.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/util/ExceptionMessageWriter.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/util/InputFileSessionCleaner.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/util/NetworkDataverseListing.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/util/NetworkDataverseListingComparator.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/util/PagedDataModel.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/util/PlainTextValidator.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/util/RestoreViewPhaseListener.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/util/SessionCounter.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/util/VDCActionListener.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/util/VDCContextListener.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/core/web/util/XhtmlValidator.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/AdvancedStatGUIdata$Model$VarBox.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/AdvancedStatGUIdata$Model.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/AdvancedStatGUIdata.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/DSBIngestMessageBean.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/DataAnalysisService.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/FormatConversionService.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/FormatConversionServiceFactory.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/SubsettableFileChecker.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/impl/DvnCitationFileWriter.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/impl/DvnDSBTimerService.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/impl/DvnDSBTimerServiceLocal.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/impl/DvnJavaFieldCutter.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/impl/DvnNewJavaFieldCutter.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/impl/DvnRDataAnalysisServiceImpl.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/impl/DvnRGraphServiceImpl$DvnRConnection.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/impl/DvnRGraphServiceImpl$DvnRConnectionPool.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/impl/DvnRGraphServiceImpl$DvnRGraphException.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/impl/DvnRGraphServiceImpl$RException.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/impl/DvnRGraphServiceImpl.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/impl/DvnRJobRequest.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/impl/DvnRService$DvnRConnection.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/impl/DvnRService$DvnRConnectionPool.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/impl/DvnRService$DvnRServiceException.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/impl/DvnRService$RException.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/impl/DvnReplicationCodeFileWriter.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/impl/DvnReplicationREADMEFileWriter.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/impl/DvnRforeignFileConversionServiceImpl.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/impl/RcutDatasetCutter$1.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/impl/RcutDatasetCutter.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/impl/StatisticalCodeFileWriter.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/impl/VariableNameFilterForR.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/zelig/ObjectFactory.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/zelig/Zelig$Model$Formula$Equation$Explanatory$DataType.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/zelig/Zelig$Model$Formula$Equation$Explanatory$ModelingType.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/zelig/Zelig$Model$Formula$Equation$Explanatory.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/zelig/Zelig$Model$Formula$Equation$Outcome$DataType.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/zelig/Zelig$Model$Formula$Equation$Outcome$ModelingType.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/zelig/Zelig$Model$Formula$Equation$Outcome.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/zelig/Zelig$Model$Formula$Equation.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/zelig/Zelig$Model$Formula.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/zelig/Zelig$Model$HelpLink.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/zelig/Zelig$Model$PackageDependency.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/zelig/Zelig$Model$Setx.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/zelig/Zelig$Model.class has changed
Binary file DVN-web/target/classes/edu/harvard/iq/dvn/ingest/dsb/zelig/package-info.class has changed