
net.anthavio.httl.jaxrs.HttlConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hatatitla Show documentation
Show all versions of hatatitla Show documentation
Compact but tweakable REST client library you have been dreaming of
The newest version!
package net.anthavio.httl.jaxrs;
import java.util.Collection;
import java.util.Map;
import java.util.Set;
import javax.ws.rs.RuntimeType;
import javax.ws.rs.core.Configurable;
import javax.ws.rs.core.Configuration;
import javax.ws.rs.core.Feature;
/**
*
* @author vanek
*
*/
public class HttlConfig implements Configurable, Configuration {
@Override
public RuntimeType getRuntimeType() {
return null;
}
@Override
public Map getProperties() {
return null;
}
@Override
public Object getProperty(String name) {
return null;
}
@Override
public Collection getPropertyNames() {
return null;
}
@Override
public boolean isEnabled(Feature feature) {
return false;
}
@Override
public boolean isEnabled(Class extends Feature> featureClass) {
return false;
}
@Override
public boolean isRegistered(Object component) {
return false;
}
@Override
public boolean isRegistered(Class> componentClass) {
return false;
}
@Override
public Map, Integer> getContracts(Class> componentClass) {
return null;
}
@Override
public Set> getClasses() {
return null;
}
@Override
public Set
© 2015 - 2025 Weber Informatics LLC | Privacy Policy