com.qa.framework.bean.Function Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smart-api-framework Show documentation
Show all versions of smart-api-framework Show documentation
Support web service api automaton test based on testng and httpclient
package com.qa.framework.bean;
/**
* Created by apple on 15/11/23.
*/
public class Function {
private String clsName;
private String methodName;
/**
* Gets cls name.
*
* @return the cls name
*/
public String getClsName() {
return clsName;
}
/**
* Sets cls name.
*
* @param clsName the cls name
*/
public void setClsName(String clsName) {
this.clsName = clsName;
}
/**
* Gets method name.
*
* @return the method name
*/
public String getMethodName() {
return methodName;
}
/**
* Sets method name.
*
* @param methodName the method name
*/
public void setMethodName(String methodName) {
this.methodName = methodName;
}
}