KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > portal > core > metadata > TransactionMetaData


1 /*****************************************
2  * *
3  * JBoss Portal: The OpenSource Portal *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  *****************************************/

9 package org.jboss.portal.core.metadata;
10
11 import org.jboss.portal.common.plugin.PluginMetaData;
12 import org.jboss.portal.common.transaction.Transactions;
13
14 /**
15  * @author <a HREF="mailto:julien@jboss.org">Julien Viet</a>
16  * @version $Revision: 1.1 $
17  */

18 public class TransactionMetaData
19    implements PluginMetaData
20 {
21
22    private Transactions.Type txType;
23
24    public Transactions.Type getTxType()
25    {
26       return txType;
27    }
28
29    public void setTxType(Transactions.Type txType)
30    {
31       this.txType = txType;
32    }
33 }
34
Popular Tags