scopepolicy.java

来自「Xfire文件 用于开发web service 的一个开源工具 很好用的」· Java 代码 · 共 27 行

JAVA
27
字号
package org.codehaus.xfire.service.invoker;

import org.codehaus.xfire.MessageContext;
import org.codehaus.xfire.util.factory.Factory;

/**
 * This interface represents a scoping policy that caches servant instances
 * created by a Factory.
 * <p>
 * 
 * @author Ben Yu Feb 6, 2006 12:47:38 PM
 */
public interface ScopePolicy
{
    /**
     * Apply scope policy to a Factory object so that the instance created by
     * the Factory object can be cached properly.
     * 
     * @param f
     *            the Factory object.
     * @param ctxt
     *            the MessageContext object.
     * @return the Factory object that honors the scope.
     */
    Factory applyScope(Factory f, MessageContext ctxt);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?