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

org.ikasan.spec.scheduled.context.model.ContextParameter Maven / Gradle / Ivy

package org.ikasan.spec.scheduled.context.model;

import java.io.Serializable;

public interface ContextParameter extends Serializable {

    /**
     * Retrieves the name of the object.
     *
     * @return The name of the object as a String.
     */
    String getName();

    /**
     * Sets the name of the object.
     *
     * @param name the new name to set
     */
    void setName(String name);

    /**
     * Retrieves the default value of the context parameter.
     *
     * @return The default value of the context parameter.
     */
    String getDefaultValue();

    /**
     * Sets the default value for the context parameter.
     *
     * @param defaultValue The default value for the context parameter
     */
    void setDefaultValue(String defaultValue);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy