| 1 |
<!--
|
| 2 |
Copyright 2005-2006 The Apache Software Foundation
|
| 3 |
|
| 4 |
Licensed under the Apache 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.apache.org/licenses/LICENSE-2.0
|
| 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 |
$Id$
|
| 17 |
|
| 18 |
Commons SCXML Package
|
| 19 |
Version 0.5
|
| 20 |
Release Notes
|
| 21 |
|
| 22 |
|
| 23 |
INTRODUCTION:
|
| 24 |
|
| 25 |
The Commons SCXML (State Chart XML) project provides a generic
|
| 26 |
state-machine based execution environment. It borrows most semantics
|
| 27 |
from its namesake Working Draft at the W3C. Anything that can be
|
| 28 |
represented as a UML state chart -- business process flows, view
|
| 29 |
navigation bits, interaction or dialog management, and many more -- can
|
| 30 |
leverage the Commons SCXML library. The library abstracts out the
|
| 31 |
environment interfaces, and can be used in numerous server-side and
|
| 32 |
client-side runtimes.
|
| 33 |
|
| 34 |
Please visit the website for project information and documentation:
|
| 35 |
|
| 36 |
http://jakarta.apache.org/commons/scxml/
|
| 37 |
|
| 38 |
|
| 39 |
API STABILITY:
|
| 40 |
|
| 41 |
The initial release version number has been chosen to be 0.5 (rather
|
| 42 |
than a 1.0). This is meant to better convey the fact that the underlying
|
| 43 |
W3C specification is still a Working Draft, and subsequent changes to
|
| 44 |
the Draft may warrant changes to portions of the library API. The core
|
| 45 |
Commons SCXML APIs (SCXMLDigester, SCXMLExecutor etc.) are stable.
|
| 46 |
Portions such as processing of <datamodel> and <invoke> SCXML elements,
|
| 47 |
on the other hand, are subject to change as further changes are expected
|
| 48 |
in these sections of the W3C Working Draft. See Working Draft for
|
| 49 |
details.
|
| 50 |
|
| 51 |
|
| 52 |
NEW FEATURES:
|
| 53 |
|
| 54 |
This is the first release.
|
| 55 |
|
| 56 |
|
| 57 |
BUG FIXES:
|
| 58 |
|
| 59 |
This is the first release.
|
| 60 |
|