/** * Alipay.com Inc. * Copyright (c) 2004-2012 All Rights Reserved. */ package com.alipay.zdal.datasource; /** * * @author sicong.shou * @version $Id: Service.java, v 0.1 2012-11-23 ����11:04:01 sicong.shou Exp $ */ public interface Service { /** * * @throws Exception */ public void startService() throws Exception; /** * * @throws Exception */ public void stopService() throws Exception; }