Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ModuleService |
|
| 1.0;1 |
1 | /* | |
2 | * Copyright 2007-2008 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.service; | |
17 | ||
18 | import java.util.List; | |
19 | import java.util.Map; | |
20 | ||
21 | import org.springframework.beans.factory.InitializingBean; | |
22 | import org.springframework.context.ApplicationContextAware; | |
23 | ||
24 | import org.kuali.rice.kns.bo.BusinessObject; | |
25 | import org.kuali.rice.kns.bo.ExternalizableBusinessObject; | |
26 | import org.kuali.rice.kns.bo.ModuleConfiguration; | |
27 | import org.kuali.rice.kns.datadictionary.BusinessObjectEntry; | |
28 | ||
29 | ||
30 | /** | |
31 | * This interface defines service methods for modules. | |
32 | * | |
33 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
34 | */ | |
35 | public interface ModuleService extends InitializingBean, ApplicationContextAware { | |
36 | ||
37 | /** | |
38 | * This method returns the module configuration. | |
39 | * | |
40 | * @return | |
41 | */ | |
42 | public ModuleConfiguration getModuleConfiguration(); | |
43 | ||
44 | /** | |
45 | * This method determines whether this service is responsible for the business object class passed in, or not. | |
46 | * | |
47 | * @param businessObjectClass | |
48 | * @return | |
49 | */ | |
50 | public boolean isResponsibleFor(Class businessObjectClass); | |
51 | ||
52 | /** | |
53 | * This method determines whether this service is responsible for the given jobname, or not. | |
54 | * | |
55 | * @param jobName | |
56 | * @return | |
57 | */ | |
58 | public boolean isResponsibleForJob(String jobName); | |
59 | ||
60 | /** | |
61 | * This method returns the list of primary keys for the EBO. | |
62 | * | |
63 | * @param businessObjectInterfaceClass | |
64 | * @return | |
65 | */ | |
66 | public List listPrimaryKeyFieldNames(Class businessObjectInterfaceClass); | |
67 | ||
68 | /** | |
69 | * This method returns a list of alternate primary keys. This is used when the "real" primary | |
70 | * key is not the only one that can be used. For example, documentType has "documentTypeId" | |
71 | * as its primary key, but the "name" could also be used. | |
72 | * A List of Lists is returned because because there can be component keys: | |
73 | * Ex: | |
74 | * {name, date} | |
75 | * {department, personId} | |
76 | * | |
77 | * @param businessObjectInterfaceClass | |
78 | * @return List of List of Strings. | |
79 | */ | |
80 | public List<List<String>> listAlternatePrimaryKeyFieldNames(Class businessObjectInterfaceClass); | |
81 | ||
82 | /** | |
83 | * This method gets the business object dictionary entry for the passed in externalizable business object class. | |
84 | * | |
85 | * @param businessObjectInterfaceClass | |
86 | * @return | |
87 | */ | |
88 | public BusinessObjectEntry getExternalizableBusinessObjectDictionaryEntry(Class businessObjectInterfaceClass); | |
89 | ||
90 | /** | |
91 | * This method gets the externalizable business object, given its type and a map of primary keys and values | |
92 | * | |
93 | * @param businessObjectClass | |
94 | * @param fieldValues | |
95 | * @return | |
96 | */ | |
97 | public <T extends ExternalizableBusinessObject> T getExternalizableBusinessObject(Class<T> businessObjectClass, Map<String, Object> fieldValues); | |
98 | ||
99 | /** | |
100 | * This method gets the list of externalizable business objects, given its type and a map of primary keys and values. | |
101 | * | |
102 | * @param businessObjectClass | |
103 | * @param fieldValues | |
104 | * @return | |
105 | */ | |
106 | public <T extends ExternalizableBusinessObject> List<T> getExternalizableBusinessObjectsList( | |
107 | Class<T> businessObjectClass, Map<String, Object> fieldValues); | |
108 | ||
109 | /** | |
110 | * This method gets the list of externalizable business objects for lookup, given its type and a map of primary keys and values. | |
111 | * | |
112 | * @param <T> | |
113 | * @param businessObjectClass | |
114 | * @param fieldValues | |
115 | * @param unbounded | |
116 | * @return | |
117 | */ | |
118 | public <T extends ExternalizableBusinessObject> List<T> getExternalizableBusinessObjectsListForLookup( | |
119 | Class<T> businessObjectClass, Map<String, Object> fieldValues, boolean unbounded); | |
120 | ||
121 | /** | |
122 | * This method returns a URL so that the inquiry framework may redirect a user to the appropriate (possibly external) website | |
123 | * at which to view inquiry information. | |
124 | * | |
125 | * @param inquiryBusinessObjectClass a {@link ExternalizableBusinessObject} managed by this module | |
126 | * @param parameters any inquiry parameters, and the primary key values of the inquiryBusinessObjectClass would be in here | |
127 | * @return a URL where externalizable business object information may be viewed. | |
128 | */ | |
129 | public String getExternalizableBusinessObjectInquiryUrl(Class inquiryBusinessObjectClass, Map<String, String[]> parameters); | |
130 | ||
131 | /** | |
132 | * This method gets the lookup url for the given externalizable business object properties. | |
133 | * | |
134 | * @param parameters | |
135 | * @return | |
136 | */ | |
137 | public String getExternalizableBusinessObjectLookupUrl(Class inquiryBusinessObjectClass, Map<String, String> parameters); | |
138 | ||
139 | /** | |
140 | * This method retrieves the externalizable business object, if it is not already populated | |
141 | * with the matching primary key values. | |
142 | * | |
143 | * @param businessObject | |
144 | * @param currentInstanceExternalizableBO | |
145 | * | |
146 | * @param externalizableRelationshipName | |
147 | * @return | |
148 | */ | |
149 | public <T extends ExternalizableBusinessObject> T retrieveExternalizableBusinessObjectIfNecessary( | |
150 | BusinessObject businessObject, T currentInstanceExternalizableBO, String externalizableRelationshipName); | |
151 | ||
152 | /** | |
153 | * This method retrieves a list of externalizable business objects given a business object, | |
154 | * name of the relationship between the business object and the externalizable business object, and | |
155 | * the externalizable business object class. | |
156 | * | |
157 | * @param businessObject | |
158 | * @param externalizableRelationshipName | |
159 | * @param externalizableClazz | |
160 | * @return | |
161 | */ | |
162 | public <T extends ExternalizableBusinessObject> List<T> retrieveExternalizableBusinessObjectsList( | |
163 | BusinessObject businessObject, String externalizableRelationshipName, Class<T> externalizableClazz); | |
164 | ||
165 | /** | |
166 | * This method determines whether or not a bo class is externalizable. | |
167 | * | |
168 | * @param boClass | |
169 | * @return | |
170 | */ | |
171 | public boolean isExternalizable(Class boClass); | |
172 | ||
173 | /** | |
174 | * @param boClass | |
175 | * @return | |
176 | */ | |
177 | public boolean isExternalizableBusinessObjectLookupable(Class boClass); | |
178 | ||
179 | /** | |
180 | * @param boClass | |
181 | * @return | |
182 | */ | |
183 | public boolean isExternalizableBusinessObjectInquirable(Class boClass); | |
184 | ||
185 | /** | |
186 | * @param <T> | |
187 | * @param boClass | |
188 | * @return | |
189 | */ | |
190 | public <T extends ExternalizableBusinessObject> T createNewObjectFromExternalizableClass(Class<T> boClass); | |
191 | ||
192 | /** | |
193 | * For a given ExternalizableBusinessObject interface, return the implementation class provided by this module. | |
194 | */ | |
195 | public <E extends ExternalizableBusinessObject> Class<E> getExternalizableBusinessObjectImplementation(Class<E> externalizableBusinessObjectInterface); | |
196 | } | |
197 |