1 package org.enhydra.shark.corba; 2 3 import org.omg.TimeBase.*; 4 import org.omg.WfBase.*; 5 import org.omg.WorkflowModel.*; 6 7 10 public class WfCreateProcessEventAuditCORBA extends 11 _WfCreateProcessEventAuditImplBase { 12 13 private org.enhydra.shark.api.client.wfmodel.WfCreateProcessEventAudit ea; 14 private Collective __collective; 15 16 protected WfCreateProcessEventAuditCORBA(Collective toJoin, 17 org.enhydra.shark.api.client.wfmodel.WfCreateProcessEventAudit ea) { 18 __collective = toJoin; 19 toJoin.__recruit(this); 20 this.ea = ea; 21 } 22 23 public WfExecutionObject source() throws BaseException, SourceNotAvailable { 24 try { 25 return new WfProcessCORBA(__collective, (org.enhydra.shark.api.client.wfmodel.WfProcess) ea.source()); 26 } catch (org.enhydra.shark.api.client.wfmodel.SourceNotAvailable sna) { 27 throw new SourceNotAvailable(); 28 } catch (Exception ex) { 29 throw new BaseException(); 30 } 31 } 32 33 public UtcT time_stamp() throws BaseException { 34 try { 35 org.enhydra.shark.api.client.timebase.UtcT t = ea.time_stamp(); 36 return new UtcT(t.time, t.inacclo, t.inacchi, t.tdf); 37 } catch (Exception ex) { 38 throw new BaseException(); 39 } 40 } 41 42 public String event_type() throws BaseException { 43 try { 44 return ea.event_type(); 45 } catch (Exception ex) { 46 throw new BaseException(); 47 } 48 } 49 50 public String activity_key() throws BaseException { 51 try { 52 return ea.activity_key(); 53 } catch (Exception ex) { 54 throw new BaseException(); 55 } 56 } 57 58 public String activity_name() throws BaseException { 59 try { 60 return ea.activity_name(); 61 } catch (Exception ex) { 62 throw new BaseException(); 63 } 64 } 65 66 public String process_key() throws BaseException { 67 try { 68 return ea.process_key(); 69 } catch (Exception ex) { 70 throw new BaseException(); 71 } 72 } 73 74 public String process_name() throws BaseException { 75 try { 76 return ea.process_name(); 77 } catch (Exception ex) { 78 throw new BaseException(); 79 } 80 } 81 82 public String process_mgr_name() throws BaseException { 83 try { 84 return ea.process_mgr_name(); 85 } catch (Exception ex) { 86 throw new BaseException(); 87 } 88 } 89 90 public String process_mgr_version() throws BaseException { 91 try { 92 return ea.process_mgr_version(); 93 } catch (Exception ex) { 94 throw new BaseException(); 95 } 96 } 97 98 public String p_activity_key() throws BaseException { 99 try { 100 return ea.p_activity_key(); 101 } catch (Exception ex) { 102 throw new BaseException(); 103 } 104 } 105 106 public String p_process_key() throws BaseException { 107 try { 108 return ea.p_process_key(); 109 } catch (Exception ex) { 110 throw new BaseException(); 111 } 112 } 113 114 public String p_process_name() throws BaseException { 115 try { 116 return ea.p_process_name(); 117 } catch (Exception ex) { 118 throw new BaseException(); 119 } 120 } 121 122 public String p_process_mgr_name() throws BaseException { 123 try { 124 return p_process_mgr_name(); 125 } catch (Exception ex) { 126 throw new BaseException(); 127 } 128 } 129 130 public String p_process_mgr_version() throws BaseException { 131 try { 132 return ea.p_process_mgr_version(); 133 } catch (Exception ex) { 134 throw new BaseException(); 135 } 136 } 137 } | Popular Tags |