001/** 002 * Copyright 2005-2016 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016package org.kuali.rice.kns.service.impl; 017 018import org.kuali.rice.kew.api.WorkflowDocument; 019import org.kuali.rice.kns.service.SessionDocumentService; 020import org.kuali.rice.kns.web.struts.form.KualiDocumentFormBase; 021import org.kuali.rice.krad.UserSession; 022 023import java.sql.Timestamp; 024 025/** 026 * A {@link SessionDocumentService} implementation which does nothing. 027 * 028 * @author Kuali Rice Team (rice.collab@kuali.org) 029 */ 030public class NoOpSessionDocumentServiceImpl implements SessionDocumentService{ 031 032 @Override 033 public WorkflowDocument getDocumentFromSession(UserSession userSession, String docId) { 034 return null; 035 } 036 037 @Override 038 public void addDocumentToUserSession(UserSession userSession, WorkflowDocument document) { 039 040 } 041 042 @Override 043 public void purgeDocumentForm(String documentNumber, String docFormKey, UserSession userSession, String ipAddress) { 044 045 } 046 047 @Override 048 public void purgeAllSessionDocuments(Timestamp expirationDate) { 049 050 } 051 052 @Override 053 public KualiDocumentFormBase getDocumentForm(String documentNumber, String docFormKey, UserSession userSession, 054 String ipAddress) { 055 return null; 056 } 057 058 @Override 059 public void setDocumentForm(KualiDocumentFormBase form, UserSession userSession, String ipAddress) { 060 061 } 062}