![JAR search and dependency download from the Maven repository](/logo.png)
com.github.avarabyeu.jashing.integration.stackoverflow.model.Owner Maven / Gradle / Ivy
package com.github.avarabyeu.jashing.integration.stackoverflow.model;
/**
* @author Andrei Varabyeu
*/
public class Owner {
private long reputation;
private long userId;
private String userType;
private String profileImage;
private String displayName;
private String link;
public long getReputation() {
return reputation;
}
public void setReputation(long reputation) {
this.reputation = reputation;
}
public long getUserId() {
return userId;
}
public void setUserId(long userId) {
this.userId = userId;
}
public String getUserType() {
return userType;
}
public void setUserType(String userType) {
this.userType = userType;
}
public String getProfileImage() {
return profileImage;
}
public void setProfileImage(String profileImage) {
this.profileImage = profileImage;
}
public String getDisplayName() {
return displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public String getLink() {
return link;
}
public void setLink(String link) {
this.link = link;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy