| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
package net.admin4j.vo; |
| 15 | |
|
| 16 | |
import java.util.ArrayList; |
| 17 | |
import java.util.List; |
| 18 | |
|
| 19 | |
|
| 20 | |
|
| 21 | |
|
| 22 | |
|
| 23 | |
|
| 24 | |
public class LoggerProductVO extends BaseVO { |
| 25 | |
|
| 26 | |
private static final long serialVersionUID = -919957119837616337L; |
| 27 | |
private String loggingProductName; |
| 28 | 39 | private List<LoggerVO> loggerList = new ArrayList<LoggerVO>(); |
| 29 | |
|
| 30 | 42 | public LoggerProductVO() {} |
| 31 | 18 | public LoggerProductVO(String loggingProductName, List<LoggerVO> loggerList) { |
| 32 | 18 | this.setLoggingProductName(loggingProductName); |
| 33 | 18 | this.getLoggerList().addAll(loggerList); |
| 34 | 18 | } |
| 35 | |
|
| 36 | |
public String getLoggingProductName() { |
| 37 | 18 | return loggingProductName; |
| 38 | |
} |
| 39 | |
|
| 40 | |
public void setLoggingProductName(String loggingProductName) { |
| 41 | 27 | this.loggingProductName = loggingProductName; |
| 42 | 27 | } |
| 43 | |
public List<LoggerVO> getLoggerList() { |
| 44 | 27 | return loggerList; |
| 45 | |
} |
| 46 | |
|
| 47 | |
} |