From d68919c161873468d2c582da6a2e053a53eda833 Mon Sep 17 00:00:00 2001 From: Martin Bobak Date: Wed, 1 Apr 2015 15:51:52 +0200 Subject: [PATCH] CommonService publishes its methods and properties Change-Id: I89d6f287e90d5c71e2ca4a78cc5c4b605451b9fa Signed-off-by: Martin Bobak --- .../openflowplugin/impl/services/CommonService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/services/CommonService.java b/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/services/CommonService.java index 11499c90e5..c72a41742e 100644 --- a/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/services/CommonService.java +++ b/openflowplugin-impl/src/main/java/org/opendaylight/openflowplugin/impl/services/CommonService.java @@ -24,7 +24,7 @@ import org.opendaylight.yangtools.yang.common.RpcResult; import org.opendaylight.yangtools.yang.common.RpcResultBuilder; import org.slf4j.Logger; -abstract class CommonService { +public abstract class CommonService { private static final Logger LOG = org.slf4j.LoggerFactory.getLogger(CommonService.class); private static final long WAIT_TIME = 2000; protected final static Future> ERROR_RPC_RESULT = Futures.immediateFuture(RpcResultBuilder @@ -38,7 +38,7 @@ abstract class CommonService { protected DeviceContext deviceContext; private ConnectionAdapter primaryConnectionAdapter; - CommonService() { + public CommonService() { } public CommonService(final RpcContext rpcContext) { -- 2.36.6