A simple Java wrapper API to connect to HP ALM using REST service
Create Defect
Read Defect(s)
Update Defect Fields
-
Create an instance of Authenticator class to authenticate your session
Authenticator auth = new Authenticator("alm-host","port","alm_domain","alm_project");
-
Login
auth.login("alm_username","alm_password");
-
Use DefectUtils class to access defects
DefectUtils du = new DefectUtils(auth); du.updateDefect("defectId","fields_to_update_map");
-
Logout
auth.logout();