KickJava   Java API By Example, From Geeks To Geeks.

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


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.CosTrading.*;
17
18 /**
19  * Manages the trader's link attributes
20  */

21 public class LinkAttrib
22 {
23   private FollowOption m_maxLinkFollowPolicy;
24
25
26   public synchronized FollowOption getMaxLinkFollowPolicy()
27   {
28     return m_maxLinkFollowPolicy;
29   }
30
31
32   public synchronized FollowOption setMaxLinkFollowPolicy(FollowOption value)
33   {
34     FollowOption result = m_maxLinkFollowPolicy;
35     m_maxLinkFollowPolicy = value;
36     return result;
37   }
38 }
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
Popular Tags