| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.kuali.student.common.ui.client.service; |
| 17 | |
|
| 18 | |
import java.util.List; |
| 19 | |
import java.util.Map; |
| 20 | |
|
| 21 | |
import org.kuali.student.common.assembly.data.Data; |
| 22 | |
import org.kuali.student.common.assembly.data.Metadata; |
| 23 | |
import org.kuali.student.common.ui.client.service.exceptions.OperationFailedException; |
| 24 | |
import org.kuali.student.common.ui.client.service.exceptions.VersionMismatchClientException; |
| 25 | |
import org.kuali.student.common.validation.dto.ValidationResultInfo; |
| 26 | |
|
| 27 | |
public interface AssemblerRpcService { |
| 28 | |
|
| 29 | |
public Data getData(String dataId) throws OperationFailedException; |
| 30 | |
|
| 31 | |
public Metadata getMetadata(String id, Map<String,String> idAttributes) throws OperationFailedException; |
| 32 | |
|
| 33 | |
public DataSaveResult saveData(Data data) throws OperationFailedException, VersionMismatchClientException; |
| 34 | |
|
| 35 | |
public List<ValidationResultInfo> validate(Data data) throws OperationFailedException; |
| 36 | |
|
| 37 | |
} |