Sample Java REST Code for retrieving all the roles in the RBPM system

0 Likes
Download libraries_0.zip

Ensure the attached libraries are in your class path.




import org.apache.commons.httpclient.*;
import org.apache.commons.httpclient.methods.*;

import java.io.*;
import java.net.URL;

public class GetRoles {

private static String url = "http://10.0.0.5:8180/RIS/roles";

static HttpClient client;
static GetMethod method;

public static void main(String[] args) {


client= new HttpClient();
method=new GetMethod(url);

method.addRequestHeader("Accept","application/json");
method.addRequestHeader("RESTAuthorization", "dWFhZG1pbjpub3ZlbGw=");


try {
//Making the request
int statusCode = client.executeMethod(method);

if (statusCode != HttpStatus.SC_OK) {
System.err.println("Method failed: " method.getStatusLine());
}


InputStream in =method.getResponseBodyAsStream();
System.out.println(convertInputSteamToString(in));



} catch (HttpException e) {

} catch (IOException e) {

}finally {
// Release the connection.
method.releaseConnection();
}
}

public static String convertInputSteamToString(InputStream is) throws IOException {

if (is != null) {
Writer writer = new StringWriter();

char[] buffer = new char[1024];

try {
Reader reader = new BufferedReader(
new InputStreamReader(is, "UTF-8"));
int n;
while ((n = reader.read(buffer)) != -1) {
writer.write(buffer, 0, n);
}
} finally {
is.close();
}
return writer.toString();

}
else {
return "";
}
}
}




Sample Output in JSON Format:



[{"Link":"\/RIS\/roles\/9020bdd9fa0c1e410cac9020bdd9fa0c","DN":"cn=Order Supplies,cn=Level10,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"9020bdd9fa0c1e410cac9020bdd9fa0c","Description":"Order Supplies","CategoryKey":[],"Links":[],"RoleLevel":{"Name":"Permission Role","Description":"Permission Role","RoleLevel":"10"},"Name":"Order Supplies"},{"Link":"\/RIS\/roles\/bf75aa39439a144e529dbf75aa39439a","DN":"cn=Medical Records System Access,cn=Level10,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"bf75aa39439a144e529dbf75aa39439a","Description":"Medical Records System Access","CategoryKey":["system"],"Links":[],"RoleLevel":{"Name":"Permission Role","Description":"Permission Role","RoleLevel":"10"},"Name":"Medical Records System Access"},{"Link":"\/RIS\/roles\/53de2ba719f4984dafb253de2ba719f4","DN":"cn=Scheduler System Access,cn=Level10,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"53de2ba719f4984dafb253de2ba719f4","Description":"Scheduler System Access","CategoryKey":["system"],"Links":[],"RoleLevel":{"Name":"Permission Role","Description":"Permission Role","RoleLevel":"10"},"Name":"Scheduler System Access"},{"Link":"\/RIS\/roles\/c7d0ceb63df2be48e1b5c7d0ceb63df2","DN":"cn=Insurance System Access,cn=Level10,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"c7d0ceb63df2be48e1b5c7d0ceb63df2","Description":"Insurance System Access","CategoryKey":["system"],"Links":[],"RoleLevel":{"Name":"Permission Role","Description":"Permission Role","RoleLevel":"10"},"Name":"Insurance System Access"},{"Link":"\/RIS\/roles\/507f24162ae6e344b588507f24162ae6","DN":"cn=Billing System Access,cn=Level10,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"507f24162ae6e344b588507f24162ae6","Description":"Billing System Access","CategoryKey":["system"],"Links":[],"RoleLevel":{"Name":"Permission Role","Description":"Permission Role","RoleLevel":"10"},"Name":"Billing System Access"},{"Link":"\/RIS\/roles\/f5977e819f20384b89b7f5977e819f20","DN":"cn=Benefits System Access,cn=Level10,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"f5977e819f20384b89b7f5977e819f20","Description":"Benefits System Access","CategoryKey":["system"],"Links":[],"RoleLevel":{"Name":"Permission Role","Description":"Permission Role","RoleLevel":"10"},"Name":"Benefits System Access"},{"Link":"\/RIS\/roles\/afcbacc5fc339f48f095afcbacc5fc33","DN":"cn=Payroll System Access,cn=Level10,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"afcbacc5fc339f48f095afcbacc5fc33","Description":"Payroll System Access","CategoryKey":["system"],"Links":[],"RoleLevel":{"Name":"Permission Role","Description":"Permission Role","RoleLevel":"10"},"Name":"Payroll System Access"},{"Link":"\/RIS\/roles\/3b18cbf691376e47ff8b3b18cbf69137","DN":"cn=Perform Medical Tests,cn=Level10,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"3b18cbf691376e47ff8b3b18cbf69137","Description":"Perform Medical Tests","CategoryKey":["doctor"],"Links":[],"RoleLevel":{"Name":"Permission Role","Description":"Permission Role","RoleLevel":"10"},"Name":"Perform Medical Tests"},{"Link":"\/RIS\/roles\/8e6052767008e84eed8b8e6052767008","DN":"cn=Order Medical Tests,cn=Level10,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"8e6052767008e84eed8b8e6052767008","Description":"Order Medical Tests","CategoryKey":["doctor"],"Links":[],"RoleLevel":{"Name":"Permission Role","Description":"Permission Role","RoleLevel":"10"},"Name":"Order Medical Tests"},{"Link":"\/RIS\/roles\/dd5a792663363c491fabdd5a79266336","DN":"cn=Administer Drugs,cn=Level10,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"dd5a792663363c491fabdd5a79266336","Description":"Administer Drugs","CategoryKey":["doctor"],"Links":[],"RoleLevel":{"Name":"Permission Role","Description":"Permission Role","RoleLevel":"10"},"Name":"Administer Drugs"},{"Link":"\/RIS\/roles\/948b5c661556d949a79b948b5c661556","DN":"cn=Fill Prescriptions,cn=Level10,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"948b5c661556d949a79b948b5c661556","Description":"Fill Prescriptions","CategoryKey":["pharmacist"],"Links":[],"RoleLevel":{"Name":"Permission Role","Description":"Permission Role","RoleLevel":"10"},"Name":"Fill Prescriptions"},{"Link":"\/RIS\/roles\/1267d57155f13b4ca4bd1267d57155f1","DN":"cn=Write Prescriptions,cn=Level10,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"1267d57155f13b4ca4bd1267d57155f1","Description":"Write Prescriptions","CategoryKey":["doctor"],"Links":[],"RoleLevel":{"Name":"Permission Role","Description":"Permission Role","RoleLevel":"10"},"Name":"Write Prescriptions"},{"Link":"\/RIS\/roles\/fbc2a82bd325cc4a52b7fbc2a82bd325","DN":"cn=ER Access-West,cn=Level10,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"fbc2a82bd325cc4a52b7fbc2a82bd325","Description":"ER Access (West Campus)","CategoryKey":["building"],"Links":[],"RoleLevel":{"Name":"Permission Role","Description":"Permission Role","RoleLevel":"10"},"Name":"ER Access(West Campus)"},{"Link":"\/RIS\/roles\/e2039af455943642efb8e2039af45594","DN":"cn=ER Access-East,cn=Level10,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"e2039af455943642efb8e2039af45594","Description":"ER Access (East Campus)","CategoryKey":["building"],"Links":[],"RoleLevel":{"Name":"Permission Role","Description":"Permission Role","RoleLevel":"10"},"Name":"ER Access(East Campus)"},{"Link":"\/RIS\/roles\/759d9dc9a3e92644408f759d9dc9a3e9","DN":"cn=OR Access-West,cn=Level10,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"759d9dc9a3e92644408f759d9dc9a3e9","Description":"OR Access (West Campus)","CategoryKey":["building"],"Links":[],"RoleLevel":{"Name":"Permission Role","Description":"Permission Role","RoleLevel":"10"},"Name":"OR Access (West Campus)"},{"Link":"\/RIS\/roles\/55cc3124b94ec341d3ac55cc3124b94e","DN":"cn=OR Access-East,cn=Level10,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"55cc3124b94ec341d3ac55cc3124b94e","Description":"OR Access (East Campus)","CategoryKey":["building"],"Links":[],"RoleLevel":{"Name":"Permission Role","Description":"Permission Role","RoleLevel":"10"},"Name":"OR Access (East Campus)"},{"Link":"\/RIS\/roles\/040b00337dcd0d4cc8ae040b00337dcd","DN":"cn=Hospital Access-West,cn=Level10,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"040b00337dcd0d4cc8ae040b00337dcd","Description":"Hospital Access (West Campus)","CategoryKey":["building"],"Links":[],"RoleLevel":{"Name":"Permission Role","Description":"Permission Role","RoleLevel":"10"},"Name":"Hospital Access (West Campus)"},{"Link":"\/RIS\/roles\/8eedd7eaa4426a4bdcb68eedd7eaa442","DN":"cn=Hospital Access-East,cn=Level10,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"8eedd7eaa4426a4bdcb68eedd7eaa442","Description":"Hospital Access (East Campus)","CategoryKey":["building"],"Links":[],"RoleLevel":{"Name":"Permission Role","Description":"Permission Role","RoleLevel":"10"},"Name":"Hospital Access (East Campus)"},{"Link":"\/RIS\/roles\/9eabd3e1adef924c009a9eabd3e1adef","DN":"cn=Administrative Assistant,cn=Level20,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"9eabd3e1adef924c009a9eabd3e1adef","Description":"Administrative Assistant","CategoryKey":[],"Links":[],"RoleLevel":{"Name":"IT Role","Description":"IT Role","RoleLevel":"20"},"Name":"Administrative Assistant"},{"Link":"\/RIS\/roles\/fb6d090b15bf854e3ab5fb6d090b15bf","DN":"cn=Nurse,cn=Level20,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"fb6d090b15bf854e3ab5fb6d090b15bf","Description":"Nurse","CategoryKey":["nurse"],"Links":[],"RoleLevel":{"Name":"IT Role","Description":"IT Role","RoleLevel":"20"},"Name":"Nurse"},{"Link":"\/RIS\/roles\/a41d37ebdf3dce48fb91a41d37ebdf3d","DN":"cn=Pharmacist,cn=Level20,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"a41d37ebdf3dce48fb91a41d37ebdf3d","Description":"Pharmacist","CategoryKey":["pharmacist"],"Links":[],"RoleLevel":{"Name":"IT Role","Description":"IT Role","RoleLevel":"20"},"Name":"Pharmacist"},{"Link":"\/RIS\/roles\/faab999204e407481480faab999204e4","DN":"cn=Doctor,cn=Level20,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"faab999204e407481480faab999204e4","Description":"Doctor","CategoryKey":["doctor"],"Links":[],"RoleLevel":{"Name":"IT Role","Description":"IT Role","RoleLevel":"20"},"Name":"Doctor"},{"Link":"\/RIS\/roles\/5ff0fb2c7ec2c641cfac5ff0fb2c7ec2","DN":"cn=Human Resources,cn=Level20,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"5ff0fb2c7ec2c641cfac5ff0fb2c7ec2","Description":"Human Resources","CategoryKey":[],"Links":[],"RoleLevel":{"Name":"IT Role","Description":"IT Role","RoleLevel":"20"},"Name":"Human Resources"},{"Link":"\/RIS\/roles\/566e377da81de04e7da8566e377da81d","DN":"cn=Billing,cn=Level20,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"566e377da81de04e7da8566e377da81d","Description":"Billing","CategoryKey":[],"Links":[],"RoleLevel":{"Name":"IT Role","Description":"IT Role","RoleLevel":"20"},"Name":"Billing"},{"Link":"\/RIS\/roles\/88c13cd7703b034d1ab888c13cd7703b","DN":"cn=Payroll,cn=Level20,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"88c13cd7703b034d1ab888c13cd7703b","Description":"Payroll","CategoryKey":[],"Links":[],"RoleLevel":{"Name":"IT Role","Description":"IT Role","RoleLevel":"20"},"Name":"Payroll"},{"Link":"\/RIS\/roles\/51db6842de7b38420b9751db6842de7b","DN":"cn=Purchasing,cn=Level20,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"51db6842de7b38420b9751db6842de7b","Description":"Purchasing","CategoryKey":[],"Links":[],"RoleLevel":{"Name":"IT Role","Description":"IT Role","RoleLevel":"20"},"Name":"Purchasing"},{"Link":"\/RIS\/roles\/3905ce108a84c641fb903905ce108a84","DN":"cn=West Campus Access,cn=Level20,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"3905ce108a84c641fb903905ce108a84","Description":"West Campus Access","CategoryKey":["building"],"Links":[],"RoleLevel":{"Name":"IT Role","Description":"IT Role","RoleLevel":"20"},"Name":"West Campus Access"},{"Link":"\/RIS\/roles\/3217aba7c46590471fa23217aba7c465","DN":"cn=East Campus Access,cn=Level20,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"3217aba7c46590471fa23217aba7c465","Description":"East Campus Access","CategoryKey":["building"],"Links":[],"RoleLevel":{"Name":"IT Role","Description":"IT Role","RoleLevel":"20"},"Name":"East Campus Access"},{"Link":"\/RIS\/roles\/3ccae16fe66faa4865a73ccae16fe66f","DN":"cn=complianceAdmin,cn=System,cn=Level20,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"3ccae16fe66faa4865a73ccae16fe66f","Description":"A domain administrator who has the full range of capabilities within the Compliance domain. The Compliance Administrator can perform all possible actions for all objects within the Compliance domain.","CategoryKey":["system"],"Links":[],"RoleLevel":{"Name":"IT Role","Description":"IT Role","RoleLevel":"20"},"Name":"Compliance Administrator"},{"Link":"\/RIS\/roles\/84ade22c58a2d64bedaf84ade22c58a2","DN":"cn=roleAdmin,cn=System,cn=Level20,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"84ade22c58a2d64bedaf84ade22c58a2","Description":"A domain administrator who has nearly the full range of capabilities within the Role domain. The Role Administrator can perform all possible actions for all objects (except for the System Roles) within the Role domain.","CategoryKey":["system"],"Links":[],"RoleLevel":{"Name":"IT Role","Description":"IT Role","RoleLevel":"20"},"Name":"Role Administrator"},{"Link":"\/RIS\/roles\/d9d7d279d36e3444df8cd9d7d279d36e","DN":"cn=rbpmAdmin,cn=System,cn=Level20,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"d9d7d279d36e3444df8cd9d7d279d36e","Description":"A domain administrator who has the full range of capabilities within the Configuration domain. The RBPM Application Administrator can perform all possible actions on all objects within the RBPM Application domain. The RBPM Application Administrator controls access to navigation items with the Roles Based Provisioning Module. In addition, the RBPM Application Administrator configures the delegation and proxy service, the digital signature service, the provisioning user interface, and the workflow engine.","CategoryKey":["system"],"Links":[],"RoleLevel":{"Name":"IT Role","Description":"IT Role","RoleLevel":"20"},"Name":"RBPM Application Administrator"},{"Link":"\/RIS\/roles\/c097bdb399e4ca42bbaec097bdb399e4","DN":"cn=resourceManager,cn=System,cn=Level20,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"c097bdb399e4ca42bbaec097bdb399e4","Description":"A delegated administrator who can perform only allowed actions for a subset of objects within the Resource domain.","CategoryKey":["system"],"Links":[],"RoleLevel":{"Name":"IT Role","Description":"IT Role","RoleLevel":"20"},"Name":"Resource Manager"},{"Link":"\/RIS\/roles\/5f1a35ef81d3f84461ad5f1a35ef81d3","DN":"cn=provAdmin,cn=System,cn=Level20,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"5f1a35ef81d3f84461ad5f1a35ef81d3","Description":"A domain administrator who has the full range of capabilities within the Provisioning domain. The Provisioning Administrator can perform all possible actions for all objects within the Provisioning domain","CategoryKey":["system"],"Links":[],"RoleLevel":{"Name":"IT Role","Description":"IT Role","RoleLevel":"20"},"Name":"Provisioning Administrator"},{"Link":"\/RIS\/roles\/e004e4cbe73c3c49cbbee004e4cbe73c","DN":"cn=roleManager,cn=System,cn=Level20,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"e004e4cbe73c3c49cbbee004e4cbe73c","Description":"A delegated administrator who can perform only allowed actions for a subset of objects within the Role domain.","CategoryKey":["system"],"Links":[],"RoleLevel":{"Name":"IT Role","Description":"IT Role","RoleLevel":"20"},"Name":"Role Manager"},{"Link":"\/RIS\/roles\/9774edcf5c379a4bc0a49774edcf5c37","DN":"cn=resourceAdmin,cn=System,cn=Level20,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"9774edcf5c379a4bc0a49774edcf5c37","Description":"A domain administrator who has the full range of capabilities within the Resource domain. The Resource Administrator can perform all possible actions for all objects within the Resource domain","CategoryKey":["system"],"Links":[],"RoleLevel":{"Name":"IT Role","Description":"IT Role","RoleLevel":"20"},"Name":"Resource Administrator"},{"Link":"\/RIS\/roles\/d145078144c5914bcf8cd145078144c5","DN":"cn=reportAdmin,cn=System,cn=Level20,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"d145078144c5914bcf8cd145078144c5","Description":"A domain administrator who has the full range of capabilities within the Report domain. The Report Administrator can perform all possible actions for all objects within the Reports domain.","CategoryKey":["system"],"Links":[],"RoleLevel":{"Name":"IT Role","Description":"IT Role","RoleLevel":"20"},"Name":"Report Administrator"},{"Link":"\/RIS\/roles\/08fc0a91fc2a38403d8708fc0a91fc2a","DN":"cn=secAdmin,cn=System,cn=Level20,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"08fc0a91fc2a38403d8708fc0a91fc2a","Description":"A domain administrator who has the full range of capabilities within the Security domain. The Security Administrator can perform all possible actions for all objects within the Security domain. The Security domain allows the Security Administrator to configure access permissions for all objects in all domains within the Roles Based Provisioning Module. The Security Administrator can configure teams, and also assign domain administrators, delegated administrators, and other Security Administrators.","CategoryKey":["system"],"Links":[],"RoleLevel":{"Name":"IT Role","Description":"IT Role","RoleLevel":"20"},"Name":"Security Administrator"},{"Link":"\/RIS\/roles\/0c0bc8119ca17f4117920c0bc8119ca1","DN":"cn=provManager,cn=System,cn=Level20,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"0c0bc8119ca17f4117920c0bc8119ca1","Description":"A delegated administrator who can perform only allowed actions for a subset of objects within the Provisioning domain.","CategoryKey":["system"],"Links":[],"RoleLevel":{"Name":"IT Role","Description":"IT Role","RoleLevel":"20"},"Name":"Provisioning Manager"},{"Link":"\/RIS\/roles\/bffe62e1bba2d0403faebffe62e1bba2","DN":"cn=Pharmacist-West,cn=Level30,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"bffe62e1bba2d0403faebffe62e1bba2","Description":"Pharmacist(West Campus)","CategoryKey":["pharmacist"],"Links":[],"RoleLevel":{"Name":"Business Role","Description":"Business Role","RoleLevel":"30"},"Name":"Pharmacist(West Campus)"},{"Link":"\/RIS\/roles\/b8504a336523b34ecf89b8504a336523","DN":"cn=Pharmacist-East,cn=Level30,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"b8504a336523b34ecf89b8504a336523","Description":"Pharmacist(East Campus)","CategoryKey":["pharmacist"],"Links":[],"RoleLevel":{"Name":"Business Role","Description":"Business Role","RoleLevel":"30"},"Name":"Pharmacist(East Campus)"},{"Link":"\/RIS\/roles\/0075bf7839588d49798b0075bf783958","DN":"cn=Nurse-West,cn=Level30,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"0075bf7839588d49798b0075bf783958","Description":"Nurse(West Campus)","CategoryKey":["nurse"],"Links":[],"RoleLevel":{"Name":"Business Role","Description":"Business Role","RoleLevel":"30"},"Name":"Nurse(West Campus)"},{"Link":"\/RIS\/roles\/02ccfd9f7699ce424d8002ccfd9f7699","DN":"cn=Nurse-East,cn=Level30,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"02ccfd9f7699ce424d8002ccfd9f7699","Description":"Nurse(East Campus)","CategoryKey":["nurse"],"Links":[],"RoleLevel":{"Name":"Business Role","Description":"Business Role","RoleLevel":"30"},"Name":"Nurse(East Campus)"},{"Link":"\/RIS\/roles\/9957a06ea84e834f8f819957a06ea84e","DN":"cn=Doctor-West,cn=Level30,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"9957a06ea84e834f8f819957a06ea84e","Description":"Doctor (West Campus)","CategoryKey":["doctor"],"Links":[],"RoleLevel":{"Name":"Business Role","Description":"Business Role","RoleLevel":"30"},"Name":"Doctor (West Campus)"},{"Link":"\/RIS\/roles\/56c679d51b64a943db8156c679d51b64","DN":"cn=Doctor-East,cn=Level30,cn=RoleDefs,cn=RoleConfig,cn=AppConfig,cn=User Application Driver,cn=driverset1,o=system","GUID":"56c679d51b64a943db8156c679d51b64","Description":"Doctor (East Campus)","CategoryKey":["doctor"],"Links":[],"RoleLevel":{"Name":"Business Role","Description":"Business Role","RoleLevel":"30"},"Name":"Doctor (East Campus)"}]

Tags:

Labels:

How To-Best Practice
Comment List
Related
Recommended