com.hadoopz.cloud.JCloud.SDK.beans.DeveloperContext Maven / Gradle / Ivy
The newest version!
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.hadoopz.cloud.JCloud.SDK.beans;
/**
*
* @author jw362j
*/
public class DeveloperContext {
private long developerRecordId;
private String developerId;
private String password;
private String serverHostURL;
public DeveloperContext(String developerId, String password, String serverHostURL) {
this.developerId = developerId;
this.password = password;
this.serverHostURL = serverHostURL;
}
public String getDeveloperId() {
return developerId;
}
public void setDeveloperId(String developerId) {
this.developerId = developerId;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getServerHostURL() {
return serverHostURL;
}
public void setServerHostURL(String serverHostURL) {
this.serverHostURL = serverHostURL;
}
public long getDeveloperRecordId() {
return developerRecordId;
}
public void setDeveloperRecordId(long developerRecordId) {
this.developerRecordId = developerRecordId;
}
@Override
public String toString() {
return "DeveloperContext{" + "developerRecordId=" + developerRecordId + ", developerId=" + developerId + ", password=" + password + ", serverHostURL=" + serverHostURL + '}';
}
}