View Javadoc

1   /**
2    * Copyright 2005-2012 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.rice.kns.datadictionary;
17  
18  import org.kuali.rice.kns.document.authorization.DocumentAuthorizer;
19  import org.kuali.rice.kns.document.authorization.DocumentPresentationController;
20  import org.kuali.rice.kns.rule.PromptBeforeValidation;
21  import org.kuali.rice.kns.web.derivedvaluesetter.DerivedValuesSetter;
22  import org.kuali.rice.krad.datadictionary.DataDictionaryEntry;
23  import org.springframework.beans.factory.InitializingBean;
24  
25  import java.io.Serializable;
26  import java.util.List;
27  
28  /**
29   * @author Kuali Rice Team (rice.collab@kuali.org)
30   */
31  @Deprecated
32  public interface KNSDocumentEntry extends DataDictionaryEntry, Serializable, InitializingBean {
33      List<HeaderNavigation> getHeaderNavigationList();
34  
35      List<String> getWebScriptFiles();
36  
37      Class<? extends PromptBeforeValidation> getPromptBeforeValidationClass();
38  
39      void setPromptBeforeValidationClass(Class<? extends PromptBeforeValidation> preRulesCheckClass);
40  
41      void setWebScriptFiles(List<String> webScriptFiles);
42  
43      void setHeaderNavigationList(List<HeaderNavigation> headerNavigationList);
44  
45      boolean isSessionDocument();
46  
47      void setSessionDocument(boolean sessionDocument);
48  
49      Class<? extends DerivedValuesSetter> getDerivedValuesSetterClass();
50  
51      void setDerivedValuesSetterClass(Class<? extends DerivedValuesSetter> derivedValuesSetter);
52  
53      public Class<? extends DocumentAuthorizer> getDocumentAuthorizerClass();
54  
55      public Class<? extends DocumentPresentationController> getDocumentPresentationControllerClass();
56  
57  
58  }