com.weaverplatform.protocol.model.ChangeAttributeKeyOperation Maven / Gradle / Ivy
package com.weaverplatform.protocol.model;
public class ChangeAttributeKeyOperation extends WriteOperation {
private String attributeKey, newAttributeKey;
public ChangeAttributeKeyOperation(String user, String id, String graph, String attributeKey, String newAttributeKey) {
super(user, id);
this.setGraph(graph);
this.attributeKey = attributeKey;
this.newAttributeKey = newAttributeKey;
}
public String getAttributeKey() {
return attributeKey;
}
public String getNewAttributeKey() {
return newAttributeKey;
}
@Override
public WriteOperationAction getAction() {
return WriteOperationAction.CHANGE_ATTRIBUTE_KEY;
}
}