org.kuali.student.r2.lum.lrc.service.impl
Class LrcServiceBusinessLogicImpl

java.lang.Object
  extended by org.kuali.student.r2.lum.lrc.service.impl.LrcServiceBusinessLogicImpl
All Implemented Interfaces:
LrcServiceBusinessLogic

public class LrcServiceBusinessLogicImpl
extends Object
implements LrcServiceBusinessLogic

Author:
nwright

Constructor Summary
LrcServiceBusinessLogicImpl()
           
 
Method Summary
protected  String calcCreditValueKey(String creditValue, String scaleKey, ContextInfo contextInfo)
          Calculate the fixed credit value key to use that matches the specified value
protected  String calcFixedCreditRvgKey(String creditValue, String scaleKey, ContextInfo contextInfo)
          Calculate the result values group key for the fixed credit value
protected  String calcFixedCreditRvgName(String value, String scaleKey, ContextInfo contextInfo)
          Calculate the result values group key for the range credit value
protected  String calcMultipleCreditRvgKey(List<String> values, String scaleKey, ContextInfo contextInfo)
          Calculate the result values group key for the range credit value
protected  String calcMultipleCreditRvgName(List<String> values, String scaleKey, ContextInfo contextInfo)
          Calculate the result values group key for the range credit value
protected  List<String> calcMultipleCreditValueKey(List<String> creditValues, String scaleKey, ContextInfo contextInfo)
          Calculate the multiple credit value keys to use that matches the specified value
protected  String calcRangeCreditRvgKey(String creditValueMin, String creditValueMax, String creditValueIncrement, String scaleKey, ContextInfo contextInfo)
          Calculate the result values group key for the range credit value
protected  String calcRangeCreditRvgName(String creditValueMin, String creditValueMax, String creditValueIncrement, String scaleKey, ContextInfo contextInfo)
          Calculate the result values group key for the range credit value
protected  String calcResultValueKey(String resultValue, String scaleKey, ContextInfo contextInfo)
          Calculate key to use for the result value
 ResultValuesGroupInfo getCreateFixedCreditResultValuesGroup(String creditValue, String scaleKey, ContextInfo contextInfo)
           
 ResultValuesGroupInfo getCreateMultipleCreditResultValuesGroup(List<String> creditValues, String scaleKey, ContextInfo contextInfo)
           
 ResultValuesGroupInfo getCreateRangeCreditResultValuesGroup(String creditValueMin, String creditValueMax, String creditValueIncrement, String scaleKey, ContextInfo contextInfo)
           
 ResultValueInfo getCreateResultValueForScale(String resultValue, String scaleKey, ContextInfo contextInfo)
           
 LRCService getLrcService()
           
 void setLrcService(LRCService lrcService)
           
protected static boolean stringNumberEquals(String value1, String value2)
          This method converts the two input strings into floats and returns true if they're equal, false otherwise.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LrcServiceBusinessLogicImpl

public LrcServiceBusinessLogicImpl()
Method Detail

getLrcService

public LRCService getLrcService()

setLrcService

public void setLrcService(LRCService lrcService)

calcFixedCreditRvgKey

protected String calcFixedCreditRvgKey(String creditValue,
                                       String scaleKey,
                                       ContextInfo contextInfo)
                                throws InvalidParameterException
Calculate the result values group key for the fixed credit value

Parameters:
creditValue -
scaleKey -
Returns:
Throws:
InvalidParameterException

calcFixedCreditRvgName

protected String calcFixedCreditRvgName(String value,
                                        String scaleKey,
                                        ContextInfo contextInfo)
                                 throws InvalidParameterException
Calculate the result values group key for the range credit value

Parameters:
value -
scaleKey -
Returns:
Throws:
InvalidParameterException

calcCreditValueKey

protected String calcCreditValueKey(String creditValue,
                                    String scaleKey,
                                    ContextInfo contextInfo)
                             throws InvalidParameterException
Calculate the fixed credit value key to use that matches the specified value

Parameters:
creditValue -
scaleKey -
Returns:
Throws:
InvalidParameterException

getCreateFixedCreditResultValuesGroup

public ResultValuesGroupInfo getCreateFixedCreditResultValuesGroup(String creditValue,
                                                                   String scaleKey,
                                                                   ContextInfo contextInfo)
                                                            throws InvalidParameterException,
                                                                   MissingParameterException,
                                                                   OperationFailedException,
                                                                   PermissionDeniedException
Specified by:
getCreateFixedCreditResultValuesGroup in interface LrcServiceBusinessLogic
Throws:
InvalidParameterException
MissingParameterException
OperationFailedException
PermissionDeniedException

calcRangeCreditRvgKey

protected String calcRangeCreditRvgKey(String creditValueMin,
                                       String creditValueMax,
                                       String creditValueIncrement,
                                       String scaleKey,
                                       ContextInfo contextInfo)
                                throws InvalidParameterException
Calculate the result values group key for the range credit value

Parameters:
creditValueMin -
creditValueMax -
creditValueIncrement -
scaleKey -
contextInfo -
Returns:
Throws:
InvalidParameterException

calcRangeCreditRvgName

protected String calcRangeCreditRvgName(String creditValueMin,
                                        String creditValueMax,
                                        String creditValueIncrement,
                                        String scaleKey,
                                        ContextInfo contextInfo)
                                 throws InvalidParameterException
Calculate the result values group key for the range credit value

Parameters:
creditValueMin -
creditValueMax -
creditValueIncrement -
scaleKey -
contextInfo -
Returns:
Throws:
InvalidParameterException

getCreateRangeCreditResultValuesGroup

public ResultValuesGroupInfo getCreateRangeCreditResultValuesGroup(String creditValueMin,
                                                                   String creditValueMax,
                                                                   String creditValueIncrement,
                                                                   String scaleKey,
                                                                   ContextInfo contextInfo)
                                                            throws InvalidParameterException,
                                                                   MissingParameterException,
                                                                   OperationFailedException,
                                                                   PermissionDeniedException
Specified by:
getCreateRangeCreditResultValuesGroup in interface LrcServiceBusinessLogic
Throws:
InvalidParameterException
MissingParameterException
OperationFailedException
PermissionDeniedException

stringNumberEquals

protected static boolean stringNumberEquals(String value1,
                                            String value2)
This method converts the two input strings into floats and returns true if they're equal, false otherwise. This is needed because getCreateRangeCreditResultValuesGroup was throwing errors saying strings 1.0 != 1.

Parameters:
value1 -
value2 -
Returns:

calcMultipleCreditRvgKey

protected String calcMultipleCreditRvgKey(List<String> values,
                                          String scaleKey,
                                          ContextInfo contextInfo)
                                   throws InvalidParameterException
Calculate the result values group key for the range credit value

Parameters:
values -
scaleKey -
contextInfo -
Returns:
Throws:
InvalidParameterException

calcMultipleCreditRvgName

protected String calcMultipleCreditRvgName(List<String> values,
                                           String scaleKey,
                                           ContextInfo contextInfo)
                                    throws InvalidParameterException
Calculate the result values group key for the range credit value

Parameters:
values -
scaleKey -
contextInfo -
Returns:
Throws:
InvalidParameterException

calcMultipleCreditValueKey

protected List<String> calcMultipleCreditValueKey(List<String> creditValues,
                                                  String scaleKey,
                                                  ContextInfo contextInfo)
                                           throws InvalidParameterException
Calculate the multiple credit value keys to use that matches the specified value

Parameters:
creditValues -
scaleKey -
Returns:
Throws:
InvalidParameterException

getCreateMultipleCreditResultValuesGroup

public ResultValuesGroupInfo getCreateMultipleCreditResultValuesGroup(List<String> creditValues,
                                                                      String scaleKey,
                                                                      ContextInfo contextInfo)
                                                               throws InvalidParameterException,
                                                                      MissingParameterException,
                                                                      OperationFailedException,
                                                                      PermissionDeniedException
Specified by:
getCreateMultipleCreditResultValuesGroup in interface LrcServiceBusinessLogic
Throws:
InvalidParameterException
MissingParameterException
OperationFailedException
PermissionDeniedException

calcResultValueKey

protected String calcResultValueKey(String resultValue,
                                    String scaleKey,
                                    ContextInfo contextInfo)
Calculate key to use for the result value

Parameters:
resultValue - the value of the result
scaleKey - key used for getting the proper scale.
contextInfo - context
Returns:
the calculated value

getCreateResultValueForScale

public ResultValueInfo getCreateResultValueForScale(String resultValue,
                                                    String scaleKey,
                                                    ContextInfo contextInfo)
                                             throws InvalidParameterException,
                                                    MissingParameterException,
                                                    OperationFailedException,
                                                    PermissionDeniedException
Specified by:
getCreateResultValueForScale in interface LrcServiceBusinessLogic
Throws:
InvalidParameterException
MissingParameterException
OperationFailedException
PermissionDeniedException


Copyright © 2004-2013 The Kuali Foundation. All Rights Reserved.