org.fabric3.implementation.java.introspection.IllegalManagementAttribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fabric3-java Show documentation
Show all versions of fabric3-java Show documentation
Fabric3 Java Component Implementation.
package org.fabric3.implementation.java.introspection;
import org.fabric3.host.contribution.ValidationFailure;
/**
* @version $Rev: 10229 $ $Date: 2011-04-24 22:06:55 +0000 (Sun, 24 Apr 2011) $
*/
public class IllegalManagementAttribute extends ValidationFailure {
private String implClass;
public IllegalManagementAttribute(String implClass) {
this.implClass = implClass;
}
public String getMessage() {
return "Implementation class " + implClass + " is marked as a managed component but management is not supported for its scope. " +
"Management will not be enabled.";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy