Skip to content

Commit 534a56d

Browse files
committed
fix naming
Signed-off-by: Abhishek Kumar <[email protected]>
1 parent 2e77980 commit 534a56d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
import org.apache.cloudstack.extension.Extension;
2727
import org.apache.cloudstack.framework.extensions.vo.ExtensionVO;
2828

29-
public class ExternalOrchestratorDaoImpl extends GenericDaoBase<ExtensionVO, Long> implements ExtensionDao {
29+
public class ExtensionDaoImpl extends GenericDaoBase<ExtensionVO, Long> implements ExtensionDao {
3030

3131
private final SearchBuilder<ExtensionVO> AllFieldSearch;
3232

33-
public ExternalOrchestratorDaoImpl() {
33+
public ExtensionDaoImpl() {
3434
AllFieldSearch = createSearchBuilder();
3535
AllFieldSearch.and("name", AllFieldSearch.entity().getName(), SearchCriteria.Op.EQ);
3636
AllFieldSearch.and("type", AllFieldSearch.entity().getType(), SearchCriteria.Op.EQ);
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
import org.apache.cloudstack.framework.extensions.vo.ExtensionDetailsVO;
2121
import org.apache.cloudstack.resourcedetail.ResourceDetailsDaoBase;
2222

23-
public class ExternalOrchestratorDetailDaoImpl extends ResourceDetailsDaoBase<ExtensionDetailsVO> implements ExtensionDetailsDao {
23+
public class ExtensionDetailsDaoImpl extends ResourceDetailsDaoBase<ExtensionDetailsVO> implements ExtensionDetailsDao {
2424
@Override
2525
public void addDetail(long resourceId, String key, String value, boolean display) {
2626
super.addDetail(new ExtensionDetailsVO(resourceId, key, value, display));

framework/extensions/src/main/resources/META-INF/cloudstack/core/spring-framework-extensions-core-context.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
http://www.springframework.org/schema/context
2727
http://www.springframework.org/schema/context/spring-context.xsd"
2828
>
29-
<bean id="ExternalOrchestratorDaoImpl" class="org.apache.cloudstack.framework.extensions.dao.ExternalOrchestratorDaoImpl" />
30-
<bean id="ExternalOrchestratorDetailDaoImpl" class="org.apache.cloudstack.framework.extensions.dao.ExternalOrchestratorDetailDaoImpl" />
29+
<bean id="ExternalOrchestratorDaoImpl" class="org.apache.cloudstack.framework.extensions.dao.ExtensionDaoImpl" />
30+
<bean id="ExternalOrchestratorDetailDaoImpl" class="org.apache.cloudstack.framework.extensions.dao.ExtensionDetailsDaoImpl" />
3131
<bean id="ExtensionResourceMapDaoImpl" class="org.apache.cloudstack.framework.extensions.dao.ExtensionResourceMapDaoImpl" />
3232
<bean id="ExtensionResourceMapDetailsDaoImpl" class="org.apache.cloudstack.framework.extensions.dao.ExtensionResourceMapDetailsDaoImpl" />
3333
<bean id="ExtensionsManager" class="org.apache.cloudstack.framework.extensions.manager.ExtensionsManagerImpl" />

0 commit comments

Comments
 (0)