KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jacorb > trading > impl > ProxySourceAdapter


1
2 // Copyright (C) 1998-1999
3
// Object Oriented Concepts, Inc.
4

5 // **********************************************************************
6
//
7
// Copyright (c) 1997
8
// Mark Spruiell (mark@intellisoft.com)
9
//
10
// See the COPYING file for more information
11
//
12
// **********************************************************************
13

14 package org.jacorb.trading.impl;
15
16 import org.omg.CORBA.*;
17 import org.omg.CosTrading.*;
18 import org.omg.CosTrading.ProxyPackage.*;
19
20
21 /**
22  * Represents a proxy offer
23  */

24 public class ProxySourceAdapter extends SourceAdapter
25 {
26   private ProxyInfo m_info;
27
28
29   private ProxySourceAdapter()
30   {
31   }
32
33
34   public ProxySourceAdapter(ProxyInfo info)
35   {
36     super(null, info.properties);
37     m_info = info;
38   }
39
40
41   public ProxyInfo getInfo()
42   {
43     return m_info;
44   }
45 }
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
Popular Tags