001    package org.omg.PortableServer;
002    
003    
004    /**
005     * Generated from IDL interface "IdUniquenessPolicy".
006     *
007     * @author JacORB IDL compiler V 2.3.0 (JBoss patch 6), 06-Jun-2007
008     * @version generated at Jun 18, 2012 10:37:57 AM
009     */
010    
011    public class IdUniquenessPolicyLocalTie
012            extends _IdUniquenessPolicyLocalBase
013    {
014            private IdUniquenessPolicyOperations _delegate;
015    
016            public IdUniquenessPolicyLocalTie(IdUniquenessPolicyOperations delegate)
017            {
018                    _delegate = delegate;
019            }
020            public IdUniquenessPolicyOperations _delegate()
021            {
022                    return _delegate;
023            }
024            public void _delegate(IdUniquenessPolicyOperations delegate)
025            {
026                    _delegate = delegate;
027            }
028            public org.omg.PortableServer.IdUniquenessPolicyValue value()
029            {
030                    return _delegate.value();
031            }
032    
033            public int policy_type()
034            {
035                    return _delegate.policy_type();
036            }
037    
038            public org.omg.CORBA.Policy copy()
039            {
040                    return _delegate.copy();
041            }
042    
043            public void destroy()
044            {
045    _delegate.destroy();
046            }
047    
048    }