All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.nem.symbol.sdk.infrastructure.vertx.mappers.AccountOperationRestrictionTransactionMapper Maven / Gradle / Ivy

/*
 * Copyright 2020 NEM
 *
 * 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.nem.symbol.sdk.infrastructure.vertx.mappers;

import io.nem.symbol.sdk.model.network.NetworkType;
import io.nem.symbol.sdk.model.transaction.AccountOperationRestrictionFlags;
import io.nem.symbol.sdk.model.transaction.AccountOperationRestrictionTransaction;
import io.nem.symbol.sdk.model.transaction.AccountOperationRestrictionTransactionFactory;
import io.nem.symbol.sdk.model.transaction.JsonHelper;
import io.nem.symbol.sdk.model.transaction.TransactionType;
import io.nem.symbol.sdk.openapi.vertx.model.AccountOperationRestrictionTransactionDTO;
import io.nem.symbol.sdk.openapi.vertx.model.AccountRestrictionFlagsEnum;
import io.nem.symbol.sdk.openapi.vertx.model.TransactionTypeEnum;
import java.util.List;
import java.util.stream.Collectors;

/** DTO mapper of {@link AccountOperationRestrictionTransaction}. */
public class AccountOperationRestrictionTransactionMapper
    extends AbstractTransactionMapper<
        AccountOperationRestrictionTransactionDTO, AccountOperationRestrictionTransaction> {

  public AccountOperationRestrictionTransactionMapper(JsonHelper jsonHelper) {
    super(
        jsonHelper,
        TransactionType.ACCOUNT_OPERATION_RESTRICTION,
        AccountOperationRestrictionTransactionDTO.class);
  }

  @Override
  protected AccountOperationRestrictionTransactionFactory createFactory(
      NetworkType networkType, AccountOperationRestrictionTransactionDTO transaction) {
    AccountOperationRestrictionFlags restrictionFlags =
        AccountOperationRestrictionFlags.rawValueOf(transaction.getRestrictionFlags().getValue());

    List additions =
        transaction.getRestrictionAdditions().stream()
            .map(transactionTypeEnum -> TransactionType.rawValueOf(transactionTypeEnum.getValue()))
            .collect(Collectors.toList());

    List deletions =
        transaction.getRestrictionDeletions().stream()
            .map(transactionTypeEnum -> TransactionType.rawValueOf(transactionTypeEnum.getValue()))
            .collect(Collectors.toList());
    return AccountOperationRestrictionTransactionFactory.create(
        networkType, restrictionFlags, additions, deletions);
  }

  @Override
  protected void copyToDto(
      AccountOperationRestrictionTransaction transaction,
      AccountOperationRestrictionTransactionDTO dto) {
    dto.setRestrictionFlags(
        AccountRestrictionFlagsEnum.fromValue(transaction.getRestrictionFlags().getValue()));

    List additions =
        transaction.getRestrictionAdditions().stream()
            .map(transactionType -> TransactionTypeEnum.fromValue(transactionType.getValue()))
            .collect(Collectors.toList());

    List deletions =
        transaction.getRestrictionDeletions().stream()
            .map(transactionType -> TransactionTypeEnum.fromValue(transactionType.getValue()))
            .collect(Collectors.toList());

    dto.setRestrictionAdditions(additions);
    dto.setRestrictionDeletions(deletions);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy