Package org.jacorb.trading.db.simple.offers

Source Code of org.jacorb.trading.db.simple.offers.OfferProperty

// Copyright (C) 1998-1999
// Object Oriented Concepts, Inc.

// **********************************************************************
//
// Copyright (c) 1997
// Mark Spruiell (mark@intellisoft.com)
//
// See the COPYING file for more information
//
// **********************************************************************

package org.jacorb.trading.db.simple.offers;


import java.io.*;
import java.util.*;
import org.omg.CosTrading.Property;
import org.jacorb.trading.util.*;

public class OfferProperty implements Serializable
{
    private String m_name;
    private Object m_value;

    static final long serialVersionUID = 4396172479241248659L;

    private OfferProperty()
    {
    }

    public OfferProperty(Property prop)
    {
  m_name = prop.name;
  if (PropUtil.isDynamicProperty(prop.value.type()))
  {
      m_value = new DynPropValue(org.jacorb.trading.TradingService.getORB(),prop.value);
  }
  else
  {
      m_value = new AnyValue(org.jacorb.trading.TradingService.getORB(),prop.value);
  }
    }

    public Property describe()
    {
  Property result = new Property();

  result.name = m_name;
  if (m_value instanceof AnyValue)
      result.value = ((AnyValue)m_value).getValue();
  else if (m_value instanceof DynPropValue)
      result.value = ((DynPropValue)m_value).getValue();

  return result;
    }
}










TOP

Related Classes of org.jacorb.trading.db.simple.offers.OfferProperty

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.