01: /*
02: * ====================================================================
03: *
04: * XFLOW - Process Management System
05: * Copyright (C) 2003 Rob Tan
06: * All rights reserved.
07: *
08: * Redistribution and use in source and binary forms, with or without
09: * modification, are permitted provided that the following conditions
10: * are met:
11: *
12: * 1. Redistributions of source code must retain the above copyright
13: * notice, this list of conditions, and the following disclaimer.
14: *
15: * 2. Redistributions in binary form must reproduce the above copyright
16: * notice, this list of conditions, and the disclaimer that follows
17: * these conditions in the documentation and/or other materials
18: * provided with the distribution.
19: *
20: * 3. The name "XFlow" must not be used to endorse or promote products
21: * derived from this software without prior written permission. For
22: * written permission, please contact rcktan@yahoo.com
23: *
24: * 4. Products derived from this software may not be called "XFlow", nor
25: * may "XFlow" appear in their name, without prior written permission
26: * from the XFlow Project Management (rcktan@yahoo.com)
27: *
28: * In addition, we request (but do not require) that you include in the
29: * end-user documentation provided with the redistribution and/or in the
30: * software itself an acknowledgement equivalent to the following:
31: * "This product includes software developed by the
32: * XFlow Project (http://xflow.sourceforge.net/)."
33: * Alternatively, the acknowledgment may be graphical using the logos
34: * available at http://xflow.sourceforge.net/
35: *
36: * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
37: * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
38: * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
39: * DISCLAIMED. IN NO EVENT SHALL THE XFLOW AUTHORS OR THE PROJECT
40: * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
41: * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
42: * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
43: * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
44: * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
45: * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
46: * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
47: * SUCH DAMAGE.
48: *
49: * ====================================================================
50: * This software consists of voluntary contributions made by many
51: * individuals on behalf of the XFlow Project and was originally
52: * created by Rob Tan (rcktan@yahoo.com)
53: * For more information on the XFlow Project, please see:
54: * <http://xflow.sourceforge.net/>.
55: * ====================================================================
56: */
57: package xflow.protocol;
58:
59: import java.util.*;
60: import xflow.common.*;
61: import xflow.server.controller.*;
62:
63: public class DeployModelRequest extends Request {
64:
65: public String xml;
66: public String type;
67:
68: public Response service() {
69: System.out.println("Servicing DeployModel request");
70: System.out.println(type);
71: System.out.println(xml);
72:
73: int response = 0;
74: String msg = "OK";
75: try {
76: WorkflowProcessor.deployModel(xml, type, user.getName());
77: response = Response.SUCCESS;
78: } catch (Exception e) {
79: response = Response.FAILURE;
80: msg = e.getMessage();
81: }
82:
83: return new DeployModelResponse(response, msg);
84: }
85: }
|