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

com.global.api.entities.IRecurringEntity Maven / Gradle / Ivy

There is a newer version: 14.2.3
Show newest version
package com.global.api.entities;

import com.global.api.entities.exceptions.ApiException;

public interface IRecurringEntity {
    String getId();
    void setId(String value);
    String getKey();
    void setKey(String value);

    T create(String configName) throws ApiException;
    void delete() throws ApiException;
    void delete(boolean force) throws ApiException;
    T saveChanges() throws ApiException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy