1 25 package org.objectweb.carol.util.csiv2; 26 27 import org.objectweb.carol.util.csiv2.struct.AsStruct; 28 import org.objectweb.carol.util.csiv2.struct.SasStruct; 29 import org.objectweb.carol.util.csiv2.struct.TransportStruct; 30 31 35 public class SasComponent implements org.omg.CORBA.portable.IDLEntity { 36 37 40 private TransportStruct transport = null; 41 42 45 private AsStruct as = null; 46 47 50 private SasStruct sas = null; 51 52 58 public SasComponent(TransportStruct transport, AsStruct as, SasStruct sas) { 59 this.transport = transport; 60 this.as = as; 61 this.sas = sas; 62 } 63 64 67 public AsStruct getAs() { 68 return as; 69 } 70 73 public SasStruct getSas() { 74 return sas; 75 } 76 79 public TransportStruct getTransport() { 80 return transport; 81 } 82 } | Popular Tags |