package org.killbill.billing.catalog.dao;
import java.lang.annotation.Annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import java.util.Collection;
import org.killbill.billing.catalog.dao.PhaseUsageKeysCollectionBinder.PhaseUsageKeysCollectionBinderFactory;
import org.skife.jdbi.v2.SQLStatement;
import org.skife.jdbi.v2.sqlobject.Binder;
import org.skife.jdbi.v2.sqlobject.BinderFactory;
import org.skife.jdbi.v2.sqlobject.BindingAnnotation;
@BindingAnnotation(PhaseUsageKeysCollectionBinderFactory.class)
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.PARAMETER})
public @interface PhaseUsageKeysCollectionBinder {
public static class PhaseUsageKeysCollectionBinderFactory implements BinderFactory {
@Override
public Binder build(Annotation annotation) {
return new Binder<PhaseUsageKeysCollectionBinder, Collection<String>>() {
@Override
public void bind(SQLStatement<?> query, PhaseUsageKeysCollectionBinder bind, Collection<String> keys) {
query.define("keys", keys);
int idx = 0;
for (String state : keys) {
query.bind("key_" + idx, state);
idx++;
}
}
};
}
}
}