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

com.di.socket.ServiceMethod Maven / Gradle / Ivy

There is a newer version: 1.9
Show newest version
package com.di.socket;

import java.io.Serializable;

/**
 * @author d
 */
public class ServiceMethod implements Serializable {
	private static final long serialVersionUID = 633150853860193282L;
	private String className;
	private String methodName;
	private String[] paramTypes;
	private Object[] paramValues;

	public String getClassName() {
		return className;
	}

	public void setClassName(String className) {
		this.className = className;
	}

	public String getMethodName() {
		return methodName;
	}

	public void setMethodName(String methodName) {
		this.methodName = methodName;
	}

	public String[] getParamTypes() {
		return paramTypes;
	}

	public void setParamTypes(String[] paramTypes) {
		this.paramTypes = paramTypes;
	}

	public Object[] getParamValues() {
		return paramValues;
	}

	public void setParamValues(Object[] paramValues) {
		this.paramValues = paramValues;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy