01: //
02: // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.4-b18-fcs
03: // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
04: // Any modifications to this file will be lost upon recompilation of the source schema.
05: // Generated on: 2005.03.31 at 08:49:20 EST
06: //
07:
08: package com.metaboss.sdlctools.domains.enterprisemodel.storage.xmlfileimpl.dom;
09:
10: /**
11: * The transaction policy for this operation.
12: *
13: * Java content class for OperationTransactionPolicy element declaration.
14: * <p>The following schema fragment specifies the expected content contained within this java content object. (defined at file:/C:/MetaBoss/XMLSchemas/MetaBoss/SdlcTools/EnterpriseModel/1.0/enterprisemodel.xsd line 1216)
15: * <p>
16: * <pre>
17: * <element name="OperationTransactionPolicy" type="{http://www.metaboss.com/XMLSchemas/MetaBoss/SdlcTools/EnterpriseModel/1.0}TransactionPolicy"/>
18: * </pre>
19: *
20: */
21: public interface OperationTransactionPolicy extends
22: javax.xml.bind.Element {
23:
24: /**
25: * The transaction policy flag. Allows to specify operation's transaction policy.
26: * Note that this is very similar to J2EE enterprise beans transaction specification.
27: *
28: * @return
29: * possible object is
30: * {@link java.lang.String}
31: */
32: java.lang.String getValue();
33:
34: /**
35: * The transaction policy flag. Allows to specify operation's transaction policy.
36: * Note that this is very similar to J2EE enterprise beans transaction specification.
37: *
38: * @param value
39: * allowed object is
40: * {@link java.lang.String}
41: */
42: void setValue(java.lang.String value);
43:
44: }
|