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

org.kohsuke.github.SCIMOperation Maven / Gradle / Ivy

package org.kohsuke.github;

/**
 * Represents the result of a SCIM operation.
 *
 * @author Hiroyuki Wada
 */
public class SCIMOperation {
    public final String op;
    public final String path;
    public final T value;

    public SCIMOperation(String op, String path, T value) {
        this.op = op;
        this.path = path;
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy