X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fconfig%2Fconfig-manager-facade-xml%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fconfig%2Ffacade%2Fxml%2Fmapping%2Fattributes%2Fresolving%2FAbstractAttributeResolvingStrategy.java;h=4f9cef4179885328a9d61a813ae77b6940abe9ec;hp=0443013a3fae852d37d284831dfdfba06b68fd43;hb=d266f4384d4850af9049d7cddd2bbac8f75ba61e;hpb=e331fa568ee0b7a33ec451a104123bcbf7d86e78 diff --git a/opendaylight/config/config-manager-facade-xml/src/main/java/org/opendaylight/controller/config/facade/xml/mapping/attributes/resolving/AbstractAttributeResolvingStrategy.java b/opendaylight/config/config-manager-facade-xml/src/main/java/org/opendaylight/controller/config/facade/xml/mapping/attributes/resolving/AbstractAttributeResolvingStrategy.java index 0443013a3f..4f9cef4179 100644 --- a/opendaylight/config/config-manager-facade-xml/src/main/java/org/opendaylight/controller/config/facade/xml/mapping/attributes/resolving/AbstractAttributeResolvingStrategy.java +++ b/opendaylight/config/config-manager-facade-xml/src/main/java/org/opendaylight/controller/config/facade/xml/mapping/attributes/resolving/AbstractAttributeResolvingStrategy.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015 Cisco Systems, Inc. and others. All rights reserved. + * Copyright (c) 2015, 2017 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, @@ -10,7 +10,8 @@ package org.opendaylight.controller.config.facade.xml.mapping.attributes.resolvi import javax.management.openmbean.OpenType; -abstract class AbstractAttributeResolvingStrategy> implements AttributeResolvingStrategy { +public abstract class AbstractAttributeResolvingStrategy> + implements AttributeResolvingStrategy { private O openType; public AbstractAttributeResolvingStrategy(final O openType) { @@ -23,7 +24,8 @@ abstract class AbstractAttributeResolvingStrategy> impl } /** - * Composite types might change during resolution. Use this setter to update open type + * Composite types might change during resolution. Use this setter to update + * open type */ public void setOpenType(final O openType) { this.openType = openType;