Skip to content

Commit

Permalink
LPS-81428 Missing bridge for getOSGiServiceIdentifier()
Browse files Browse the repository at this point in the history
  • Loading branch information
tinatian authored and shuyangzhou committed May 25, 2018
1 parent ab2fb27 commit df6d72f
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 0 deletions.
Expand Up @@ -122,6 +122,11 @@ public List<AssetCategoryProperty> getCategoryPropertyValues(
groupId, key));
}

@Override
public String getOSGiServiceIdentifier() {
return _assetCategoryPropertyLocalService.getOSGiServiceIdentifier();
}

@Override
public AssetCategoryProperty updateCategoryProperty(
long userId, long categoryPropertyId, String key, String value)
Expand Down
Expand Up @@ -80,6 +80,11 @@ public List<AssetCategoryProperty> getCategoryPropertyValues(
companyId, key));
}

@Override
public String getOSGiServiceIdentifier() {
return _assetCategoryPropertyService.getOSGiServiceIdentifier();
}

@Override
public AssetCategoryProperty updateCategoryProperty(
long userId, long categoryPropertyId, String key, String value)
Expand Down
Expand Up @@ -74,6 +74,11 @@ public void deleteTagStatsByTagId(long tagId) {
_assetTagStatsLocalService.deleteTagStatsByTagId(tagId);
}

@Override
public String getOSGiServiceIdentifier() {
return _assetTagStatsLocalService.getOSGiServiceIdentifier();
}

@Override
public List<AssetTagStats> getTagStats(
long classNameId, int start, int end) {
Expand Down
Expand Up @@ -202,6 +202,11 @@ public List<DLSyncEvent> getLatestDLSyncEvents() {
_dlSyncEventLocalService.getLatestDLSyncEvents());
}

@Override
public String getOSGiServiceIdentifier() {
return _dlSyncEventLocalService.getOSGiServiceIdentifier();
}

@Override
public PersistedModel getPersistedModel(Serializable primaryKeyObj)
throws PortalException {
Expand Down
Expand Up @@ -297,6 +297,11 @@ public int getMBMailingListsCount() {
return _mbMailingListLocalService.getMBMailingListsCount();
}

@Override
public String getOSGiServiceIdentifier() {
return _mbMailingListLocalService.getOSGiServiceIdentifier();
}

@Override
public PersistedModel getPersistedModel(Serializable primaryKeyObj)
throws PortalException {
Expand Down

0 comments on commit df6d72f

Please sign in to comment.