Class SubjectDetails
- java.lang.Object
-
- com.jfrog.bintray.client.api.details.SubjectDetails
-
public class SubjectDetails extends Object
This class is used to serialize and deserialize the needed json to pass to or receive from Bintray when performing actions on a subject NOTE: when serializing this class use getObjectMapper to obtain a suitable mapper for this class
-
-
Constructor Summary
Constructors Constructor Description SubjectDetails()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Integer
getFollowersCount()
String
getFullName()
String
getGravatarId()
String
getName()
static com.fasterxml.jackson.databind.ObjectMapper
getObjectMapper()
List<String>
getOrganizations()
Long
getQuotaUsedBytes()
org.joda.time.DateTime
getRegistered()
List<String>
getRepos()
void
setFollowersCount(Integer followersCount)
void
setFullName(String fullName)
void
setGravatarId(String gravatarId)
void
setName(String name)
void
setOrganizations(List<String> organizations)
void
setQuotaUsedBytes(Long quotaUsedBytes)
void
setRegistered(org.joda.time.DateTime registered)
void
setRepos(List<String> repos)
-
-
-
Method Detail
-
getObjectMapper
public static com.fasterxml.jackson.databind.ObjectMapper getObjectMapper()
-
getName
public String getName()
-
setName
public void setName(String name)
-
getFullName
public String getFullName()
-
setFullName
public void setFullName(String fullName)
-
getGravatarId
public String getGravatarId()
-
setGravatarId
public void setGravatarId(String gravatarId)
-
getFollowersCount
public Integer getFollowersCount()
-
setFollowersCount
public void setFollowersCount(Integer followersCount)
-
getRegistered
public org.joda.time.DateTime getRegistered()
-
setRegistered
public void setRegistered(org.joda.time.DateTime registered)
-
getQuotaUsedBytes
public Long getQuotaUsedBytes()
-
setQuotaUsedBytes
public void setQuotaUsedBytes(Long quotaUsedBytes)
-
-