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

com.bagri.rest.service.CollectionParams Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package com.bagri.rest.service;

import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
public class CollectionParams {

	public String[] collections;
	public boolean add;

	public CollectionParams() {
		// de-ser
	}
	
	public CollectionParams(String[] collections, boolean add) {
		this.collections = collections;
		this.add = add;
	}
	
	@Override
	public String toString() {
		return "CollectionParams [collections=" + collections + "; add=" + add + "]"; 
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy