/*
 * $Id: SamplePermission.html,v 1.2 2003/08/26 17:04:38 suhrin Exp $
 
 * Copyright (c) 1999-2002 Gnome Ltd. All Rights Reserved.
 
 * This software is the confidential and proprietary information of
 * Gnome Ltd. You shall not disclose such Confidential
 * Information and shall use it only in accordance with the terms
 * of the license agreement you entered into with Gnome.
 */

package SK.gnome.dwarf.sample;

import java.security.BasicPermission;

/** 
 * Sample permission.
 */

public class SamplePermission extends BasicPermission
{  
  /**
   * Constructs a new <tt>SamplePermission</tt> with the given name.
   *
   @param  name  the name of the permission
   */

  public SamplePermission(String name)
  super(name);
  }  

  /**
   * Constructs a new <tt>SamplePermission</tt> with the given name and actions.
   *
   @param  name     the name of the permission
   @param  actions  the actions string (ignored)
   */

  public SamplePermission(String name, String actions)
  super(name, actions);
  }  
}