001: /*
002: *
003: * Copyright (c) 2004 SourceTap - www.sourcetap.com
004: *
005: * The contents of this file are subject to the SourceTap Public License
006: * ("License"); You may not use this file except in compliance with the
007: * License. You may obtain a copy of the License at http://www.sourcetap.com/license.htm
008: * Software distributed under the License is distributed on an "AS IS" basis,
009: * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
010: * the specific language governing rights and limitations under the License.
011: *
012: * The above copyright notice and this permission notice shall be included
013: * in all copies or substantial portions of the Software.
014: *
015: */
016:
017: package com.sourcetap.sfa.customization;
018:
019: import java.util.HashMap;
020:
021: import javax.servlet.http.HttpServletRequest;
022: import javax.servlet.http.HttpServletResponse;
023:
024: import org.ofbiz.entity.GenericDelegator;
025: import org.ofbiz.entity.GenericValue;
026: import org.ofbiz.entity.model.ModelEntity;
027:
028: import com.sourcetap.sfa.event.DataMatrix;
029: import com.sourcetap.sfa.event.GenericEventProcessor;
030: import com.sourcetap.sfa.event.GenericWebEventProcessor;
031: import com.sourcetap.sfa.ui.UICache;
032: import com.sourcetap.sfa.ui.UIWebScreenSection;
033: import com.sourcetap.sfa.util.UserInfo;
034:
035: /**
036: * DOCUMENT ME!
037: *
038: */
039: public class UIEntityWebEventProcessor extends GenericWebEventProcessor {
040: public static final String module = UIEntityWebEventProcessor.class
041: .getName();
042:
043: /**
044: * DOCUMENT ME!
045: *
046: * @param userInfo
047: * @param uiWebScreenSection
048: * @param request
049: * @param response
050: * @param delegator
051: * @param eventProcessor
052: * @param dataMatrix
053: * @param uiCache
054: *
055: * @return
056: */
057: protected int postUpdate(UserInfo userInfo,
058: UIWebScreenSection uiWebScreenSection,
059: HttpServletRequest request, HttpServletResponse response,
060: GenericDelegator delegator,
061: GenericEventProcessor eventProcessor,
062: DataMatrix dataMatrix, UICache uiCache) {
063:
064: // Clear UI cache.
065: uiCache.clear();
066:
067: return STATUS_CONTINUE;
068: }
069:
070: /**
071: * DOCUMENT ME!
072: *
073: * @param userInfo
074: * @param uiWebScreenSection
075: * @param request
076: * @param response
077: * @param delegator
078: * @param eventProcessor
079: * @param dataMatrix
080: * @param uiCache
081: *
082: * @return
083: */
084: protected int postInsert(UserInfo userInfo,
085: UIWebScreenSection uiWebScreenSection,
086: HttpServletRequest request, HttpServletResponse response,
087: GenericDelegator delegator,
088: GenericEventProcessor eventProcessor,
089: DataMatrix dataMatrix, UICache uiCache) {
090:
091: // Clear UI cache.
092: uiCache.clear();
093:
094: return STATUS_CONTINUE;
095: }
096:
097: /**
098: * DOCUMENT ME!
099: *
100: * @param userInfo
101: * @param uiWebScreenSection
102: * @param request
103: * @param response
104: * @param delegator
105: * @param eventProcessor
106: * @param primaryME
107: * @param fields
108: * @param uiCache
109: *
110: * @return
111: */
112: protected int postDelete(UserInfo userInfo,
113: UIWebScreenSection uiWebScreenSection,
114: HttpServletRequest request, HttpServletResponse response,
115: GenericDelegator delegator,
116: GenericEventProcessor eventProcessor,
117: ModelEntity primaryME, HashMap fields, UICache uiCache) {
118:
119: // Clear UI cache.
120: uiCache.clear();
121:
122: return STATUS_CONTINUE;
123: }
124:
125: /**
126: * This function gets the application path to be used to reconstruct the URI when a
127: * UI History record is logged. Example: "/accounts"
128: * @author John Nutting
129: * @param url The URL used to open the screen section
130: * @return String containing the application path
131: */
132: protected String getUiHistoryAppPath(String url) {
133: return "/uiEntity";
134: }
135:
136: /**
137: * This function gets the description to store in the UI history table. This description
138: * will show up in the UI History drop list.
139: * @author John Nutting
140: * @param dataMatrix DataMatrix object containing the data from the screen
141: * @param delegator Generic delegator through which the data base is accessed
142: * @param action The action being performed on the screen
143: * @param uiWebScreenSection The UIWebScreenSection being used to construct the screen section
144: * @return String containing the UI History description
145: */
146: protected String getUiHistoryDescription(DataMatrix dataMatrix,
147: GenericDelegator delegator, String action,
148: UIWebScreenSection uiWebScreenSection) {
149: GenericValue primaryGV = dataMatrix.getCurrentBuffer()
150: .getGenericValue(0, 0);
151:
152: return "Entity: " + primaryGV.getString("entityName");
153: }
154: }
|