01: package org.omg.SecurityLevel2;
02:
03: final public class CredentialsHolder implements
04: org.omg.CORBA.portable.Streamable {
05: public Credentials value;
06:
07: public CredentialsHolder() {
08: }
09:
10: public CredentialsHolder(Credentials c) {
11: value = c;
12: }
13:
14: public org.omg.CORBA.TypeCode _type() {
15: throw new org.omg.CORBA.MARSHAL();
16: }
17:
18: public void _read(org.omg.CORBA.portable.InputStream in) {
19: throw new org.omg.CORBA.MARSHAL();
20:
21: }
22:
23: public void _write(org.omg.CORBA.portable.OutputStream out) {
24: throw new org.omg.CORBA.MARSHAL();
25: }
26:
27: }
|