Program Matcher Settings
Different From Other Properties Files
"programMatcher-ctx.xml" is a context file, and has a different format from the other properties files in Self-Service. It is an XML file, although it should be straightforward to find what you want to change and change it. There are three "beans" that you may want to change:
- "studentFactory"
- "keywordSkip"
- "programMatcherConfig"
studentFactory
The "studentFactory" bean allows you to configure to use the same StudentDataLoader in u.achieve Self-Service that you have in place in u.achieve Server.
studentDataLoader
The "studentDataLoader" property references the bean customStudentDataLoader that you will want to modify to point to your DefaultStudentDataLoader class located in your StudentDataLoader JAR file that you will need to include in <selfService>\WEB-INF\lib directory.
Example:
<bean id="studentFactory" class="uachieve.selfservice.area.student.StudentFactory2"> <property name = "stuAcadrecDao" ref="uachieveapi.stuAcadrecDao"/> <property name = "stuMasterDao" ref="uachieveapi.stuMasterDao"/> <property name = "whatifCourseDao" ref="uachieveapi.whatifCourseDao"/> <property name = "studentDataLoader" ref="customStudentDataLoader"/> <property name = "studentDataMerger" ref="customStudentDataMerger"/> <property name = "studentDataMutator" ref="customStudentDataMutator"/> </bean> <bean id="customStudentDataLoader" class="uachieve.apis.custom.DefaultStudentDataLoader"/> <bean id="customStudentDataMutator" class="uachieve.apis.custom.DefaultStudentDataMutator"/> <bean id="customStudentDataMerger" class="uachieve.apis.custom.DefaultStudentDataMerger"/> |
keywordSkip
The "keywordSkip" bean contains properties relating to words that will be skipped (or "skip words") when generating group names for matched programs.
skip words
"Skip words" are the words listed in the programmatcher-ctx.xml file. The skip words property contains a list of strings that will be ignored when generating group names for matched programs in Program Matcher.
Example:
<bean id="keywordSkip" class="uachieve.programmatcher.grouping.KeywordSkip" init-method="init"> <property name="skipWords"> <list> <value>BACHELOR</value> <value>PROGRAM</value> <value>OPTION</value> <value>MINOR</value> <value>MASS</value> <value>GENERAL</value> </list> </property> </bean> |
New in 4.3.0.3 We have improved the way that Program Matcher creates groups based upon the skip keywords configuration to ensure that group titles contain no skip words.
programMatcherConfig
The "programMatcherConfig" bean contains general properties relating to Program Matcher.
npgAllKey
The "npgAllKey" property is the String that is the name of the group that contains all of the matched programs.
nGramSize
The "nGramSize" property is the Integer that is the maximum size of a group of words that make up the name of a group of matched programs.
defaultComKey
The "defaultComKey" property is the String that is the default Com Key that is used by the program requirement indexer if one of the "indexComs" do not have one of the required com values (INSTIDQ, INSTID, INSTCD, CMPRBGN, CMPREND, CRSBGN, CRSEND, DEPTBGN, and DEPTLNG) set.
NOTE: |
New in 4.3.0.3 uachieve.selfservice.audit.default.comKey determines that the Program Matcher should fallback to the default COM since the application has seven COM settings for matching. See Audit Settings.
buildIfMissing
The "buildIfMissing" property is the Boolean that will tell the indexer to run if the indexer has never run before, or if the index is older than "maxAgeInHours". It checks only on startup.
maxAgeInHours
The "maxAgeInHours" property indicates how old an index must be before the indexer builds again on startup. "buildIfMissing" must be set to true.
buildWaitInSecs
The "buildWaitInSecs" property indicates how many seconds to wait between Self-Service's startup and indexing.
ignoreCONDC
Define condition codes. When one or more of the condition code's exist on a course on student record, course is ignored in the matching process.
programMatcherTypeCodes
Define what TYPE_CODES to return. This works on top of/after DPSTATUS.
indexComs
The "indexComs" property is a list of Strings that are the Com Keys used by the program requirement indexer. The com values used are: INSTIDQ, INSTID, INSTCD, CMPRBGN, CMPREND, CRSBGN, CRSEND, DEPTBGN, and DEPTLNG.
Example:
<bean id="programMatcherConfig" class="uachieve.programmatcher.ProgramMatcherConfig"> <property name="npgAllKey" value="View all Programs"/> <property name="nGramSize" value="4"/> <property name="defaultComKey" value="${uachieve.selfservice.audit.default.comKey}"/> <property name="buildIfMissing" value="false"/> <property name="maxAgeInHours" value="24"/> <property name="buildWaitInSecs" value = "15"/> <property name="indexComs"> <list> <value>SSIKE</value> <value>SSDEB</value> <value>NOREP</value> <value>KSGMH</value> </list> </property> </bean> |