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   * A ResourceType for Gateways.
19   * @author <a href="mailto:laurent.broudoux@free.fr">Laurent Broudoux</a>
20   * @version $Revision: 1.1 $
21   *
22   * @hibernate.subclass table="join_resourcetypes" lazy="true" discriminator-value="GATEWAY"
23   */
24  public class GatewayType extends AbstractResourceType{
25   
26     // Constructors -------------------------------------------------------------
27     
28     /** Creates a new instance of GatewayType */
29     public GatewayType(){
30        super();
31     }
32     
33     /**
34      * Creates a new instance of GatewayType with mandatory attributes
35      * @param key This gateway type business key
36      * @param label This gateway type label for display
37      */
38     public GatewayType(String key, String label){
39        super(key, label);
40     }
41  }