com.rapidclipse.framework.security.configuration.xml.XmlSubject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rap-security-auth Show documentation
Show all versions of rap-security-auth Show documentation
Rapid Application Platform / Security / Authentication and Authorization
/*
* Copyright (C) 2013-2023 by XDEV Software, All Rights Reserved.
*
* This file is part of the RapidClipse Application Platform (RAP).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*
* SPDX-License-Identifier: AGPL-3.0-or-later
*
* Contributors:
* XDEV Software - initial API and implementation
*/
package com.rapidclipse.framework.security.configuration.xml;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
/**
* JAXB mapping type.
*
* @author XDEV Software (TM)
*/
public final class XmlSubject
{
///////////////////////////////////////////////////////////////////////////
// instance fields //
////////////////////
@XmlAttribute
String name;
@XmlAttribute
String password;
@XmlElement(name = "role")
ArrayList roles;
///////////////////////////////////////////////////////////////////////////
// constructors //
/////////////////
public XmlSubject(final String name, final String password, final ArrayList roles)
{
super();
this.name = name;
this.password = password;
this.roles = XmlRoleReference.box(roles);
}
public XmlSubject(final String name, final ArrayList roles)
{
this(name, null, roles);
}
// JAXB dummy constructor
XmlSubject()
{
this(null, null, null);
}
///////////////////////////////////////////////////////////////////////////
// override methods //
/////////////////////
public final String password()
{
return this.password;
}
public final List roles()
{
return this.roles;
}
///////////////////////////////////////////////////////////////////////////
// override methods //
/////////////////////
public final String name()
{
return this.name;
}
}