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

com.webapp.utils.thrift.ThriftMethod Maven / Gradle / Ivy

The newest version!
/**
 * 
 */
package com.webapp.utils.thrift;

import java.util.List;

public class ThriftMethod {
	
	private Generic returnGenericType;
	
	private String name;
	
	private List methodArgs;
	
	private List> relationClasses;

	/**
	 * @return the name
	 */
	public String getName() {
		return name;
	}

	/**
	 * @param name the name to set
	 */
	public void setName(String name) {
		this.name = name;
	}

	/**
	 * @return the args
	 */
	public List getMethodArgs() {
		return methodArgs;
	}

	/**
	 * @param args the args to set
	 */
	public void setMethodArgs(List args) {
		this.methodArgs = args;
	}

	/**
	 * @return the relationClasses
	 */
	public List> getRelationClasses() {
		return relationClasses;
	}

	/**
	 * @param relationClasses the relationClasses to set
	 */
	public void setRelationClasses(List> relationClasses) {
		this.relationClasses = relationClasses;
	}

	/**
	 * @return the returnGeneric
	 */
	public Generic getReturnGenericType() {
		return returnGenericType;
	}

	/**
	 * @param returnGeneric the returnGeneric to set
	 */
	public void setReturnGenericType(Generic returnGeneric) {
		this.returnGenericType = returnGeneric;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy