001 package org.omg.SecurityLevel2; 002 003 004 /** 005 * Generated from IDL interface "AuditChannel". 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 AuditChannelLocalTie 012 extends _AuditChannelLocalBase 013 { 014 private AuditChannelOperations _delegate; 015 016 public AuditChannelLocalTie(AuditChannelOperations delegate) 017 { 018 _delegate = delegate; 019 } 020 public AuditChannelOperations _delegate() 021 { 022 return _delegate; 023 } 024 public void _delegate(AuditChannelOperations delegate) 025 { 026 _delegate = delegate; 027 } 028 public int audit_channel_id() 029 { 030 return _delegate.audit_channel_id(); 031 } 032 033 public void audit_write(org.omg.Security.AuditEventType event_type, org.omg.SecurityLevel2.Credentials[] creds, org.omg.TimeBase.UtcT time, org.omg.Security.SelectorValue[] descriptors, org.omg.CORBA.Any event_specific_data) 034 { 035 _delegate.audit_write(event_type,creds,time,descriptors,event_specific_data); 036 } 037 038 }