Project

General

Profile

« Previous | Next » 

Revision cedc4ff1

Added by Katja Luther about 6 years ago

ref #2380: implement usage of Dto for taxon navigator

View differences:

eu.etaxonomy.taxeditor.navigation/src/main/java/eu/etaxonomy/taxeditor/navigation/navigator/operation/RemotingMoveTaxonOperation.java
61 61
        this.moveToParentNode = moveToParentNode;
62 62
    }
63 63

  
64
    public RemotingMoveTaxonOperation(Object source,
65
            boolean async,
66
            Set<UUID> taxonNodesToMoveUuid,
67
            TaxonNode newParentTreeNode,
68
            MovingType moveToParentNode) {
64

  
65
    /**
66
     * @param source
67
     * @param async
68
     * @param uuids
69
     * @param uuid
70
     * @param child
71
     */
72
    public RemotingMoveTaxonOperation(Object source, boolean async, Set<UUID> uuids, UUID uuid,
73
            MovingType child) {
69 74
        super(LABEL, Action.Update, source,async);
70
        this.taxonNodesToMoveUuid = taxonNodesToMoveUuid;
71
        this.newParentTreeNodeUuid = newParentTreeNode.getUuid();
72
        this.moveToParentNode = moveToParentNode;
75
        this.taxonNodesToMoveUuid = uuids;
76
        this.newParentTreeNodeUuid = uuid;
77
        this.moveToParentNode = child;
73 78
    }
74 79

  
75 80
    /* (non-Javadoc)

Also available in: Unified diff