KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ofbiz > minilang > method > envops > EnvToField


1 /*
2  * $Id: EnvToField.java 5824 2005-09-25 23:18:16Z jonesde $
3  *
4  * Copyright (c) 2001, 2002 The Open For Business Project - www.ofbiz.org
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, including without limitation
9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the
11  * Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included
14  * in all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20  * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
21  * OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
22  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23  */

24 package org.ofbiz.minilang.method.envops;
25
26 import java.util.*;
27
28 import org.w3c.dom.*;
29 import org.ofbiz.base.util.*;
30 import org.ofbiz.minilang.*;
31 import org.ofbiz.minilang.method.*;
32
33 /**
34  * Copies an environment field to a map field
35  *
36  * @author <a HREF="mailto:jonesde@ofbiz.org">David E. Jones</a>
37  * @version $Rev: 5824 $
38  * @since 2.0
39  */

40 public class EnvToField extends MethodOperation {
41     
42     public static final String JavaDoc module = EnvToField.class.getName();
43     
44     ContextAccessor envAcsr;
45     ContextAccessor mapAcsr;
46     ContextAccessor fieldAcsr;
47
48     public EnvToField(Element element, SimpleMethod simpleMethod) {
49         super(element, simpleMethod);
50         envAcsr = new ContextAccessor(element.getAttribute("env-name"));
51         mapAcsr = new ContextAccessor(element.getAttribute("map-name"));
52         fieldAcsr = new ContextAccessor(element.getAttribute("field-name"));
53
54         // set fieldAcsr to their defualt value of envAcsr if empty
55
if (fieldAcsr.isEmpty()) {
56             fieldAcsr = envAcsr;
57         }
58     }
59
60     public boolean exec(MethodContext methodContext) {
61         Object JavaDoc envVar = envAcsr.get(methodContext);
62
63         if (envVar == null) {
64             Debug.logWarning("Environment field not found with name " + envAcsr + ", not copying env field", module);
65             return true;
66         }
67
68         if (!mapAcsr.isEmpty()) {
69             Map toMap = (Map) mapAcsr.get(methodContext);
70
71             if (toMap == null) {
72                 if (Debug.verboseOn()) Debug.logVerbose("Map not found with name " + mapAcsr + ", creating new map", module);
73                 toMap = new HashMap();
74                 mapAcsr.put(methodContext, toMap);
75             }
76             fieldAcsr.put(toMap, envVar, methodContext);
77         } else {
78             // no to-map, so put in env
79
fieldAcsr.put(methodContext, envVar);
80         }
81         return true;
82     }
83
84     public String JavaDoc rawString() {
85         return "<env-to-field env-name=\"" + this.envAcsr + "\" field-name=\"" + this.fieldAcsr + "\" map-name=\"" + this.mapAcsr + "\"/>";
86     }
87     public String JavaDoc expandedString(MethodContext methodContext) {
88         // TODO: something more than a stub/dummy
89
return this.rawString();
90     }
91 }
92
Popular Tags