01: package org.omg.SecurityLevel1;
02:
03: // public abstract class Current
04: // implements org.omg.CORBA.Current
05: // {
06: // public abstract org.omg.Security.SecAttribute[] get_attributes(org.omg.Security.AttributeType[] attributes);
07: // }
08:
09: public interface Current extends org.omg.CORBA.Current {
10: org.omg.Security.SecAttribute[] get_attributes(
11: org.omg.Security.AttributeType[] attributes);
12: }
|