Skip to content

Commit

Permalink
WELD-1308 Add method place holders
Browse files Browse the repository at this point in the history
  • Loading branch information
jharting committed Jan 22, 2013
1 parent 8f42c4e commit 5347cf1
Showing 1 changed file with 11 additions and 0 deletions.
Expand Up @@ -32,6 +32,7 @@
import org.jboss.weld.bootstrap.spi.BeanDeploymentArchive;
import org.jboss.weld.bootstrap.spi.Deployment;
import org.jboss.weld.exceptions.DefinitionException;
import org.jboss.weld.exceptions.UnsupportedOperationException;
import org.jboss.weld.literal.InterceptorBindingTypeLiteral;
import org.jboss.weld.literal.NormalScopeLiteral;
import org.jboss.weld.literal.QualifierLiteral;
Expand Down Expand Up @@ -112,4 +113,14 @@ public void addAnnotatedType(AnnotatedType<?> source, String id) {
BeanDeployer deployer = getOrCreateBeanDeployment(source.getJavaClass()).getBeanDeployer();
deployer.addSyntheticClass(source, (Extension) receiver, id);
}

@Override
public void addQualifier(AnnotatedType<? extends Annotation> qualifier) {
throw new UnsupportedOperationException();
}

@Override
public void addInterceptorBinding(AnnotatedType<? extends Annotation> bindingType) {
throw new UnsupportedOperationException();
}
}

0 comments on commit 5347cf1

Please sign in to comment.