Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.cxf.jaxrs.model;
import java.util.Map;
import org.apache.cxf.Bus;
import org.apache.cxf.jaxrs.impl.tl.ThreadLocalProxy;
public class ProviderInfo extends AbstractResourceInfo {
private T provider;
private boolean custom;
private boolean busGlobal;
public ProviderInfo(T provider, Bus bus, boolean custom) {
this(provider, bus, true, custom);
}
public ProviderInfo(T provider, Bus bus, boolean checkContexts, boolean custom) {
this(provider.getClass(), provider.getClass(), provider, bus, checkContexts, custom);
}
public ProviderInfo(Class> resourceClass, Class> serviceClass, T provider, Bus bus, boolean custom) {
this(resourceClass, serviceClass, provider, bus, true, custom);
}
public ProviderInfo(Class> resourceClass, Class> serviceClass, T provider, Bus bus,
boolean checkContexts, boolean custom) {
this(resourceClass, serviceClass, provider, null, bus, checkContexts, custom);
}
public ProviderInfo(T provider,
Map, ThreadLocalProxy>> constructorProxies,
Bus bus,
boolean custom) {
this(provider, constructorProxies, bus, true, custom);
}
public ProviderInfo(Class> resourceClass,
Class> serviceClass,
T provider,
Map, ThreadLocalProxy>> constructorProxies,
Bus bus,
boolean checkContexts,
boolean custom) {
super(resourceClass, serviceClass, true, checkContexts, constructorProxies, bus, provider);
this.provider = provider;
this.custom = custom;
}
public ProviderInfo(T provider,
Map, ThreadLocalProxy>> constructorProxies,
Bus bus,
boolean checkContexts,
boolean custom) {
this(provider.getClass(), provider.getClass(), provider, constructorProxies, bus, checkContexts, custom);
}
@Override
public boolean isSingleton() {
return true;
}
public T getProvider() {
return provider;
}
public boolean equals(Object obj) {
if (!(obj instanceof ProviderInfo)) {
return false;
}
return provider.equals(((ProviderInfo>)obj).getProvider());
}
public int hashCode() {
return provider.hashCode();
}
public boolean isCustom() {
return custom;
}
public boolean isBusGlobal() {
return busGlobal;
}
public void setBusGlobal(boolean busGlobal) {
this.busGlobal = busGlobal;
}
}