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

com.daon.identityx.rest.model.pojo.Enrollment Maven / Gradle / Ivy

/*
* Copyright Daon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.daon.identityx.rest.model.pojo;

import java.util.Date;

import com.daon.identityx.rest.model.def.EnrollmentStateEnum;

/**
 * 
 * @author pryan
 *
 */
public class Enrollment extends RestResource {

	private Date created;
	private Date updated;
	private String type;
	private String subtype;
	private String qualifier;
	private byte[] data;
	private EnrollmentStateEnum state;
	private EnrollmentAttributes attributes;

	// Links
	private User user;
	private Tenant tenant;
	private RestCollection samples;

	public Date getCreated() {
		return created;
	}

	public void setCreated(Date created) {
		this.created = created;
	}

	public Date getUpdated() {
		return updated;
	}

	public void setUpdated(Date updated) {
		this.updated = updated;
	}

	public String getType() {
		return type;
	}

	public void setType(String type) {
		this.type = type;
	}

	public String getSubtype() {
		return subtype;
	}

	public void setSubtype(String subtype) {
		this.subtype = subtype;
	}

	public String getQualifier() {
		return qualifier;
	}

	public void setQualifier(String qualifier) {
		this.qualifier = qualifier;
	}

	public byte[] getData() {
		return data;
	}

	public void setData(byte[] data) {
		this.data = data;
	}

	public User getUser() {
		return user;
	}

	public void setUser(User user) {
		this.user = user;
	}

	public Tenant getTenant() {
		return tenant;
	}

	public void setTenant(Tenant tenant) {
		this.tenant = tenant;
	}

	public RestCollection getSamples() {
		return samples;
	}

	public void setSamples(RestCollection samples) {
		this.samples = samples;
	}

	public EnrollmentAttributes getAttributes() {
		return attributes;
	}

	public void setAttributes(EnrollmentAttributes attributes) {
		this.attributes = attributes;
	}

	public EnrollmentStateEnum getState() {
		return state;
	}

	public void setState(EnrollmentStateEnum state) {
		this.state = state;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy