001 package org.omg.SecurityLevel2;
002
003
004 /**
005 * Generated from IDL interface "Credentials".
006 *
007 * @author JacORB IDL compiler V 2.3.0 (JBoss patch 6), 06-Jun-2007
008 * @version generated at Nov 6, 2011 12:20:25 AM
009 */
010
011 public class CredentialsLocalTie
012 extends _CredentialsLocalBase
013 {
014 private CredentialsOperations _delegate;
015
016 public CredentialsLocalTie(CredentialsOperations delegate)
017 {
018 _delegate = delegate;
019 }
020 public CredentialsOperations _delegate()
021 {
022 return _delegate;
023 }
024 public void _delegate(CredentialsOperations 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 short invocation_options_supported()
034 {
035 return _delegate.invocation_options_supported();
036 }
037
038 public void invocation_options_supported(short a)
039 {
040 _delegate.invocation_options_supported(a);
041 }
042
043 public org.omg.Security.SecAttribute[] get_attributes(org.omg.Security.AttributeType[] attributes)
044 {
045 return _delegate.get_attributes(attributes);
046 }
047
048 public void accepting_options_required(short a)
049 {
050 _delegate.accepting_options_required(a);
051 }
052
053 public void accepting_options_supported(short a)
054 {
055 _delegate.accepting_options_supported(a);
056 }
057
058 public org.omg.Security.InvocationCredentialsType credentials_type()
059 {
060 return _delegate.credentials_type();
061 }
062
063 public boolean set_attributes(org.omg.Security.SecAttribute[] requested_attributes, org.omg.Security.AttributeListHolder actual_attributes)
064 {
065 return _delegate.set_attributes(requested_attributes,actual_attributes);
066 }
067
068 public java.lang.String mechanism()
069 {
070 return _delegate.mechanism();
071 }
072
073 public boolean get_security_feature(org.omg.Security.CommunicationDirection direction, org.omg.Security.SecurityFeature feature)
074 {
075 return _delegate.get_security_feature(direction,feature);
076 }
077
078 public short invocation_options_required()
079 {
080 return _delegate.invocation_options_required();
081 }
082
083 public void invocation_options_required(short a)
084 {
085 _delegate.invocation_options_required(a);
086 }
087
088 public boolean refresh(org.omg.CORBA.Any refresh_data)
089 {
090 return _delegate.refresh(refresh_data);
091 }
092
093 public short accepting_options_supported()
094 {
095 return _delegate.accepting_options_supported();
096 }
097
098 public short accepting_options_required()
099 {
100 return _delegate.accepting_options_required();
101 }
102
103 public org.omg.Security.AuthenticationStatus authentication_state()
104 {
105 return _delegate.authentication_state();
106 }
107
108 public void destroy()
109 {
110 _delegate.destroy();
111 }
112
113 public org.omg.SecurityLevel2.Credentials copy()
114 {
115 return _delegate.copy();
116 }
117
118 }