| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.kuali.rice.krms.impl.ui; |
| 17 | |
|
| 18 | |
import org.kuali.rice.krad.service.BusinessObjectService; |
| 19 | |
import org.kuali.rice.krad.service.KRADServiceLocator; |
| 20 | |
import org.kuali.rice.krms.api.repository.proposition.PropositionParameterType; |
| 21 | |
import org.kuali.rice.krms.api.repository.proposition.PropositionType; |
| 22 | |
import org.kuali.rice.krms.impl.repository.PropositionBo; |
| 23 | |
import org.kuali.rice.krms.impl.repository.PropositionParameterBo; |
| 24 | |
import org.kuali.rice.krms.impl.repository.TermBo; |
| 25 | |
|
| 26 | |
import java.io.Serializable; |
| 27 | |
import java.util.List; |
| 28 | |
|
| 29 | |
|
| 30 | |
|
| 31 | |
|
| 32 | |
|
| 33 | |
|
| 34 | |
|
| 35 | |
public class SimplePropositionNode extends RuleTreeNode { |
| 36 | |
private static final long serialVersionUID = -629088492909384804L; |
| 37 | |
public static final String NODE_TYPE = "ruleTreeNode simplePropositionNode"; |
| 38 | |
protected String parameterDisplayString; |
| 39 | |
|
| 40 | |
public SimplePropositionNode(PropositionBo proposition){ |
| 41 | 0 | super(proposition); |
| 42 | 0 | setupParameterDisplayString(); |
| 43 | 0 | } |
| 44 | |
|
| 45 | |
private void setupParameterDisplayString(){ |
| 46 | 0 | if (proposition != null && proposition.getPropositionTypeCode().equalsIgnoreCase(PropositionType.SIMPLE.getCode())){ |
| 47 | |
|
| 48 | |
|
| 49 | 0 | List<PropositionParameterBo> parameters = proposition.getParameters(); |
| 50 | 0 | if (parameters != null && parameters.size() == 3){ |
| 51 | 0 | setParameterDisplayString(getParamValue(parameters.get(0)) |
| 52 | |
+ " " + getParamValue(parameters.get(2)) |
| 53 | |
+ " " + getParamValue(parameters.get(1))); |
| 54 | |
} else { |
| 55 | |
|
| 56 | |
} |
| 57 | |
} |
| 58 | 0 | } |
| 59 | |
|
| 60 | |
private String getParamValue(PropositionParameterBo prop){ |
| 61 | 0 | if (PropositionParameterType.TERM.getCode().equalsIgnoreCase(prop.getParameterType())){ |
| 62 | |
|
| 63 | 0 | String termId = prop.getValue(); |
| 64 | 0 | TermBo term = getBoService().findBySinglePrimaryKey(TermBo.class,termId); |
| 65 | 0 | if (term!=null){ |
| 66 | 0 | return term.getSpecification().getName(); |
| 67 | |
} |
| 68 | 0 | return ""; |
| 69 | |
} else { |
| 70 | 0 | return prop.getValue(); |
| 71 | |
} |
| 72 | |
} |
| 73 | |
|
| 74 | |
|
| 75 | |
|
| 76 | |
public String getParameterDisplayString() { |
| 77 | 0 | return this.parameterDisplayString; |
| 78 | |
} |
| 79 | |
|
| 80 | |
|
| 81 | |
|
| 82 | |
|
| 83 | |
public void setParameterDisplayString(String parameterDisplayString) { |
| 84 | 0 | this.parameterDisplayString = parameterDisplayString; |
| 85 | 0 | } |
| 86 | |
|
| 87 | |
public BusinessObjectService getBoService() { |
| 88 | 0 | return KRADServiceLocator.getBusinessObjectService(); |
| 89 | |
} |
| 90 | |
|
| 91 | |
} |