org.resthub.web.log.Logs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resthub-web-server Show documentation
Show all versions of resthub-web-server Show documentation
RESThub support for REST webservices based on Spring MVC
package org.resthub.web.log;
import java.util.ArrayList;
import java.util.Collection;
public class Logs extends ArrayList {
public Logs(int initialCapacity) {
super(initialCapacity);
}
public Logs() {
}
public Logs(Collection extends Log> c) {
super(c);
}
}