com.github.ansell.restletutils.RestletUtilGroup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of restlet-utils Show documentation
Show all versions of restlet-utils Show documentation
Utilities for use with Restlet
The newest version!
/**
*
*/
package com.github.ansell.restletutils;
import org.restlet.security.Group;
/**
* @author Peter Ansell [email protected]
*
*/
public class RestletUtilGroup extends Group
{
/**
*
*/
public RestletUtilGroup()
{
// TODO Auto-generated constructor stub
}
/**
* @param name
* @param description
*/
public RestletUtilGroup(final String name, final String description)
{
super(name, description);
// TODO Auto-generated constructor stub
}
/**
* @param name
* @param description
* @param inheritingRoles
*/
public RestletUtilGroup(final String name, final String description, final boolean inheritingRoles)
{
super(name, description, inheritingRoles);
// TODO Auto-generated constructor stub
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy