list getlistsetting ( string <variable_name>)
getlistsetting returns a list of the settings in the pmpolicy server host settings file. If the named config is not present in the policy server host setting file, it returns an empty list.
# get the master list setting
submitMasterList(getlistsetting("submitmasters"));
int getnumericsetting ( string <variable_name>)
getnumericsetting returns the integer of the numeric setting in the pmpolicy server host settings file. If the named config is not present in the policy server host setting file, it returns zero.
# get the value for master delay time
delayTime(getnumericsetting("masterdelay"));
string getstringsetting ( string variable_name)
getstringsetting returns the value of a string setting in the pmpolicy server host settings file. If the named config is not present in the policy server host setting file, it returns an empty string.
if (getstringsetting("eventLogQueue") == false ) { reject; }
boolean getyesnosetting ( string <variable_name>)
getyesnosetting returns the value of a yes/no setting in the current policy server host settings file. If the named config is not present in the policy server host setting file, it returns false.
if (getyesnosetting("sysLogQueue") == false ) { reject; }
© ALL RIGHTS RESERVED. 이용 약관 개인정보 보호정책 Cookie Preference Center