| 1 | |
package org.kuali.rice.ksb.api.registry; |
| 2 | |
|
| 3 | |
import org.kuali.rice.core.api.mo.common.Versioned; |
| 4 | |
|
| 5 | |
import javax.xml.namespace.QName; |
| 6 | |
|
| 7 | |
public interface ServiceHeaderContract extends Versioned { |
| 8 | |
|
| 9 | |
public Long getServiceEndpointId(); |
| 10 | |
|
| 11 | |
public QName getServiceName(); |
| 12 | |
|
| 13 | |
public String getEndpointUrl(); |
| 14 | |
|
| 15 | |
public String getEndpointAlternateUrl(); |
| 16 | |
|
| 17 | |
public String getApplicationNamespace(); |
| 18 | |
|
| 19 | |
public String getServerIpAddress(); |
| 20 | |
|
| 21 | |
public String getType(); |
| 22 | |
|
| 23 | |
public String getServiceVersion(); |
| 24 | |
|
| 25 | |
public ServiceEndpointStatus getStatus(); |
| 26 | |
|
| 27 | |
public String getChecksum(); |
| 28 | |
|
| 29 | |
} |