Github user jburwell commented on a diff in the pull request:

    https://github.com/apache/cloudstack/pull/801#discussion_r43031680
  
    --- Diff: 
plugins/network-elements/nuage-vsp/src/com/cloud/agent/api/sync/SyncDomainAnswer.java
 ---
    @@ -17,28 +17,38 @@
     // under the License.
     //
     
    -package com.cloud.agent.api.guru;
    -
    -import java.util.List;
    -import java.util.Map;
    +package com.cloud.agent.api.sync;
     
     import com.cloud.agent.api.Answer;
    -import com.cloud.agent.api.Command;
     
    -public class ReserveVmInterfaceVspAnswer extends Answer {
    +public class SyncDomainAnswer extends Answer {
    +
    +    private final boolean _success;
     
    -    public List<Map<String, String>> _interfaceDetails;
    +    public SyncDomainAnswer(boolean success) {
    +        super();
    +        this._success = success;
    +    }
     
    -    public ReserveVmInterfaceVspAnswer(Command cmd, List<Map<String, 
String>> interfaceDetails, String details) {
    -        super(cmd, true, details);
    -        this._interfaceDetails = interfaceDetails;
    +    public boolean getSuccess() {
    +        return _success;
         }
     
    -    public ReserveVmInterfaceVspAnswer(Command cmd, Exception e) {
    -        super(cmd, e);
    +
    +    @Override
    +    public boolean equals(Object o) {
    --- End diff --
    
    This ``equals`` implementation should include attributes from the 
``Answer`` super class.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to