| org.objectweb.salome_tmf.api.sql.ISQLParameter
All known Subclasses: org.objectweb.salome_tmf.soap.SQLParameterSoapBindingStub, org.objectweb.salome_tmf.databaseSQL.SQLParameter,
ISQLParameter | public interface ISQLParameter extends Remote(Code) | | |
delete | public void delete(int idParameter) throws Exception(Code) | | Delete a parameter in Salome Database, include the suppresion of the parameter
in test, and in action
Parameters: idParameter - throws: Exception - need permission canDeleteTest |
getParameterWrapper | public ParameterWrapper getParameterWrapper(int idParameter) throws Exception(Code) | | Get a ParameterWrapper representing the parameter idParameter in the database
Parameters: idParameter - throws: Exception - |
insert | public int insert(int IdProject, String name, String description) throws Exception(Code) | | Add parameter in a project
Parameters: idProject - : id in Dabase of the project Parameters: name - : name of the parameter Parameters: description - : description of the parameter the id of the parameter in the dadabaseneed permission canCreateTest |
selectID | public int selectID(int IdProject, String name) throws Exception(Code) | | get database id for a parameter identified by name in the project IdProject
Parameters: idProject - Parameters: name - the database id of the parameter identified by name in the project IdProject throws: Exception - |
updateDescription | public void updateDescription(int idParameter, String description) throws Exception(Code) | | Update parameter (identifed by idParameter) description in DataBase
Parameters: idParameter - Parameters: description - : the new description of the parameter throws: Exception - need permission canUpdateTest |
|
|