mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
ALF-9155 related refactoring
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@29525 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -32,10 +32,7 @@ public class BlogEntity extends NodeBackedEntity
|
||||
private String postedDate;
|
||||
|
||||
// Supplemental query-related parameters
|
||||
private Long parentNodeId;
|
||||
private Long nameQNameId;
|
||||
private Long publishedQNameId;
|
||||
private Long contentTypeQNameId;
|
||||
|
||||
private Long blogIntAspectQNameId;
|
||||
private Long blogIntPostedQNameId;
|
||||
@@ -50,11 +47,8 @@ public class BlogEntity extends NodeBackedEntity
|
||||
|
||||
public BlogEntity(Long parentNodeId, Long nameQNameId, Long publishedQNameId, Long contentTypeQNameId, Long blogIntAspectQNameId, Long blogIntPostedQNameId)
|
||||
{
|
||||
super();
|
||||
this.parentNodeId = parentNodeId;
|
||||
this.nameQNameId = nameQNameId;
|
||||
super(parentNodeId, nameQNameId, contentTypeQNameId);
|
||||
this.publishedQNameId = publishedQNameId;
|
||||
this.contentTypeQNameId = contentTypeQNameId;
|
||||
|
||||
this.blogIntAspectQNameId = blogIntAspectQNameId;
|
||||
this.blogIntPostedQNameId = blogIntPostedQNameId;
|
||||
@@ -84,26 +78,11 @@ public class BlogEntity extends NodeBackedEntity
|
||||
|
||||
// Supplemental query-related parameters
|
||||
|
||||
public Long getParentNodeId()
|
||||
{
|
||||
return parentNodeId;
|
||||
}
|
||||
|
||||
public Long getNameQNameId()
|
||||
{
|
||||
return nameQNameId;
|
||||
}
|
||||
|
||||
public Long getPublishedQNameId()
|
||||
{
|
||||
return publishedQNameId;
|
||||
}
|
||||
|
||||
public Long getContentTypeQNameId()
|
||||
{
|
||||
return contentTypeQNameId;
|
||||
}
|
||||
|
||||
public Long getBlogIntAspectQNameId()
|
||||
{
|
||||
return blogIntAspectQNameId;
|
||||
|
Reference in New Issue
Block a user