All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.rapidclipse.framework.security.configuration.xml.XmlPermission Maven / Gradle / Ivy

There is a newer version: 14.0.0
Show newest version
/*
 * 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 javax.xml.bind.annotation.XmlAttribute;


/**
 * JAXB mapping type.
 *
 * @author XDEV Software (TM)
 */
public final class XmlPermission
{
	///////////////////////////////////////////////////////////////////////////
	// instance fields //
	////////////////////

	@XmlAttribute
	String  resource;

	@XmlAttribute
	Integer factor;

	///////////////////////////////////////////////////////////////////////////
	// constructors //
	/////////////////

	public XmlPermission(final XmlResource resource, final Integer factor)
	{
		super();
		this.resource = resource == null ? null : resource.name;
		this.factor   = factor;
	}

	// JAXB dummy constructor
	XmlPermission()
	{
		this(null, null);
	}

	///////////////////////////////////////////////////////////////////////////
	// declared methods //
	/////////////////////

	public final String resource()
	{
		return this.resource;
	}

	public final Integer factor()
	{
		return this.factor;
	}

	///////////////////////////////////////////////////////////////////////////
	// override methods //
	/////////////////////

	@Override
	public final String toString()
	{
		return this.resource + (this.factor == 0 ? "" : "(" + this.factor + ")");
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy