001/** 002 * Copyright 2005-2015 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.krad.uif.service; 017 018import org.kuali.rice.krad.inquiry.Inquirable; 019import org.kuali.rice.krad.uif.view.ViewSessionPolicy; 020import org.kuali.rice.krad.lookup.LookupForm; 021 022/** 023 * Provides methods to query the dictionary meta-data for view entries and their 024 * corresponding component entries 025 * 026 * @author Kuali Rice Team (rice.collab@kuali.org) 027 */ 028public interface ViewDictionaryService { 029 030 /** 031 * Queries the dictionary to find the <code>InquiryView</code> configured 032 * for the data object class and returns the configured Inquirable for the 033 * view. If more than one inquiry view exists for the data object class, the 034 * one that matches the given viewName, or the default if viewName is blank 035 * is used 036 * 037 * @param dataObjectClass - class for the inquiry data object 038 * @param viewName - name of the inquiry view, can be blank in which case the 039 * 'default' name will be used 040 * @return Inquirable<?> configured inquirable for the view, or null if view 041 * is not found 042 */ 043 public Inquirable getInquirable(Class<?> dataObjectClass, String viewName); 044 045 /** 046 * Indicates whether the given data object class has an associated 047 * <code>InquiryView</code> configured and thus can have inquiry links built 048 * 049 * @param dataObjectClass - object class to get inquiry view for 050 * @return boolean true if the class has an inquiry view, false if no 051 * inquiry view exists for the class 052 */ 053 public boolean isInquirable(Class<?> dataObjectClass); 054 055 /** 056 * Indicates whether the given data object class has an associated 057 * <code>LookupView</code> configured and thus can have quickfinders 058 * associated with the class 059 * 060 * @param dataObjectClass - object class to get lookup view for 061 * @return boolean true if the class has an lookup view, false if no lookup 062 * view exists for the class 063 */ 064 public boolean isLookupable(Class<?> dataObjectClass); 065 066 /** 067 * Indicates whether the given data object class has an associated 068 * <code>MaintenanceDocumentView</code> configured 069 * 070 * @param dataObjectClass - object class to get maintenance view for 071 * @return boolean true if the class has an maintenance view, false if no 072 * maintenance view exists for the class 073 */ 074 public boolean isMaintainable(Class<?> dataObjectClass); 075 076 /** 077 * Attempts to find an associated <code>LookupView</code> for the 078 * given data object class and if found returns the configured result 079 * set limit, if multiple lookup views are found the default is used 080 * unless the specific view can be found by view ID 081 * 082 * @param dataObjectClass - object class to get lookup view for 083 * @param form - the LookupForm 084 * @return Integer configured result set limit for lookup, or null if not found (note 085 * property could also be null on the view itself) 086 */ 087 public Integer getResultSetLimitForLookup(Class<?> dataObjectClass, LookupForm form); 088 089 /** 090 * Retrieves the <code>ViewSessionPolicy</code> instance associated with the given view id 091 * 092 * @param viewId id for the view whose session policy should be retrieved 093 * @return view session policy instance for view or null if view not found for the given id 094 */ 095 public ViewSessionPolicy getViewSessionPolicy(String viewId); 096 097 /** 098 * Indicates whether session storage is enabled for the view associated with the given id 099 * 100 * @param viewId id for the view to check 101 * @return true if session storage is enabled, false if not enabled or the view was not found 102 */ 103 public boolean isSessionStorageEnabled(String viewId); 104}