001//
002// Name
003//  $RCSfile: InOutParameter.java,v $
004//
005// Copyright
006//  Copyright 2007-2013 Cloud Software Group, Inc. ALL RIGHTS RESERVED. 
007//  Confidential Property of Kabira Technologies, Inc.
008//
009// History
010//  $Revision: 1.1.2.4 $ $Date: 2013/03/06 18:51:28 $
011//
012
013package com.kabira.platform;
014
015/**
016 * @deprecated Generic holder class for input/output parameters.
017 */
018@Deprecated
019public final class InOutParameter<T> extends Parameter<T>
020{
021    /**
022     *  Creates an empty InOutParameter.
023     */
024    public InOutParameter() 
025    {
026        super();
027    }
028
029    /**
030     *  Creates an InOutParameter containing a value.
031     *
032     *  @param  value   Parameter value 
033     */
034    public InOutParameter(T value)
035    {
036        super(value);
037    }
038}