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

org.mobicents.ss7.extension.SS7MbeanConstructorParameterDefinition Maven / Gradle / Ivy

There is a newer version: 8.0.112
Show newest version
package org.mobicents.ss7.extension;

import org.jboss.as.controller.PathElement;
import org.jboss.as.controller.SimpleResourceDefinition;

public class SS7MbeanConstructorParameterDefinition extends SimpleResourceDefinition {

    public static final String PARAMETER = "parameter";
    public static final PathElement PARAMETER_PATH = PathElement.pathElement(PARAMETER);
    public static final SS7MbeanConstructorParameterDefinition INSTANCE = new SS7MbeanConstructorParameterDefinition();

    private SS7MbeanConstructorParameterDefinition() {
        super(PARAMETER_PATH,
                SS7Extension.getResourceDescriptionResolver(SS7MbeanDefinition.MBEAN + "." + PARAMETER),
                SS7MbeanConstructorParameterAdd.INSTANCE,
                SS7MbeanConstructorParameterRemove.INSTANCE);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy