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

org.apache.archiva.redback.role.model.ModelRole Maven / Gradle / Ivy

There is a newer version: 2.6.2
Show newest version
// =================== DO NOT EDIT THIS FILE ====================
// Generated by Modello 1.7,
// any modifications will be overwritten.
// ==============================================================

package org.apache.archiva.redback.role.model;

/**
 * 
 *         model roles specify a role and its corresponding
 * permissions,
 *         child roles and parent roles to link to
 *       .
 * 
 * @version $Revision$ $Date$
 */
@SuppressWarnings( "all" )
public class ModelRole
    implements java.io.Serializable
{

      //--------------------------/
     //- Class/Member Variables -/
    //--------------------------/

    /**
     * Field id.
     */
    private String id;

    /**
     * 
     *             either a normal name, or 'name - ${resource}'
     *           .
     */
    private String name;

    /**
     * description of this role.
     */
    private String description;

    /**
     * 
     *             boolean specifying if a given role can assigned
     *           .
     */
    private boolean assignable = false;

    /**
     * 
     *             boolean specifying if a given role can be
     * removed once
     *             created
     *           .
     */
    private boolean permanent = false;

    /**
     * Field permissions.
     */
    private java.util.List permissions;

    /**
     * Field parentRoles.
     */
    private java.util.List parentRoles;

    /**
     * Field childRoles.
     */
    private java.util.List childRoles;


      //-----------/
     //- Methods -/
    //-----------/

    /**
     * Method addChildRole.
     * 
     * @param string
     */
    public void addChildRole( String string )
    {
        getChildRoles().add( string );
    } //-- void addChildRole( String )

    /**
     * Method addParentRole.
     * 
     * @param string
     */
    public void addParentRole( String string )
    {
        getParentRoles().add( string );
    } //-- void addParentRole( String )

    /**
     * Method addPermission.
     * 
     * @param modelPermission
     */
    public void addPermission( ModelPermission modelPermission )
    {
        getPermissions().add( modelPermission );
    } //-- void addPermission( ModelPermission )

    /**
     * Method equals.
     * 
     * @param other
     * @return boolean
     */
    public boolean equals( Object other )
    {
        if ( this == other )
        {
            return true;
        }

        if ( !( other instanceof ModelRole ) )
        {
            return false;
        }

        ModelRole that = (ModelRole) other;
        boolean result = true;

        result = result && ( getId() == null ? that.getId() == null : getId().equals( that.getId() ) );

        return result;
    } //-- boolean equals( Object )

    /**
     * Method getChildRoles.
     * 
     * @return List
     */
    public java.util.List getChildRoles()
    {
        if ( this.childRoles == null )
        {
            this.childRoles = new java.util.ArrayList();
        }

        return this.childRoles;
    } //-- java.util.List getChildRoles()

    /**
     * Get description of this role.
     * 
     * @return String
     */
    public String getDescription()
    {
        return this.description;
    } //-- String getDescription()

    /**
     * Get the id field.
     * 
     * @return String
     */
    public String getId()
    {
        return this.id;
    } //-- String getId()

    /**
     * Get either a normal name, or 'name - ${resource}'.
     * 
     * @return String
     */
    public String getName()
    {
        return this.name;
    } //-- String getName()

    /**
     * Method getParentRoles.
     * 
     * @return List
     */
    public java.util.List getParentRoles()
    {
        if ( this.parentRoles == null )
        {
            this.parentRoles = new java.util.ArrayList();
        }

        return this.parentRoles;
    } //-- java.util.List getParentRoles()

    /**
     * Method getPermissions.
     * 
     * @return List
     */
    public java.util.List getPermissions()
    {
        if ( this.permissions == null )
        {
            this.permissions = new java.util.ArrayList();
        }

        return this.permissions;
    } //-- java.util.List getPermissions()

    /**
     * Method hashCode.
     * 
     * @return int
     */
    public int hashCode()
    {
        int result = 17;

        result = 37 * result + ( id != null ? id.hashCode() : 0 );

        return result;
    } //-- int hashCode()

    /**
     * Get boolean specifying if a given role can assigned.
     * 
     * @return boolean
     */
    public boolean isAssignable()
    {
        return this.assignable;
    } //-- boolean isAssignable()

    /**
     * Get boolean specifying if a given role can be removed once
     *             created.
     * 
     * @return boolean
     */
    public boolean isPermanent()
    {
        return this.permanent;
    } //-- boolean isPermanent()

    /**
     * Method removeChildRole.
     * 
     * @param string
     */
    public void removeChildRole( String string )
    {
        getChildRoles().remove( string );
    } //-- void removeChildRole( String )

    /**
     * Method removeParentRole.
     * 
     * @param string
     */
    public void removeParentRole( String string )
    {
        getParentRoles().remove( string );
    } //-- void removeParentRole( String )

    /**
     * Method removePermission.
     * 
     * @param modelPermission
     */
    public void removePermission( ModelPermission modelPermission )
    {
        getPermissions().remove( modelPermission );
    } //-- void removePermission( ModelPermission )

    /**
     * Set boolean specifying if a given role can assigned.
     * 
     * @param assignable
     */
    public void setAssignable( boolean assignable )
    {
        this.assignable = assignable;
    } //-- void setAssignable( boolean )

    /**
     * Set the id of other role profiles to assign as children to
     * this
     *             role, can accept 'foo - ${resource}'.
     * 
     * @param childRoles
     */
    public void setChildRoles( java.util.List childRoles )
    {
        this.childRoles = childRoles;
    } //-- void setChildRoles( java.util.List )

    /**
     * Set description of this role.
     * 
     * @param description
     */
    public void setDescription( String description )
    {
        this.description = description;
    } //-- void setDescription( String )

    /**
     * Set the id field.
     * 
     * @param id
     */
    public void setId( String id )
    {
        this.id = id;
    } //-- void setId( String )

    /**
     * Set either a normal name, or 'name - ${resource}'.
     * 
     * @param name
     */
    public void setName( String name )
    {
        this.name = name;
    } //-- void setName( String )

    /**
     * Set the id of other role profiles to have create a child
     *             relationship to this role, can accept 'foo -
     * ${resource}'.
     * 
     * @param parentRoles
     */
    public void setParentRoles( java.util.List parentRoles )
    {
        this.parentRoles = parentRoles;
    } //-- void setParentRoles( java.util.List )

    /**
     * Set boolean specifying if a given role can be removed once
     *             created.
     * 
     * @param permanent
     */
    public void setPermanent( boolean permanent )
    {
        this.permanent = permanent;
    } //-- void setPermanent( boolean )

    /**
     * Set the permissions field.
     * 
     * @param permissions
     */
    public void setPermissions( java.util.List permissions )
    {
        this.permissions = permissions;
    } //-- void setPermissions( java.util.List )

    /**
     * Method toString.
     * 
     * @return String
     */
    public java.lang.String toString()
    {
        StringBuilder buf = new StringBuilder( 128 );

        buf.append( "id = '" );
        buf.append( getId() );
        buf.append( "'" );

        return buf.toString();
    } //-- java.lang.String toString()

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy