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

com.sap.cds.services.auditlog.Attribute Maven / Gradle / Ivy

/**************************************************************************
 * (C) 2019-2024 SAP SE or an SAP affiliate company. All rights reserved. *
 **************************************************************************/
package com.sap.cds.services.auditlog;

import com.sap.cds.CdsData;
import com.sap.cds.Struct;
import com.sap.cds.ql.CdsName;

/**
 * An attribute that was read or modified.
 */
@CdsName("com.sap.cds.services.auditlog.Attribute")
public interface Attribute extends CdsData {
  String NAME = "name";

  /**
   * The attribute name.
   */
  String getName();

  /**
   * The attribute name.
   */
  void setName(String name);

  static Attribute create() {
    return Struct.create(Attribute.class);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy