Skip to content

Commit

Permalink
LPS-64897 regen
Browse files Browse the repository at this point in the history
  • Loading branch information
brianchandotcom committed Apr 5, 2016
1 parent e7ee4b3 commit f216c2a
Show file tree
Hide file tree
Showing 67 changed files with 260 additions and 260 deletions.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -654,8 +654,8 @@ public AkismetData findByC_C(long classNameId, long classPK)

msg.append(StringPool.CLOSE_CURLY_BRACE);

if (_log.isWarnEnabled()) {
_log.warn(msg.toString());
if (_log.isDebugEnabled()) {
_log.debug(msg.toString());
}

throw new NoSuchDataException(msg.toString());
Expand Down Expand Up @@ -1033,8 +1033,8 @@ public AkismetData remove(Serializable primaryKey)
primaryKey);

if (akismetData == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
if (_log.isDebugEnabled()) {
_log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}

throw new NoSuchDataException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY +
Expand Down Expand Up @@ -1170,8 +1170,8 @@ public AkismetData findByPrimaryKey(Serializable primaryKey)
AkismetData akismetData = fetchByPrimaryKey(primaryKey);

if (akismetData == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
if (_log.isDebugEnabled()) {
_log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}

throw new NoSuchDataException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY +
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -4521,8 +4521,8 @@ public Entry remove(Serializable primaryKey) throws NoSuchEntryException {
Entry entry = (Entry)session.get(EntryImpl.class, primaryKey);

if (entry == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
if (_log.isDebugEnabled()) {
_log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}

throw new NoSuchEntryException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY +
Expand Down Expand Up @@ -4812,8 +4812,8 @@ public Entry findByPrimaryKey(Serializable primaryKey)
Entry entry = fetchByPrimaryKey(primaryKey);

if (entry == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
if (_log.isDebugEnabled()) {
_log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}

throw new NoSuchEntryException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ public Status findByUserId(long userId) throws NoSuchStatusException {

msg.append(StringPool.CLOSE_CURLY_BRACE);

if (_log.isWarnEnabled()) {
_log.warn(msg.toString());
if (_log.isDebugEnabled()) {
_log.debug(msg.toString());
}

throw new NoSuchStatusException(msg.toString());
Expand Down Expand Up @@ -2000,8 +2000,8 @@ public Status remove(Serializable primaryKey) throws NoSuchStatusException {
Status status = (Status)session.get(StatusImpl.class, primaryKey);

if (status == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
if (_log.isDebugEnabled()) {
_log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}

throw new NoSuchStatusException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY +
Expand Down Expand Up @@ -2189,8 +2189,8 @@ public Status findByPrimaryKey(Serializable primaryKey)
Status status = fetchByPrimaryKey(primaryKey);

if (status == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
if (_log.isDebugEnabled()) {
_log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}

throw new NoSuchStatusException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY +
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -625,8 +625,8 @@ public Entry findByU_EA(long userId, String emailAddress)

msg.append(StringPool.CLOSE_CURLY_BRACE);

if (_log.isWarnEnabled()) {
_log.warn(msg.toString());
if (_log.isDebugEnabled()) {
_log.debug(msg.toString());
}

throw new NoSuchEntryException(msg.toString());
Expand Down Expand Up @@ -1030,8 +1030,8 @@ public Entry remove(Serializable primaryKey) throws NoSuchEntryException {
Entry entry = (Entry)session.get(EntryImpl.class, primaryKey);

if (entry == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
if (_log.isDebugEnabled()) {
_log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}

throw new NoSuchEntryException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY +
Expand Down Expand Up @@ -1205,8 +1205,8 @@ public Entry findByPrimaryKey(Serializable primaryKey)
Entry entry = fetchByPrimaryKey(primaryKey);

if (entry == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
if (_log.isDebugEnabled()) {
_log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}

throw new NoSuchEntryException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY +
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -679,8 +679,8 @@ public KBArticle findByUUID_G(String uuid, long groupId)

msg.append(StringPool.CLOSE_CURLY_BRACE);

if (_log.isWarnEnabled()) {
_log.warn(msg.toString());
if (_log.isDebugEnabled()) {
_log.debug(msg.toString());
}

throw new NoSuchArticleException(msg.toString());
Expand Down Expand Up @@ -2952,8 +2952,8 @@ public KBArticle findByR_V(long resourcePrimKey, int version)

msg.append(StringPool.CLOSE_CURLY_BRACE);

if (_log.isWarnEnabled()) {
_log.warn(msg.toString());
if (_log.isDebugEnabled()) {
_log.debug(msg.toString());
}

throw new NoSuchArticleException(msg.toString());
Expand Down Expand Up @@ -12565,8 +12565,8 @@ public KBArticle findByR_G_V(long resourcePrimKey, long groupId, int version)

msg.append(StringPool.CLOSE_CURLY_BRACE);

if (_log.isWarnEnabled()) {
_log.warn(msg.toString());
if (_log.isDebugEnabled()) {
_log.debug(msg.toString());
}

throw new NoSuchArticleException(msg.toString());
Expand Down Expand Up @@ -31106,8 +31106,8 @@ public KBArticle remove(Serializable primaryKey)
primaryKey);

if (kbArticle == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
if (_log.isDebugEnabled()) {
_log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}

throw new NoSuchArticleException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY +
Expand Down Expand Up @@ -31830,8 +31830,8 @@ public KBArticle findByPrimaryKey(Serializable primaryKey)
KBArticle kbArticle = fetchByPrimaryKey(primaryKey);

if (kbArticle == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
if (_log.isDebugEnabled()) {
_log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}

throw new NoSuchArticleException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -676,8 +676,8 @@ public KBComment findByUUID_G(String uuid, long groupId)

msg.append(StringPool.CLOSE_CURLY_BRACE);

if (_log.isWarnEnabled()) {
_log.warn(msg.toString());
if (_log.isDebugEnabled()) {
_log.debug(msg.toString());
}

throw new NoSuchCommentException(msg.toString());
Expand Down Expand Up @@ -5268,8 +5268,8 @@ public KBComment remove(Serializable primaryKey)
primaryKey);

if (kbComment == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
if (_log.isDebugEnabled()) {
_log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}

throw new NoSuchCommentException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY +
Expand Down Expand Up @@ -5602,8 +5602,8 @@ public KBComment findByPrimaryKey(Serializable primaryKey)
KBComment kbComment = fetchByPrimaryKey(primaryKey);

if (kbComment == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
if (_log.isDebugEnabled()) {
_log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}

throw new NoSuchCommentException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -674,8 +674,8 @@ public KBFolder findByUUID_G(String uuid, long groupId)

msg.append(StringPool.CLOSE_CURLY_BRACE);

if (_log.isWarnEnabled()) {
_log.warn(msg.toString());
if (_log.isDebugEnabled()) {
_log.debug(msg.toString());
}

throw new NoSuchFolderException(msg.toString());
Expand Down Expand Up @@ -2442,8 +2442,8 @@ public KBFolder findByG_P_N(long groupId, long parentKBFolderId, String name)

msg.append(StringPool.CLOSE_CURLY_BRACE);

if (_log.isWarnEnabled()) {
_log.warn(msg.toString());
if (_log.isDebugEnabled()) {
_log.debug(msg.toString());
}

throw new NoSuchFolderException(msg.toString());
Expand Down Expand Up @@ -2730,8 +2730,8 @@ public KBFolder findByG_P_UT(long groupId, long parentKBFolderId,

msg.append(StringPool.CLOSE_CURLY_BRACE);

if (_log.isWarnEnabled()) {
_log.warn(msg.toString());
if (_log.isDebugEnabled()) {
_log.debug(msg.toString());
}

throw new NoSuchFolderException(msg.toString());
Expand Down Expand Up @@ -3262,8 +3262,8 @@ public KBFolder remove(Serializable primaryKey)
primaryKey);

if (kbFolder == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
if (_log.isDebugEnabled()) {
_log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}

throw new NoSuchFolderException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY +
Expand Down Expand Up @@ -3488,8 +3488,8 @@ public KBFolder findByPrimaryKey(Serializable primaryKey)
KBFolder kbFolder = fetchByPrimaryKey(primaryKey);

if (kbFolder == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
if (_log.isDebugEnabled()) {
_log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}

throw new NoSuchFolderException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -675,8 +675,8 @@ public KBTemplate findByUUID_G(String uuid, long groupId)

msg.append(StringPool.CLOSE_CURLY_BRACE);

if (_log.isWarnEnabled()) {
_log.warn(msg.toString());
if (_log.isDebugEnabled()) {
_log.debug(msg.toString());
}

throw new NoSuchTemplateException(msg.toString());
Expand Down Expand Up @@ -2528,8 +2528,8 @@ public KBTemplate remove(Serializable primaryKey)
primaryKey);

if (kbTemplate == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
if (_log.isDebugEnabled()) {
_log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}

throw new NoSuchTemplateException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY +
Expand Down Expand Up @@ -2750,8 +2750,8 @@ public KBTemplate findByPrimaryKey(Serializable primaryKey)
KBTemplate kbTemplate = fetchByPrimaryKey(primaryKey);

if (kbTemplate == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
if (_log.isDebugEnabled()) {
_log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}

throw new NoSuchTemplateException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY +
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -629,8 +629,8 @@ public Account findByU_A(long userId, String address)

msg.append(StringPool.CLOSE_CURLY_BRACE);

if (_log.isWarnEnabled()) {
_log.warn(msg.toString());
if (_log.isDebugEnabled()) {
_log.debug(msg.toString());
}

throw new NoSuchAccountException(msg.toString());
Expand Down Expand Up @@ -1035,8 +1035,8 @@ public Account remove(Serializable primaryKey)
Account account = (Account)session.get(AccountImpl.class, primaryKey);

if (account == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
if (_log.isDebugEnabled()) {
_log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}

throw new NoSuchAccountException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY +
Expand Down Expand Up @@ -1228,8 +1228,8 @@ public Account findByPrimaryKey(Serializable primaryKey)
Account account = fetchByPrimaryKey(primaryKey);

if (account == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
if (_log.isDebugEnabled()) {
_log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}

throw new NoSuchAccountException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -722,8 +722,8 @@ public Attachment remove(Serializable primaryKey)
primaryKey);

if (attachment == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
if (_log.isDebugEnabled()) {
_log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}

throw new NoSuchAttachmentException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY +
Expand Down Expand Up @@ -873,8 +873,8 @@ public Attachment findByPrimaryKey(Serializable primaryKey)
Attachment attachment = fetchByPrimaryKey(primaryKey);

if (attachment == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
if (_log.isDebugEnabled()) {
_log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}

throw new NoSuchAttachmentException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -630,8 +630,8 @@ public Folder findByA_F(long accountId, String fullName)

msg.append(StringPool.CLOSE_CURLY_BRACE);

if (_log.isWarnEnabled()) {
_log.warn(msg.toString());
if (_log.isDebugEnabled()) {
_log.debug(msg.toString());
}

throw new NoSuchFolderException(msg.toString());
Expand Down Expand Up @@ -1036,8 +1036,8 @@ public Folder remove(Serializable primaryKey) throws NoSuchFolderException {
Folder folder = (Folder)session.get(FolderImpl.class, primaryKey);

if (folder == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
if (_log.isDebugEnabled()) {
_log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}

throw new NoSuchFolderException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY +
Expand Down Expand Up @@ -1213,8 +1213,8 @@ public Folder findByPrimaryKey(Serializable primaryKey)
Folder folder = fetchByPrimaryKey(primaryKey);

if (folder == null) {
if (_log.isWarnEnabled()) {
_log.warn(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
if (_log.isDebugEnabled()) {
_log.debug(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY + primaryKey);
}

throw new NoSuchFolderException(_NO_SUCH_ENTITY_WITH_PRIMARY_KEY +
Expand Down
Loading

0 comments on commit f216c2a

Please sign in to comment.