Java Doc for AttributeInstanceEJB.java in  » Workflow-Engines » obe-1.0 » org » obe » server » j2ee » repository » 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 » Workflow Engines » obe 1.0 » org.obe.server.j2ee.repository 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.obe.server.j2ee.ejb.AbstractEntityEJB
   org.obe.server.j2ee.repository.AttributeInstanceEJB

AttributeInstanceEJB
abstract public class AttributeInstanceEJB extends AbstractEntityEJB (Code)
Holds the persistent state of a workflow relevant datum instance.
author:
   Adrian Price



Constructor Summary
public  AttributeInstanceEJB()
    

Method Summary
protected  voidclear()
    
public  AttributeInstancePKejbCreate(String processDefinitionId, String processInstanceId, String ownerId, int ownerType, String attributeName, int attributeType, Object attributeValue)
    
public  intejbHomeCount(String processDefinitionId, String processInstanceId, String activityDefinitionId, String ownerId, int ownerType, WMFilter filter, String attrName)
     Counts the number of matching attribute instances.
Parameters:
  processInstanceId - The ID of the process instance for which tocount attributes; can be null.
Parameters:
  ownerId - The ID of the attribute owner for which tocount attributes; can be null.
Parameters:
  ownerType - The owner type, one of:AttributedEntity.PROCESS_INSTANCE_TYPE,AttributedEntity.ACTIVITY_INSTANCE_TYPE,AttributedEntity.WORKITEM_TYPE.
Parameters:
  filter - Attribute instance filter; can be null.
public  CollectionejbHomeXfindByFilter(String processDefinitionId, String processInstanceId, String activityDefinitionId, String ownerId, int ownerType, String attrName, WMFilter filter)
     Retrieves matching attribute instances.
Parameters:
  processInstanceId - The ID of the process instance for which toretrieve attributes; can be null.
Parameters:
  ownerId - The ID of the attribute owner for which toretrieve attributes; can be null.
Parameters:
  ownerType - The owner type, one of:AttributedEntity.PROCESS_INSTANCE_TYPE,AttributedEntity.ACTIVITY_INSTANCE_TYPE,AttributedEntity.WORKITEM_TYPE.
Parameters:
  filter - Attribute instance filter; should not be null(use AttributeInstanceLocalHome.findAll instead).
public  voidejbPostCreate(String processDefinitionId, String processInstanceId, String ownerId, int ownerType, String attributeName, int attributeType, Object attributeValue)
    
abstract public  BooleangetBooleanValue()
    
abstract public  DategetDateValue()
    
abstract public  DoublegetDoubleValue()
    
abstract public  IntegergetIntValue()
    
final protected  LoggetLogger()
    
abstract public  StringgetName()
    
abstract public  ObjectgetObjectValueCmp()
    
public  AttributedEntitygetOwner()
    
abstract public  StringgetOwnerId()
    
abstract public  intgetOwnerType()
    
abstract public  StringgetProcessDefinitionId()
    
abstract public  StringgetProcessInstanceId()
    
abstract public  StringgetStringValue()
    
abstract public  intgetType()
    
public  ObjectgetValue()
    
abstract public  voidsetBooleanValue(Boolean value)
    
abstract public  voidsetDateValue(Date value)
    
abstract public  voidsetDoubleValue(Double value)
    
abstract public  voidsetIntValue(Integer value)
    
abstract public  voidsetName(String name)
    
abstract public  voidsetObjectValueCmp(Object value)
    
abstract public  voidsetOwnerId(String ownerId)
    
abstract public  voidsetOwnerType(int type)
    
abstract public  voidsetProcessDefinitionId(String processDefinitionId)
    
abstract public  voidsetProcessInstanceId(String processInstanceId)
    
abstract public  voidsetStringValue(String value)
    
abstract public  voidsetType(int type)
    
public  voidsetValue(int type, Object value)
    
public  StringtoString()
    


Constructor Detail
AttributeInstanceEJB
public AttributeInstanceEJB()(Code)




Method Detail
clear
protected void clear()(Code)



ejbCreate
public AttributeInstancePK ejbCreate(String processDefinitionId, String processInstanceId, String ownerId, int ownerType, String attributeName, int attributeType, Object attributeValue) throws CreateException(Code)



ejbHomeCount
public int ejbHomeCount(String processDefinitionId, String processInstanceId, String activityDefinitionId, String ownerId, int ownerType, WMFilter filter, String attrName) throws RepositoryException(Code)
Counts the number of matching attribute instances.
Parameters:
  processInstanceId - The ID of the process instance for which tocount attributes; can be null.
Parameters:
  ownerId - The ID of the attribute owner for which tocount attributes; can be null.
Parameters:
  ownerType - The owner type, one of:AttributedEntity.PROCESS_INSTANCE_TYPE,AttributedEntity.ACTIVITY_INSTANCE_TYPE,AttributedEntity.WORKITEM_TYPE.
Parameters:
  filter - Attribute instance filter; can be null. The number of matching attribute instances.



ejbHomeXfindByFilter
public Collection ejbHomeXfindByFilter(String processDefinitionId, String processInstanceId, String activityDefinitionId, String ownerId, int ownerType, String attrName, WMFilter filter) throws FinderException, RepositoryException(Code)
Retrieves matching attribute instances.
Parameters:
  processInstanceId - The ID of the process instance for which toretrieve attributes; can be null.
Parameters:
  ownerId - The ID of the attribute owner for which toretrieve attributes; can be null.
Parameters:
  ownerType - The owner type, one of:AttributedEntity.PROCESS_INSTANCE_TYPE,AttributedEntity.ACTIVITY_INSTANCE_TYPE,AttributedEntity.WORKITEM_TYPE.
Parameters:
  filter - Attribute instance filter; should not be null(use AttributeInstanceLocalHome.findAll instead). A collection of matching attribute instances.
See Also:   AttributeInstanceLocalHome.findAll



ejbPostCreate
public void ejbPostCreate(String processDefinitionId, String processInstanceId, String ownerId, int ownerType, String attributeName, int attributeType, Object attributeValue)(Code)



getBooleanValue
abstract public Boolean getBooleanValue()(Code)



getDateValue
abstract public Date getDateValue()(Code)



getDoubleValue
abstract public Double getDoubleValue()(Code)



getIntValue
abstract public Integer getIntValue()(Code)



getLogger
final protected Log getLogger()(Code)



getName
abstract public String getName()(Code)



getObjectValueCmp
abstract public Object getObjectValueCmp()(Code)



getOwner
public AttributedEntity getOwner()(Code)



getOwnerId
abstract public String getOwnerId()(Code)



getOwnerType
abstract public int getOwnerType()(Code)



getProcessDefinitionId
abstract public String getProcessDefinitionId()(Code)



getProcessInstanceId
abstract public String getProcessInstanceId()(Code)



getStringValue
abstract public String getStringValue()(Code)



getType
abstract public int getType()(Code)



getValue
public Object getValue()(Code)



setBooleanValue
abstract public void setBooleanValue(Boolean value)(Code)



setDateValue
abstract public void setDateValue(Date value)(Code)



setDoubleValue
abstract public void setDoubleValue(Double value)(Code)



setIntValue
abstract public void setIntValue(Integer value)(Code)



setName
abstract public void setName(String name)(Code)



setObjectValueCmp
abstract public void setObjectValueCmp(Object value)(Code)



setOwnerId
abstract public void setOwnerId(String ownerId)(Code)



setOwnerType
abstract public void setOwnerType(int type)(Code)



setProcessDefinitionId
abstract public void setProcessDefinitionId(String processDefinitionId)(Code)



setProcessInstanceId
abstract public void setProcessInstanceId(String processInstanceId)(Code)



setStringValue
abstract public void setStringValue(String value)(Code)



setType
abstract public void setType(int type)(Code)



setValue
public void setValue(int type, Object value)(Code)



toString
public String toString()(Code)



Fields inherited from org.obe.server.j2ee.ejb.AbstractEntityEJB
protected EntityContext _ctx(Code)(Java Doc)
protected EJBLocalObject _ejbLocalObject(Code)(Java Doc)

Methods inherited from org.obe.server.j2ee.ejb.AbstractEntityEJB
protected void clear()(Code)(Java Doc)
public void ejbActivate()(Code)(Java Doc)
public void ejbLoad()(Code)(Java Doc)
public void ejbPassivate()(Code)(Java Doc)
public void ejbRemove() throws RemoveException(Code)(Java Doc)
public void ejbStore()(Code)(Java Doc)
public void setEntityContext(EntityContext ctx)(Code)(Java Doc)
public void unsetEntityContext()(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.