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

com.sap.cloud.lm.sl.slp.services.TaskExtensionService Maven / Gradle / Ivy

package com.sap.cloud.lm.sl.slp.services;

import com.sap.cloud.lm.sl.persistence.services.ProgressMessageService;

public class TaskExtensionService extends ProgressMessageService {

    private static final String TABLE_NAME = "TASK_EXTENSION";

    private static TaskExtensionService instance;

    TaskExtensionService() {
        super(TABLE_NAME);
    }

    public static TaskExtensionService getInstance() {
        if (instance == null) {
            instance = new TaskExtensionService();
        }
        return instance;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy