/**
 * 
 */
package com.orsomethinglikethat.example.model;

/**
 * @author lpillow
 */
public enum Status
{
    ACTIVE( "A", "Active" ), //
    PENDING( "P", "Pending" );

    private String symbol;
    private String description;

    private Status( String symbol, String description )
    {
        this.setSymbol( symbol );
        this.setDescription( description );
    }

    /**
     * @return Returns the description.
     */
    public String getDescription()
    {
        return description;
    }

    /**
     * @param description
     *            The description to set.
     */
    private void setDescription( String description )
    {
        this.description = description;
    }

    /**
     * @return Returns the symbol.
     */
    public String getSymbol()
    {
        return symbol;
    }

    /**
     * @param symbol
     *            The symbol to set.
     */
    private void setSymbol( String symbol )
    {
        this.symbol = symbol;
    }

}

