1 26 27 package org.objectweb.openccm.plugins.transaction.controller; 28 29 36 public class NotSupportedController 37 extends WithControlController 38 { 39 45 51 55 public 56 NotSupportedController() 57 { 58 } 59 60 66 72 78 84 public void 85 preinvoke(org.objectweb.openccm.Containers.CallContext ctx) 86 { 87 if (!no_transaction(ctx)) { 88 suspend(ctx); 89 } 90 } 91 92 98 public void 99 postinvoke(org.objectweb.openccm.Containers.CallContext ctx) 100 { 101 resume(ctx); 102 } 103 104 110 116 122 public void 123 configure(org.objectweb.openccm.Containers.PropertySet config) 124 throws org.objectweb.openccm.Containers.ConfigurationFailed 125 { 126 } 127 } 128 | Popular Tags |