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

fm.pattern.tokamak.sdk.model.ScopesRepresentation Maven / Gradle / Ivy

The newest version!
package fm.pattern.tokamak.sdk.model;

import java.util.ArrayList;
import java.util.List;

public class ScopesRepresentation {

	private List scopes = new ArrayList();

	public ScopesRepresentation() {

	}

	public ScopesRepresentation(List scopes) {
		this.scopes = scopes;
	}

	public List getScopes() {
		return scopes;
	}

	public void setScopes(List scopes) {
		this.scopes = scopes;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy