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

com.blazebit.weblink.rest.model.OwnerRepresentation Maven / Gradle / Ivy

package com.blazebit.weblink.rest.model;

import java.io.Serializable;

public class OwnerRepresentation implements Serializable {

	private static final long serialVersionUID = 1L;
	
	private String key;
	private String displayName;

	public OwnerRepresentation() {
	}

	public OwnerRepresentation(String key, String displayName) {
		this.key = key;
		this.displayName = displayName;
	}

	public String getKey() {
		return key;
	}

	public void setKey(String key) {
		this.key = key;
	}

	public String getDisplayName() {
		return displayName;
	}

	public void setDisplayName(String displayName) {
		this.displayName = displayName;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy