org.drools.impl.adapters.AnnotationAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of knowledge-api Show documentation
Show all versions of knowledge-api Show documentation
The Drools and jBPM public API which is backwards compatible between releases.
package org.drools.impl.adapters;
import org.kie.api.definition.type.Annotation;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
public class AnnotationAdapter implements org.drools.definition.type.Annotation {
private final Annotation delegate;
public AnnotationAdapter(Annotation delegate) {
this.delegate = delegate;
}
public String getName() {
return delegate.getName();
}
public Object getPropertyValue(String key) {
return delegate.getPropertyValue(key);
}
public Class getPropertyType(String key) {
return delegate.getPropertyType(key);
}
public static List adaptAnnotations(Collection annotations) {
List result = new ArrayList();
for (org.kie.api.definition.type.Annotation annotation : annotations) {
result.add(new AnnotationAdapter(annotation));
}
return result;
}
@Override
public int hashCode() {
return delegate.hashCode();
}
@Override
public boolean equals(Object obj) {
return obj instanceof AnnotationAdapter && delegate.equals(((AnnotationAdapter)obj).delegate);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy