blob: 1ab500c3f3e83533b006697327500e31a3981208 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.openmeetings.db.entity.server;
import static org.apache.openmeetings.util.OpenmeetingsVariables.webAppRootKey;
import java.io.StringReader;
import java.io.StringWriter;
import org.red5.logging.Red5LoggerFactory;
import org.simpleframework.xml.Element;
import org.simpleframework.xml.Root;
import org.simpleframework.xml.Serializer;
import org.simpleframework.xml.core.Persister;
import org.slf4j.Logger;
/**
* This Class is marshaled as an XML-Object and stored as a String in the DB to make
* it more easy to extend it
*
* @author sebastianwagner
*
*/
@Root
public class RemoteSessionObject {
private static final Logger log = Red5LoggerFactory.getLogger(RemoteSessionObject.class, webAppRootKey);
@Element(required = false)
private String username;
@Element(required = false)
private String firstname;
@Element(required = false)
private String lastname;
@Element(required = false)
private String pictureUrl;
@Element(required = false)
private String email;
@Element
private String externalUserId;
@Element
private String externalUserType;
public RemoteSessionObject() {
}
public RemoteSessionObject(String username, String firstname, String lastname,
String pictureUrl, String email) {
this(username, firstname, lastname, pictureUrl, email, "0", "");
}
/**
* @param username
* @param firstname
* @param lastname
* @param pictureUrl
* @param email
* @param externalUserId
* @param externalUserType
*
* 06.09.2009 17:05:48
* sebastianwagner
*
*
*/
public RemoteSessionObject(String username, String firstname,
String lastname, String pictureUrl, String email,
String externalUserId, String externalUserType) {
super();
this.username = username;
this.firstname = firstname;
this.lastname = lastname;
this.pictureUrl = pictureUrl;
this.email = email;
this.externalUserId = externalUserId;
this.externalUserType = externalUserType;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
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 getPictureUrl() {
return pictureUrl;
}
public void setPictureUrl(String pictureUrl) {
this.pictureUrl = pictureUrl;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
public String getExternalUserId() {
return externalUserId;
}
public void setExternalUserId(String externalUserId) {
this.externalUserId = externalUserId;
}
public String getExternalUserType() {
return externalUserType;
}
public void setExternalUserType(String externalUserType) {
this.externalUserType = externalUserType;
}
public String toXml() throws Exception {
StringWriter sw = new StringWriter();
Serializer serializer = new Persister();
serializer.write(this, sw);
return sw.toString();
}
public static RemoteSessionObject fromXml(String xml) {
Serializer serializer = new Persister();
try {
return serializer.read(RemoteSessionObject.class, new StringReader(xml));
} catch (Exception e) {
log.error("Unexpected error while restoring object from XML: " + xml, e);
}
return null;
}
@Override
public String toString() {
return "RemoteSessionObject [username=" + username + ", firstname=" + firstname + ", lastname=" + lastname
+ ", pictureUrl=" + pictureUrl + ", email=" + email + ", externalUserId=" + externalUserId
+ ", externalUserType=" + externalUserType + "]";
}
}