package com.soa.service;
/**
* 服务接口定义
*/
public interface Service {
String getName();
String execute(String request);
boolean isAvailable();
}