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

com.weaverplatform.protocol.model.RemovePropertyOperation Maven / Gradle / Ivy

There is a newer version: 3.7.2
Show newest version
package com.weaverplatform.protocol.model;

/**
 * @author Bastiaan Bijl
 */
public abstract class RemovePropertyOperation extends RemoveNodeOperation {

  private String replacesId, replacesGraph;

  public RemovePropertyOperation(String replacesId) {
    super(null);
    this.replacesId = replacesId;
  }

  @Deprecated
  public RemovePropertyOperation(String id, String removeId) {
    super(id, removeId);
    this.replacesId = id;
  }

  public String getReplacesId() {
    return replacesId;
  }

  public void setReplacesId(String replacesId) {
    this.replacesId = replacesId;
  }

  public String getReplacesGraph() {
    return replacesGraph;
  }

  public void setReplacesGraph(String replacesGraph) {
    this.replacesGraph = replacesGraph;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy