Source Code Cross Referenced for TemplateResourceBean.java in  » Groupware » LibreSource » org » libresource » core » ejb » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Groupware » LibreSource » org.libresource.core.ejb 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


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:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.