001: /**
002: * LibreSource
003: * Copyright (C) 2004-2008 Artenum SARL / INRIA
004: * http://www.libresource.org - contact@artenum.com
005: *
006: * This file is part of the LibreSource software,
007: * which can be used and distributed under license conditions.
008: * The license conditions are provided in the LICENSE.TXT file
009: * at the root path of the packaging that enclose this file.
010: * More information can be found at
011: * - http://dev.libresource.org/home/license
012: *
013: * Initial authors :
014: *
015: * Guillaume Bort / INRIA
016: * Francois Charoy / Universite Nancy 2
017: * Julien Forest / Artenum
018: * Claude Godart / Universite Henry Poincare
019: * Florent Jouille / INRIA
020: * Sebastien Jourdain / INRIA / Artenum
021: * Yves Lerumeur / Artenum
022: * Pascal Molli / Universite Henry Poincare
023: * Gerald Oster / INRIA
024: * Mariarosa Penzi / Artenum
025: * Gerard Sookahet / Artenum
026: * Raphael Tani / INRIA
027: *
028: * Contributors :
029: *
030: * Stephane Bagnier / Artenum
031: * Amadou Dia / Artenum-IUP Blois
032: * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
033: */package org.libresource.core.ejb;
034:
035: import org.libresource.LibresourceResourceBase;
036:
037: import org.libresource.core.util.TemplateResourceUtil;
038:
039: import javax.ejb.CreateException;
040:
041: /**
042: * A libresource Project
043: *
044: * @libresource.resource name="Template" service="LibresourceCore"
045: *
046: * @ejb.finder signature= "java.util.Collection findAll()"
047: * query ="SELECT OBJECT(p) FROM TemplateResource p"
048: * transaction-type="Supports"
049: */
050: public abstract class TemplateResourceBean extends
051: LibresourceResourceBase {
052: /**
053: * @ejb.create-method
054: */
055: public String ejbCreate(String name, String description)
056: throws CreateException {
057: setId(TemplateResourceUtil.generateGUID(this ));
058: setName(name);
059: setDescription(description);
060:
061: return null;
062: }
063:
064: // persistents fields
065:
066: /**
067: * @ejb.persistent-field
068: * @ejb.interface-method
069: * @ejb.value-object match="libresource"
070: * @ejb.transaction type="Supports"
071: */
072: public abstract String getId();
073:
074: /**
075: * @ejb.persistent-field
076: * @ejb.interface-method
077: * @ejb.transaction type="Mandatory"
078: */
079: public abstract void setId(String id);
080:
081: /**
082: * @ejb.interface-method
083: * @ejb.value-object match="libresource"
084: * @ejb.transaction type="Supports"
085: */
086: public String getShortResourceName() {
087: return getName();
088: }
089:
090: /**
091: * @ejb.persistent-field
092: * @ejb.interface-method
093: * @ejb.value-object match="libresource"
094: * @ejb.transaction type="Supports"
095: */
096: public abstract String getName();
097:
098: /**
099: * @ejb.persistent-field
100: * @ejb.interface-method
101: * @ejb.transaction type="Mandatory"
102: */
103: public abstract void setName(String name);
104:
105: /**
106: * @ejb.persistent-field
107: * @ejb.interface-method
108: * @ejb.value-object match="libresource"
109: * @ejb.transaction type="Supports"
110: */
111: public abstract String getDescription();
112:
113: /**
114: * @ejb.persistent-field
115: * @ejb.interface-method
116: * @ejb.transaction type="Mandatory"
117: */
118: public abstract void setDescription(String description);
119: }
|