/* * Copyright (c) 2013 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.controller.yang.model.parser.builder.impl; import java.util.ArrayList; import java.util.Collections; import java.util.List; import org.opendaylight.controller.yang.common.QName; import org.opendaylight.controller.yang.model.api.ConstraintDefinition; import org.opendaylight.controller.yang.model.api.LeafListSchemaNode; import org.opendaylight.controller.yang.model.api.SchemaPath; import org.opendaylight.controller.yang.model.api.Status; import org.opendaylight.controller.yang.model.api.TypeDefinition; import org.opendaylight.controller.yang.model.api.UnknownSchemaNode; import org.opendaylight.controller.yang.model.parser.builder.api.DataSchemaNodeBuilder; import org.opendaylight.controller.yang.model.parser.builder.api.SchemaNodeBuilder; import org.opendaylight.controller.yang.model.parser.builder.api.TypeAwareBuilder; public class LeafListSchemaNodeBuilder implements SchemaNodeBuilder, TypeAwareBuilder, DataSchemaNodeBuilder { private final LeafListSchemaNodeImpl instance; private final QName qname; private final ConstraintsBuilder constraintsBuilder = new ConstraintsBuilder(); private final List addedUnknownNodes = new ArrayList(); private TypeDefinition type; LeafListSchemaNodeBuilder(QName qname) { this.qname = qname; instance = new LeafListSchemaNodeImpl(qname); } @Override public LeafListSchemaNode build() { instance.setConstraints(constraintsBuilder.build()); return instance; } @Override public QName getQName() { return qname; } @Override public void setPath(SchemaPath path) { instance.setPath(path); } @Override public void setDescription(String description) { instance.setDescription(description); } @Override public void setReference(String reference) { instance.setReference(reference); } @Override public void setStatus(Status status) { if(status != null) { instance.setStatus(status); } } @Override public TypeDefinition getType() { return type; } @Override public void setType(TypeDefinition type) { this.type = type; instance.setType(type); } @Override public void setAugmenting(boolean augmenting) { instance.setAugmenting(augmenting); } @Override public void setConfiguration(boolean configuration) { instance.setConfiguration(configuration); } @Override public ConstraintsBuilder getConstraintsBuilder() { return constraintsBuilder; } public void setUserOrdered(boolean userOrdered) { instance.setUserOrdered(userOrdered); } @Override public void addUnknownSchemaNode(UnknownSchemaNodeBuilder unknownSchemaNodeBuilder) { addedUnknownNodes.add(unknownSchemaNodeBuilder); } private class LeafListSchemaNodeImpl implements LeafListSchemaNode { private final QName qname; private SchemaPath path; private String description; private String reference; private Status status = Status.CURRENT; private boolean augmenting; private boolean configuration; private ConstraintDefinition constraints; private TypeDefinition type; private boolean userOrdered; private List unknownSchemaNodes = Collections.emptyList(); private LeafListSchemaNodeImpl(QName qname) { this.qname = qname; } @Override public QName getQName() { return qname; } @Override public SchemaPath getPath() { return path; } private void setPath(SchemaPath path) { this.path = path; } @Override public String getDescription() { return description; } private void setDescription(String description) { this.description = description; } @Override public String getReference() { return reference; } private void setReference(String reference) { this.reference = reference; } @Override public Status getStatus() { return status; } private void setStatus(Status status) { this.status = status; } @Override public boolean isAugmenting() { return augmenting; } private void setAugmenting(boolean augmenting) { this.augmenting = augmenting; } @Override public boolean isConfiguration() { return configuration; } private void setConfiguration(boolean configuration) { this.configuration = configuration; } @Override public ConstraintDefinition getConstraints() { return constraints; } private void setConstraints(ConstraintDefinition constraints) { this.constraints = constraints; } @Override public TypeDefinition getType() { return type; } public void setType(TypeDefinition> type) { this.type = type; } @Override public boolean isUserOrdered() { return userOrdered; } private void setUserOrdered(boolean userOrdered) { this.userOrdered = userOrdered; } @Override public List getUnknownSchemaNodes() { return unknownSchemaNodes; } private void setUnknownSchemaNodes(List unknownSchemaNodes) { if(unknownSchemaNodes != null) { this.unknownSchemaNodes = unknownSchemaNodes; } } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((qname == null) ? 0 : qname.hashCode()); result = prime * result + ((path == null) ? 0 : path.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } LeafListSchemaNodeImpl other = (LeafListSchemaNodeImpl) obj; if (qname == null) { if (other.qname != null) { return false; } } else if (!qname.equals(other.qname)) { return false; } if (path == null) { if (other.path != null) { return false; } } else if (!path.equals(other.path)) { return false; } return true; } @Override public String toString() { StringBuilder sb = new StringBuilder( LeafListSchemaNodeImpl.class.getSimpleName()); sb.append("["); sb.append("qname=" + qname); sb.append(", path=" + path); sb.append(", description=" + description); sb.append(", reference=" + reference); sb.append(", status=" + status); sb.append(", augmenting=" + augmenting); sb.append(", configuration=" + configuration); sb.append(", constraints=" + constraints); sb.append(", type=" + type); sb.append(", userOrdered=" + userOrdered); sb.append("]"); return sb.toString(); } } }