b
Size: a a a
Dm
D
public final class XoServiceCollection implements ServicesCollection {
private final Map<Class<?>, ? super Object> services;
public XoServiceCollection() {
services = new HashMap<>();
}
@Override
public <InterfaceType, ImplementationType extends InterfaceType> void
addService(Class<InterfaceType> interfaceType, ImplementationType implementationType) {
services.put(interfaceType, implementationType);
}
@Override
public <InterfaceType> InterfaceType getService(Class<InterfaceType> interfaceType) {
return null;
}
}Dm
Dm
PC
PC
ch
AA
PC
AA
S
I
@Type(type = "org.hibernate.type.BinaryType")А
А
А
А