/* ================================================================== * Created [2009-4-27 下午11:32:55] by Jon.King * ================================================================== * TSS * ================================================================== * mailTo:jinpujun@hotmail.com * Copyright (c) Jon.King, 2009-2012 * ================================================================== */ package com.jinhe.tss.core.sso.appserver; /** * <p> * IAppServerStorer.java * </p> * * @see FileAppServerStorer * @see com.jinhe.tss.component.param.extend.ParamAppServerStorer */ public interface IAppServerStorer { /** * 根据应用服务器编号获取应用服务器对象 * * @param code * 应用服务器代码 * @return AppServer 应用服务器对象 */ AppServer getAppServer(String code); }