X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fnetconf%2Fconfig-netconf-connector%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetconf%2Fconfignetconfconnector%2Fmapping%2Fattributes%2FAttributeIfcSwitchStatement.java;fp=opendaylight%2Fnetconf%2Fconfig-netconf-connector%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fnetconf%2Fconfignetconfconnector%2Fmapping%2Fattributes%2FAttributeIfcSwitchStatement.java;h=4b6dcfd46528b3068fe2a7c41dc9b9224f205b9c;hb=16f2dc509f9f9429447bf9dc59c6c56cd09a7fc3;hp=1ef2ae375e723f3fb49e4890c3b0a1f1022e8d44;hpb=7943b9362e220db037f797c14e113124b6711e07;p=controller.git diff --git a/opendaylight/netconf/config-netconf-connector/src/main/java/org/opendaylight/controller/netconf/confignetconfconnector/mapping/attributes/AttributeIfcSwitchStatement.java b/opendaylight/netconf/config-netconf-connector/src/main/java/org/opendaylight/controller/netconf/confignetconfconnector/mapping/attributes/AttributeIfcSwitchStatement.java index 1ef2ae375e..4b6dcfd465 100644 --- a/opendaylight/netconf/config-netconf-connector/src/main/java/org/opendaylight/controller/netconf/confignetconfconnector/mapping/attributes/AttributeIfcSwitchStatement.java +++ b/opendaylight/netconf/config-netconf-connector/src/main/java/org/opendaylight/controller/netconf/confignetconfconnector/mapping/attributes/AttributeIfcSwitchStatement.java @@ -14,28 +14,70 @@ import org.opendaylight.controller.config.yangjmxgenerator.attribute.JavaAttribu import org.opendaylight.controller.config.yangjmxgenerator.attribute.ListAttribute; import org.opendaylight.controller.config.yangjmxgenerator.attribute.TOAttribute; +import javax.management.openmbean.ArrayType; +import javax.management.openmbean.CompositeType; +import javax.management.openmbean.OpenType; +import javax.management.openmbean.SimpleType; + public abstract class AttributeIfcSwitchStatement { + protected AttributeIfc lastAttribute; + public T switchAttribute(AttributeIfc attributeIfc) { + this.lastAttribute = attributeIfc; + if (attributeIfc instanceof JavaAttribute) { - return caseJavaAttribute((JavaAttribute) attributeIfc); + try { + return caseJavaAttribute(attributeIfc.getOpenType()); + } catch (UnknownOpenTypeException e) { + throw getIllegalArgumentException(attributeIfc); + } + } else if (attributeIfc instanceof DependencyAttribute) { - return caseDependencyAttribute((DependencyAttribute) attributeIfc); + return caseDependencyAttribute(((DependencyAttribute) attributeIfc).getOpenType()); } else if (attributeIfc instanceof ListAttribute) { - return caseListAttribute((ListAttribute) attributeIfc); + return caseListAttribute(((ListAttribute) attributeIfc).getOpenType()); } else if (attributeIfc instanceof TOAttribute) { - return caseTOAttribute((TOAttribute) attributeIfc); + return caseTOAttribute(((TOAttribute) attributeIfc).getOpenType()); + } + + throw getIllegalArgumentException(attributeIfc); + } + + private IllegalArgumentException getIllegalArgumentException(AttributeIfc attributeIfc) { + return new IllegalArgumentException("Unknown attribute type " + attributeIfc.getClass() + ", " + attributeIfc + + " with open type:" + attributeIfc.getOpenType()); + } + + public final T caseJavaAttribute(OpenType openType) { + if (openType instanceof SimpleType) { + return caseJavaSimpleAttribute((SimpleType) openType); + } else if (openType instanceof ArrayType) { + return caseJavaArrayAttribute((ArrayType) openType); + } else if (openType instanceof CompositeType) { + return caseJavaCompositeAttribute((CompositeType) openType); } - throw new IllegalArgumentException("Unknown attribute type " + attributeIfc.getClass() + ", " + attributeIfc); + throw new UnknownOpenTypeException("Unknown attribute open type " + openType); } - protected abstract T caseJavaAttribute(JavaAttribute attributeIfc); + protected abstract T caseJavaSimpleAttribute(SimpleType openType); + + protected abstract T caseJavaArrayAttribute(ArrayType openType); + + protected abstract T caseJavaCompositeAttribute(CompositeType openType); - protected abstract T caseDependencyAttribute(DependencyAttribute attributeIfc); + protected abstract T caseDependencyAttribute(SimpleType attributeIfc); - protected abstract T caseTOAttribute(TOAttribute attributeIfc); + protected abstract T caseTOAttribute(CompositeType openType); - protected abstract T caseListAttribute(ListAttribute attributeIfc); + protected abstract T caseListAttribute(ArrayType openType); + + + private static class UnknownOpenTypeException extends RuntimeException { + public UnknownOpenTypeException(String message) { + super(message); + } + } }