All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.netflix.karyon.admin.rest.ValueOfStringResolver Maven / Gradle / Ivy

package com.netflix.karyon.admin.rest;

import java.lang.reflect.Method;

public class ValueOfStringResolver implements StringResolver {
    private Method method;

    public ValueOfStringResolver(Method method) {
        this.method = method;
    }
    
    @Override
    public Object convert(String value) throws Exception {
        return method.invoke(null, value);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy