blob: 89a899c918fc33f8a41b69281817f2ecacc83e5a [file] [log] [blame]
/*
* Copyright 2017 The Mifos Initiative.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.mifos.portfolio.service.internal.mapper;
import io.mifos.core.lang.DateConverter;
import io.mifos.portfolio.api.v1.domain.TaskInstance;
import io.mifos.portfolio.service.internal.repository.TaskInstanceEntity;
/**
* @author Myrle Krantz
*/
public interface TaskInstanceMapper {
static TaskInstance map(final TaskInstanceEntity from) {
final TaskInstance ret = new TaskInstance();
ret.setTaskIdentifier(from.getTaskDefinition().getIdentifier());
ret.setComment(from.getComment());
ret.setExecutedBy(from.getExecutedBy());
ret.setExecutedOn(from.getExecutedOn() == null ? null : DateConverter.toIsoString(from.getExecutedOn()));
return ret;
}
}