View Javadoc

1   /**
2    * Copyright 2005-2006 the original author or authors.
3    *
4    * Licensed under the Gnu General Pubic License, Version 2.0 (the
5    * "License"); you may not use this file except in compliance with
6    * the License. You may obtain a copy of the License at
7    *
8    *      http://www.opensource.org/licenses/gpl-license.php
9    *
10   * This program is distributed in the hope that it will be useful,
11   * but WITHOUT ANY WARRANTY; without even the implied warranty of
12   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13   * See the Gnu General Public License for more details.
14   */
15  package org.figure8.join.businessobjects.environment;
16  
17  /**
18   * EISType is a type for denoting resources of category "Enterprise Information
19   * System" that may be bound to a {@link Gateway}.
20   * @author <a href="mailto:laurent.broudoux@free.fr">Laurent Broudoux</a>
21   * @version $Revision: 1.1 $
22   *
23   * @hibernate.subclass table="join_resourcetypes" lazy="true" discriminator-value="EIS"
24   */
25  public class EISType extends VersionedResourceType{
26     
27     // Constructors -------------------------------------------------------------
28     
29     /** Creates a new instance of EISType */
30     public EISType(){
31        super();
32     }
33   
34     /**
35      * Creates a new instance of EISType with mandatory attributes
36      * @param key This EIS type business key
37      * @param label This EIS type label for display
38      */
39     public EISType(String key, String label){
40        super(key, label);
41     }
42  }