001 package org.omg.SecurityLevel2; 002 003 004 /** 005 * Generated from IDL interface "SecurityManager". 006 * 007 * @author JacORB IDL compiler V 2.3.0 (JBoss patch 6), 06-Jun-2007 008 * @version generated at Sep 22, 2012 10:58:00 AM 009 */ 010 011 public class SecurityManagerLocalTie 012 extends _SecurityManagerLocalBase 013 { 014 private SecurityManagerOperations _delegate; 015 016 public SecurityManagerLocalTie(SecurityManagerOperations delegate) 017 { 018 _delegate = delegate; 019 } 020 public SecurityManagerOperations _delegate() 021 { 022 return _delegate; 023 } 024 public void _delegate(SecurityManagerOperations delegate) 025 { 026 _delegate = delegate; 027 } 028 public org.omg.SecurityLevel2.AuditDecision audit_decision() 029 { 030 return _delegate.audit_decision(); 031 } 032 033 public org.omg.SecurityLevel2.RequiredRights required_rights_object() 034 { 035 return _delegate.required_rights_object(); 036 } 037 038 public org.omg.SecurityLevel2.TargetCredentials get_target_credentials(org.omg.CORBA.Object obj_ref) 039 { 040 return _delegate.get_target_credentials(obj_ref); 041 } 042 043 public org.omg.SecurityLevel2.Credentials[] own_credentials() 044 { 045 return _delegate.own_credentials(); 046 } 047 048 public org.omg.Security.MechandOptions[] supported_mechanisms() 049 { 050 return _delegate.supported_mechanisms(); 051 } 052 053 public org.omg.SecurityLevel2.PrincipalAuthenticator principal_authenticator() 054 { 055 return _delegate.principal_authenticator(); 056 } 057 058 public org.omg.CORBA.Policy get_security_policy(int policy_type) 059 { 060 return _delegate.get_security_policy(policy_type); 061 } 062 063 public void remove_own_credentials(org.omg.SecurityLevel2.Credentials creds) 064 { 065 _delegate.remove_own_credentials(creds); 066 } 067 068 public org.omg.SecurityLevel2.AccessDecision access_decision() 069 { 070 return _delegate.access_decision(); 071 } 072 073 }