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

com.jd.httpservice.agent.PathParamDefinition Maven / Gradle / Ivy

There is a newer version: 2.1.4.RELEASE
Show newest version
package com.jd.httpservice.agent;

import com.jd.httpservice.StringConverter;

class PathParamDefinition {
	
	private String name;
	
	private StringConverter converter;

	public String getName() {
		return name;
	}

	public StringConverter getConverter() {
		return converter;
	}

	public PathParamDefinition(String name, StringConverter converter) {
		this.name = name;
		this.converter = converter;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy