Source Code Cross Referenced for ISQLDataset.java in  » Test-Coverage » salome-tmf » org » objectweb » salome_tmf » api » sql » 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 » Test Coverage » salome tmf » org.objectweb.salome_tmf.api.sql 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        package org.objectweb.salome_tmf.api.sql;
02:
03:        import java.rmi.Remote;
04:
05:        import org.objectweb.salome_tmf.api.data.DataSetWrapper;
06:        import org.objectweb.salome_tmf.api.data.ValuedParameterWrapper;
07:
08:        public interface ISQLDataset extends Remote {
09:            /**
10:             * Insert a dataset (table JEU_DONNEES) for the campaign identified by idCamp
11:             * @param idCamp : id of the campaign wich will caontain the dataset
12:             * @param name of the dataset
13:             * @param description of the dataset
14:             * @return id of the dataset created in table JEU_DONNEES
15:             * need permission canExecutCamp or canCreateCamp
16:             * @throws Exception
17:             */
18:            public int insert(int idCamp, String name, String description)
19:                    throws Exception;
20:
21:            /**
22:             * Map a value for the parameter idParam in the table VALEUR_PARAM
23:             * @param idDataset : id of the dataset in the table JEU_DONNEES
24:             * @param idParam : id of the parameter in the table PARAM_TEST
25:             * @param value 
26:             * @throws Exception
27:             * need permission canExecutCamp
28:             */
29:            public void addParamValue(int idDataset, int idParam, String value)
30:                    throws Exception;
31:
32:            /**
33:             * Update the name and the description of the dataset idDataset
34:             * @param idDataset : id of the dataset in table JEU_DONNEES
35:             * @param name
36:             * @param description
37:             * need permission canExecutCamp
38:             * @throws Exception
39:             */
40:            public void update(int idDataset, String name, String description)
41:                    throws Exception;
42:
43:            /**
44:             * Update a value maped to the parameter idParam for the dataset idDataset
45:             * @param idDataset : id of the dataset in table JEU_DONNEES
46:             * @param idParam
47:             * @param value
48:             * @param description
49:             * @throws Exception
50:             * need permission canExecutCamp or canUpdateCamp
51:             */
52:            public void updateParamValue(int idDataset, int idParam,
53:                    String value, String description) throws Exception;
54:
55:            /**
56:             * Delete the dataset and all mapped values in the database
57:             * if the dataset is used by executions, the executions are deleted
58:             * @param idDataset : id of the dataset in table JEU_DONNEES
59:             * @throws Exception
60:             * @see ISQLExecution.delete(int)
61:             * need permission canExecutCamp
62:             */
63:            public void delete(int idDataset) throws Exception;
64:
65:            /**
66:             * Get the Id of the dataset identified by name for the campaign idCamp
67:             * @param idCamp
68:             * @param name
69:             * @return id of the dataset created in table JEU_DONNEES
70:             * @throws Exception
71:             */
72:            public int getID(int idCamp, String name) throws Exception;
73:
74:            /**
75:             * Get A DataSetWrapper representing the dataset idDataSet in database
76:             * @param idDataSet
77:             * @return
78:             * @throws Exception
79:             */
80:            public DataSetWrapper getWrapper(int idDataSet) throws Exception;
81:
82:            /**
83:             * Get an Array of ValuedParameterWrapper for the he dataset idDataSet
84:             * @param idEnv
85:             * @return
86:             * @throws Exception
87:             */
88:            public ValuedParameterWrapper[] getDefinedParameters(int idDataSet)
89:                    throws Exception;
90:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.