本文整理汇总了Java中com.sun.xml.internal.ws.api.Component类的典型用法代码示例。如果您正苦于以下问题:Java Component类的具体用法?Java Component怎么用?Java Component使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Component类属于com.sun.xml.internal.ws.api包,在下文中一共展示了Component类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: getContainer
import com.sun.xml.internal.ws.api.Component; //导入依赖的package包/类
/**
* Endpoints within a EndpointContext get the same container.
*/
private Container getContainer() {
if (endpointContext != null) {
if (endpointContext instanceof Component) {
Container c = ((Component) endpointContext).getSPI(Container.class);
if (c != null)
return c;
}
for(Endpoint e : endpointContext.getEndpoints()) {
if (e.isPublished() && e != this) {
return ((EndpointImpl)e).container;
}
}
}
return new ServerContainer();
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:20,代码来源:EndpointImpl.java
示例2: getSPI
import com.sun.xml.internal.ws.api.Component; //导入依赖的package包/类
@Override
public <S> S getSPI(Class<S> spiType) {
for (Component c : components) {
S spi = c.getSPI(spiType);
if (spi != null) {
return spi;
}
}
return null;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:11,代码来源:Fiber.java
示例3: getEndpointComponent
import com.sun.xml.internal.ws.api.Component; //导入依赖的package包/类
protected Component getEndpointComponent() {
return new Component() {
public <S> S getSPI(Class<S> spiType) {
if (spiType.isAssignableFrom(Reconfigurable.class)) {
return spiType.cast(Adapter.this);
}
return null;
}
};
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:11,代码来源:Adapter.java
示例4: getSPI
import com.sun.xml.internal.ws.api.Component; //导入依赖的package包/类
public <S> S getSPI(Class<S> spiType) {
if (components == null) return null;
for (Component c : components) {
S s = c.getSPI(spiType);
if (s != null)
return s;
}
return null;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:10,代码来源:Container.java
示例5: getSPI
import com.sun.xml.internal.ws.api.Component; //导入依赖的package包/类
public @Nullable <S> S getSPI(@NotNull Class<S> spiType) {
Set<Component> componentRegistry = getComponents();
if (componentRegistry != null) {
for (Component c : componentRegistry) {
S s = c.getSPI(spiType);
if (s != null)
return s;
}
}
return getContainer().getSPI(spiType);
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:12,代码来源:WSEndpoint.java
示例6: getSPI
import com.sun.xml.internal.ws.api.Component; //导入依赖的package包/类
@Override
public <S> S getSPI(Class<S> spiType) {
for (Component c : components) {
S s = c.getSPI(spiType);
if (s != null) {
return s;
}
}
return owner.getSPI(spiType);
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:11,代码来源:Stub.java
示例7: getComponentRegistry
import com.sun.xml.internal.ws.api.Component; //导入依赖的package包/类
public Set<EndpointComponent> getComponentRegistry() {
Set<EndpointComponent> sec = new EndpointComponentSet();
for (Component c : componentRegistry) {
sec.add(c instanceof EndpointComponentWrapper ?
((EndpointComponentWrapper) c).component :
new ComponentWrapper(c));
}
return sec;
}
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:10,代码来源:WSEndpointImpl.java
注:本文中的com.sun.xml.internal.ws.api.Component类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论