1 package org.kuali.coeus.propdev.api.s2s;
2
3 import org.kuali.coeus.sys.api.model.Identifiable;
4
5 public interface S2sErrorContract extends Identifiable {
6
7 String getKey();
8
9 String getMessage();
10
11 String getLink();
12 }