package org.jboss.iiop.rmi.ir;
import org.omg.CORBA.Any;
import org.omg.CORBA.TypeCode;
import org.omg.CORBA.IRObject;
import org.omg.CORBA.ContainedOperations;
import org.omg.CORBA.ContainedPackage.Description;
import org.omg.CORBA.DefinitionKind;
import org.omg.CORBA.IDLType;
import org.omg.CORBA.IDLTypeHelper;
import org.omg.CORBA.AttributeDef;
import org.omg.CORBA.AttributeDefOperations;
import org.omg.CORBA.AttributeMode;
import org.omg.CORBA.AttributeDescription;
import org.omg.CORBA.AttributeDescriptionHelper;
import org.omg.CORBA.AttributeDefPOATie;
import org.omg.CORBA.BAD_INV_ORDER;
public class AttributeDefImpl
extends ContainedImpl
implements AttributeDefOperations
{
AttributeDefImpl(String id, String name, String version,
AttributeMode mode, TypeCode typeCode,
LocalContainer defined_in, RepositoryImpl repository)
{
super(id, name, version, defined_in,
DefinitionKind.dk_Attribute, repository);
this.mode = mode;
this.typeCode = typeCode;
}
public IRObject getReference()
{
if (ref == null) {
ref = org.omg.CORBA.AttributeDefHelper.narrow(
servantToReference(new AttributeDefPOATie(this)) );
}
return ref;
}
public void allDone()
throws IRConstructionException
{
type_def = IDLTypeImpl.getIDLType(typeCode, repository);
getReference();
}
public TypeCode type()
{
return typeCode;
}
public IDLType type_def()
{
return IDLTypeHelper.narrow(type_def.getReference());
}
public void type_def(IDLType arg)
{
throw new BAD_INV_ORDER("Cannot change RMI/IIOP mapping.");
}
public AttributeMode mode()
{
return mode;
}
public void mode(AttributeMode arg)
{
throw new BAD_INV_ORDER("Cannot change RMI/IIOP mapping.");
}
public Description describe()
{
String defined_in_id = "IR";
if (defined_in instanceof ContainedOperations)
defined_in_id = ((ContainedOperations)defined_in).id();
AttributeDescription d =
new AttributeDescription(name, id, defined_in_id, version,
typeCode, mode);
Any any = getORB().create_any();
AttributeDescriptionHelper.insert(any, d);
return new Description(DefinitionKind.dk_Attribute, any);
}
private AttributeDef ref = null;
private AttributeMode mode;
private TypeCode typeCode;
private LocalIDLType type_def;
}