Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
SecondBTBean.java
Package: blacktie-2.0.0.M3-src.zip [view]
Upload User: xfwatch
Upload Date: 2020-12-14
Package Size: 872k
Code Size: 1k
Category:
MiddleWare
Development Platform:
Java
- package org.jboss.blacktie.example.ejb.eg1;
- import javax.ejb.Stateless;
- import javax.ejb.TransactionAttribute;
- import javax.ejb.TransactionAttributeType;
- @Stateless
- public class SecondBTBean /* extends BTTestBean */implements BTTestRemote {
- private BTTestBean bean = new BTTestBean("SecondBTBean");
- @TransactionAttribute(TransactionAttributeType.REQUIRED)
- public String txRequired(String arg) {
- return bean.handleRequest("txRequired", arg);
- }
- @TransactionAttribute(TransactionAttributeType.SUPPORTS)
- public String txSupports(String arg) {
- return bean.handleRequest("txSupports", arg);
- }
- @TransactionAttribute(TransactionAttributeType.MANDATORY)
- public String txMandatory(String arg) {
- return bean.handleRequest("txMandatory", arg);
- }
- @TransactionAttribute(TransactionAttributeType.NEVER)
- public String txNever(String arg) {
- return bean.handleRequest("txNever", arg);
- }
- @TransactionAttribute(TransactionAttributeType.REQUIRES_NEW)
- public String txRequiresNew(String arg) {
- return bean.handleRequest("txRequiresNew", arg);
- }
- @TransactionAttribute(TransactionAttributeType.NOT_SUPPORTED)
- public String txNotSupported(String arg) {
- return bean.handleRequest("txNotSupported", arg);
- }
- public String echo(String arg) {
- return bean.handleRequest("echo", arg);
- }
- }