| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
package org.kuali.rice.kew.rule.service; |
| 18 | |
|
| 19 | |
import java.util.List; |
| 20 | |
|
| 21 | |
import org.kuali.rice.core.framework.impex.xml.XmlExporter; |
| 22 | |
import org.kuali.rice.core.framework.impex.xml.XmlLoader; |
| 23 | |
import org.kuali.rice.kew.rule.bo.RuleAttribute; |
| 24 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | |
|
| 30 | |
|
| 31 | |
|
| 32 | |
|
| 33 | |
public interface RuleAttributeService extends XmlLoader, XmlExporter { |
| 34 | |
|
| 35 | |
public void save(RuleAttribute ruleAttribute); |
| 36 | |
public void delete(String ruleAttributeId); |
| 37 | |
public List<RuleAttribute> findByRuleAttribute(RuleAttribute ruleAttribute); |
| 38 | |
public RuleAttribute findByRuleAttributeId(String ruleAttributeId); |
| 39 | |
public List<RuleAttribute> findAll(); |
| 40 | |
public RuleAttribute findByName(String name); |
| 41 | |
public RuleAttribute findByClassName(String className); |
| 42 | |
|
| 43 | |
public Object loadRuleAttributeService(RuleAttribute ruleAttribute); |
| 44 | |
|
| 45 | |
public Object loadRuleAttributeService(RuleAttribute ruleAttribute, String defaultApplicationId); |
| 46 | |
|
| 47 | |
} |