
aQute.bnd.component.error.DeclarativeServicesAnnotationError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of biz.aQute.bndlib Show documentation
Show all versions of biz.aQute.bndlib Show documentation
bndlib: A Swiss Army Knife for OSGi
The newest version!
package aQute.bnd.component.error;
public class DeclarativeServicesAnnotationError {
public enum ErrorType {
ACTIVATE_SIGNATURE_ERROR,
DEACTIVATE_SIGNATURE_ERROR,
MODIFIED_SIGNATURE_ERROR,
COMPONENT_PROPERTIES_ERROR,
INVALID_REFERENCE_BIND_METHOD_NAME,
MULTIPLE_REFERENCES_SAME_NAME,
UNABLE_TO_LOCATE_SUPER_CLASS,
DYNAMIC_REFERENCE_WITHOUT_UNBIND,
INVALID_TARGET_FILTER,
UNSET_OR_MODIFY_WITH_WRONG_SIGNATURE,
MIXED_USE_OF_DS_ANNOTATIONS_BND,
MIXED_USE_OF_DS_ANNOTATIONS_STD,
REFERENCE,
DYNAMIC_FINAL_FIELD_WITH_REPLACE,
DYNAMIC_FIELD_NOT_VOLATILE,
FINAL_FIELD_WITH_REPLACE,
UPDATE_FIELD_WITH_STATIC,
UPDATE_FIELD_WITH_UNARY,
COLLECTION_SUBCLASS_FIELD_WITH_REPLACE,
INCOMPATIBLE_SERVICE,
MISSING_REFERENCE_NAME,
COMPONENT_PROPERTY_ANNOTATION_PROBLEM,
INVALID_COMPONENT_TYPE,
CONSTRUCTOR_SIGNATURE_ERROR,
VERSION_MISMATCH,
ANYSERVICE_NO_TARGET,
OPTIONAL_FIELD_WITH_MULTIPLE,
MISSING_PROPERTIES_FILE,
MISSING_FACTORYPROPERTIES_FILE;
}
public final String className;
public final String methodName;
public final String methodSignature;
public final String fieldName;
public final ErrorType errorType;
public DeclarativeServicesAnnotationError(String className, String methodName, String methodSignature,
ErrorType errorType) {
this.className = className;
this.methodName = methodName;
this.methodSignature = methodSignature;
this.fieldName = null;
this.errorType = errorType;
}
public DeclarativeServicesAnnotationError(String className, String fieldName, ErrorType errorType) {
this.className = className;
this.methodName = null;
this.methodSignature = null;
this.fieldName = fieldName;
this.errorType = errorType;
}
public String location() {
if (fieldName != null) {
return String.format("%s.%s", className, fieldName);
}
if (methodName != null) {
return String.format("%s.%s%s", className, methodName, methodSignature);
}
return className;
}
@Override
public String toString() {
return location() + " " + errorType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy