001    package org.omg.SecurityLevel2;
002    
003    
004    /**
005     * Generated from IDL interface "ReceivedCredentials".
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:54 AM
009     */
010    
011    public class ReceivedCredentialsLocalTie
012            extends _ReceivedCredentialsLocalBase
013    {
014            private ReceivedCredentialsOperations _delegate;
015    
016            public ReceivedCredentialsLocalTie(ReceivedCredentialsOperations delegate)
017            {
018                    _delegate = delegate;
019            }
020            public ReceivedCredentialsOperations _delegate()
021            {
022                    return _delegate;
023            }
024            public void _delegate(ReceivedCredentialsOperations delegate)
025            {
026                    _delegate = delegate;
027            }
028            public boolean is_valid(org.omg.TimeBase.UtcTHolder expiry_time)
029            {
030                    return _delegate.is_valid(expiry_time);
031            }
032    
033            public org.omg.Security.DelegationMode delegation_mode()
034            {
035                    return _delegate.delegation_mode();
036            }
037    
038            public short invocation_options_supported()
039            {
040                    return _delegate.invocation_options_supported();
041            }
042    
043            public void invocation_options_supported(short a)
044            {
045                    _delegate.invocation_options_supported(a);
046            }
047    
048            public org.omg.Security.SecAttribute[] get_attributes(org.omg.Security.AttributeType[] attributes)
049            {
050                    return _delegate.get_attributes(attributes);
051            }
052    
053            public void accepting_options_required(short a)
054            {
055                    _delegate.accepting_options_required(a);
056            }
057    
058            public void accepting_options_supported(short a)
059            {
060                    _delegate.accepting_options_supported(a);
061            }
062    
063            public org.omg.Security.InvocationCredentialsType credentials_type()
064            {
065                    return _delegate.credentials_type();
066            }
067    
068            public boolean set_attributes(org.omg.Security.SecAttribute[] requested_attributes, org.omg.Security.AttributeListHolder actual_attributes)
069            {
070                    return _delegate.set_attributes(requested_attributes,actual_attributes);
071            }
072    
073            public java.lang.String mechanism()
074            {
075                    return _delegate.mechanism();
076            }
077    
078            public short association_options_used()
079            {
080                    return _delegate.association_options_used();
081            }
082    
083            public org.omg.SecurityLevel2.Credentials accepting_credentials()
084            {
085                    return _delegate.accepting_credentials();
086            }
087    
088            public boolean get_security_feature(org.omg.Security.CommunicationDirection direction, org.omg.Security.SecurityFeature feature)
089            {
090                    return _delegate.get_security_feature(direction,feature);
091            }
092    
093            public short invocation_options_required()
094            {
095                    return _delegate.invocation_options_required();
096            }
097    
098            public void invocation_options_required(short a)
099            {
100                    _delegate.invocation_options_required(a);
101            }
102    
103            public org.omg.Security.DelegationState delegation_state()
104            {
105                    return _delegate.delegation_state();
106            }
107    
108            public boolean refresh(org.omg.CORBA.Any refresh_data)
109            {
110                    return _delegate.refresh(refresh_data);
111            }
112    
113            public short accepting_options_supported()
114            {
115                    return _delegate.accepting_options_supported();
116            }
117    
118            public short accepting_options_required()
119            {
120                    return _delegate.accepting_options_required();
121            }
122    
123            public org.omg.Security.AuthenticationStatus authentication_state()
124            {
125                    return _delegate.authentication_state();
126            }
127    
128            public org.omg.SecurityLevel2.Credentials copy()
129            {
130                    return _delegate.copy();
131            }
132    
133            public void destroy()
134            {
135    _delegate.destroy();
136            }
137    
138    }