01: /*
02:
03: * Copyright 2005-2006 The Kuali Foundation.
04:
05: *
06:
07: *
08:
09: * Licensed under the Educational Community License, Version 1.0 (the "License");
10:
11: * you may not use this file except in compliance with the License.
12:
13: * You may obtain a copy of the License at
14:
15: *
16:
17: * http://www.opensource.org/licenses/ecl1.php
18:
19: *
20:
21: * Unless required by applicable law or agreed to in writing, software
22:
23: * distributed under the License is distributed on an "AS IS" BASIS,
24:
25: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
26:
27: * See the License for the specific language governing permissions and
28:
29: * limitations under the License.
30:
31: */
32:
33: package edu.iu.uis.eden.clientapp.vo;
34:
35: import java.io.Serializable;
36:
37: import edu.iu.uis.eden.engine.node.State;
38:
39: /**
40:
41: * Transport object for {@link State}. Essentially an empty "marker" subclass of state to use as a VO
42:
43: * Inherits all functionality.
44:
45: *
46:
47: * @author ewestfal
48:
49: *
50:
51: * @workflow.webservice-object
52:
53: */
54:
55: public class StateVO extends State implements Serializable {
56:
57: private static final long serialVersionUID = -1113823611750637978L;
58:
59: }
|