com.backendless.rt.users.UserInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-common Show documentation
Show all versions of java-sdk-common Show documentation
Provides access to Backendless API
The newest version!
package com.backendless.rt.users;
public class UserInfo
{
private String connectionId;
private String userId;
public String getConnectionId()
{
return connectionId;
}
public UserInfo setConnectionId( String connectionId )
{
this.connectionId = connectionId;
return this;
}
public String getUserId()
{
return userId;
}
public UserInfo setUserId( String userId )
{
this.userId = userId;
return this;
}
@Override
public String toString()
{
return "UserInfo{" + "connectionId='" + connectionId + '\'' + ", userId='" + userId + '\'' + '}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy