com.qa.framework.library.admin.BaseAdminBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smart-ui-framework Show documentation
Show all versions of smart-ui-framework Show documentation
Support web and moblie automaton based on selenium and appium
package com.qa.framework.library.admin;
import java.util.List;
/**
* The type Base admin bean.
*/
public class BaseAdminBean {
private String name;
private List adminList;
/**
* Gets name.
*
* @return the name
*/
public String getName() {
return name;
}
/**
* Sets name.
*
* @param name the name
*/
public void setName(String name) {
this.name = name;
}
/**
* Gets admin list.
*
* @return the admin list
*/
public List getAdminList() {
return adminList;
}
/**
* Sets admin list.
*
* @param adminList the admin list
*/
public void setAdminList(List adminList) {
this.adminList = adminList;
}
}