io.gravitee.management.model.NewExternalUserEntity Maven / Gradle / Ivy
/**
* Copyright (C) 2015 The Gravitee team (http://gravitee.io)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.gravitee.management.model;
import javax.validation.constraints.NotNull;
/**
* @author David BRASSELY (david.brassely at graviteesource.com)
* @author GraviteeSource Team
*/
public class NewExternalUserEntity {
/**
* The user first name
*/
private String firstname;
/**
* The user last name
*/
private String lastname;
/**
* The user name
*/
private String username;
/**
* The user email
*/
@NotNull
private String email;
/**
* The user source
*/
private String source;
/**
* The user picture
*/
private String picture;
/**
* The user source reference
*/
private String sourceId;
public String getSource() {
return source;
}
public void setSource(String source) {
this.source = source;
}
public String getSourceId() {
return sourceId;
}
public void setSourceId(String sourceId) {
this.sourceId = sourceId;
}
public String getFirstname() {
return firstname;
}
public void setFirstname(String firstname) {
this.firstname = firstname;
}
public String getLastname() {
return lastname;
}
public void setLastname(String lastname) {
this.lastname = lastname;
}
public String getPicture() {
return picture;
}
public void setPicture(String picture) {
this.picture = picture;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
@Override
public String toString() {
final StringBuilder sb = new StringBuilder("NewExternalUserEntity{");
sb.append("username='").append(firstname).append('\'');
sb.append(", source='").append(source).append('\'');
sb.append(", external_reference='").append(sourceId).append('\'');
sb.append(", firstname='").append(firstname).append('\'');
sb.append(", lastname='").append(lastname).append('\'');
sb.append(", mail='").append(email).append('\'');
sb.append('}');
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy