
com.liferay.change.tracking.internal.conflict.ModificationConflictInfo Maven / Gradle / Ivy
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.change.tracking.internal.conflict;
import com.liferay.portal.kernel.language.LanguageUtil;
import java.util.ResourceBundle;
/**
* @author Samuel Trong Tran
*/
public class ModificationConflictInfo extends BaseConflictInfo {
public ModificationConflictInfo(long modelClassPK, boolean resolved) {
_modelClassPK = modelClassPK;
_resolved = resolved;
}
@Override
public String getConflictDescription(ResourceBundle resourceBundle) {
return LanguageUtil.get(resourceBundle, "modification-conflict");
}
@Override
public long getCTAutoResolutionInfoId() {
return _ctAutoResolutionInfoId;
}
@Override
public String getResolutionDescription(ResourceBundle resourceBundle) {
String message = "the-conflict-cannot-be-automatically-resolved";
if (isResolved()) {
message = "the-conflict-was-automatically-resolved";
}
return LanguageUtil.get(resourceBundle, message);
}
@Override
public long getSourcePrimaryKey() {
return _modelClassPK;
}
@Override
public long getTargetPrimaryKey() {
return _modelClassPK;
}
@Override
public boolean isResolved() {
return _resolved;
}
public void setCtAutoResolutionInfoId(long ctAutoResolutionInfoId) {
_ctAutoResolutionInfoId = ctAutoResolutionInfoId;
}
private long _ctAutoResolutionInfoId;
private final long _modelClassPK;
private final boolean _resolved;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy