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

com.wizzdi.messaging.request.ChatCreate Maven / Gradle / Ivy

There is a newer version: 8.0.3
Show newest version
package com.wizzdi.messaging.request;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.wizzdi.flexicore.security.request.BasicCreate;
import com.wizzdi.messaging.model.ChatUser;

public class ChatCreate extends BasicCreate {

	private String ownerId;
	@JsonIgnore
	private ChatUser owner;

	public String getOwnerId() {
		return ownerId;
	}

	public  T setOwnerId(String ownerId) {
		this.ownerId = ownerId;
		return (T) this;
	}

	@JsonIgnore
	public ChatUser getOwner() {
		return owner;
	}

	public  T setOwner(ChatUser owner) {
		this.owner = owner;
		return (T) this;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy