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

ai.stapi.graphoperations.objectGraphLanguage.InterfaceObjectGraphMapping Maven / Gradle / Ivy

There is a newer version: 0.3.2
Show newest version
package ai.stapi.graphoperations.objectGraphLanguage;

import ai.stapi.graphoperations.graphLanguage.graphDescription.GraphDescription;

public class InterfaceObjectGraphMapping extends AbstractObjectGraphMapping {

  public static final String SERIALIZATION_TYPE = "InterfaceObjectGraphMapping";
  private String interfaceUuid;

  public InterfaceObjectGraphMapping() {
    super(SERIALIZATION_TYPE);
  }

  public InterfaceObjectGraphMapping(
      String interfaceUuid,
      GraphDescription graphDescription
  ) {
    super(
        graphDescription,
        SERIALIZATION_TYPE
    );
    this.interfaceUuid = interfaceUuid;
  }

  public String getInterfaceUuid() {
    return interfaceUuid;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy