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

com.foxinmy.weixin4j.xml.ListWrapper Maven / Gradle / Ivy

There is a newer version: 1.10.2
Show newest version
package com.foxinmy.weixin4j.xml;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

import javax.xml.bind.annotation.XmlAnyElement;

public class ListWrapper implements Serializable {

	private static final long serialVersionUID = 7550802632983954221L;

	private List items;

	public ListWrapper() {
		items = new ArrayList();
	}

	@XmlAnyElement(lax = true)
	public List getItems() {
		return items;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy