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

sap.ai.st.cm.plugins.ciintegration.odataclient.CMODataChange Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package sap.ai.st.cm.plugins.ciintegration.odataclient;

/**
 * Data transfer Object representing a Change.
 */
public class CMODataChange {
    
    private final String ChangeID;

    public String getChangeID() {
        return ChangeID;
    }

    public boolean isInDevelopment() {
        return isInDevelopment;
    }
    private final boolean isInDevelopment;
    
    public CMODataChange(String ChangeID, boolean isInDevelopment){
        
        this.ChangeID = ChangeID;
        this.isInDevelopment = isInDevelopment;
        
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy