Tabnine Logo
MetadataRepository.getActivation
Code IndexAdd Tabnine to your IDE (free)

How to use
getActivation
method
in
org.jboss.jca.core.spi.mdr.MetadataRepository

Best Java code snippets using org.jboss.jca.core.spi.mdr.MetadataRepository.getActivation (Showing top 2 results out of 315)

origin: org.jboss.ironjacamar/ironjacamar-core-impl

/**
* Get the bean validation groups
* @param id The MDR identifier
* @return The groups; <code>null</code> if none were found
*/
private Set<String> getBeanValidationGroups(String id)
{
 if (id == null || id.equals(""))
   return null;
 try
 {
   Activation a = mdr.getActivation(id);
   if (a != null && a.getBeanValidationGroups() != null && a.getBeanValidationGroups().size() > 0)
   {
    Set<String> groups = new HashSet<String>();
    for (String group : a.getBeanValidationGroups())
    {
      groups.add(group);
    }
    return groups;
   }
 }
 catch (Throwable t)
 {
   log.debugf(t, "Exception while loading ironjacamar.xml: %s", id);
 }
 return null;
}
origin: org.jboss.ironjacamar/ironjacamar-deployers-fungal

Activation activation = metadataRepository.getActivation(url.toExternalForm());
org.jboss.jca.core.spi.mdrMetadataRepositorygetActivation

Javadoc

Get the Activation metadata for a resource adapter deployment

Popular methods of MetadataRepository

  • getResourceAdapter
    Get the metadata for a resource adapter
  • getResourceAdapters
    Get the resource adapters unique ids registered
  • getRoot
    Get the root for a resource adapter deployment
  • hasJndiMappings
    Check if there exists JNDI mappings for a unique id
  • registerJndiMapping
    Register a JNDI mapping for a unique id
  • registerResourceAdapter
    Register a resource adapter template
  • unregisterJndiMapping
    Unregister a JNDI mapping for a unique id
  • unregisterResourceAdapter
    Unregister a resource adapter template

Popular in Java

  • Parsing JSON documents to java classes using gson
  • findViewById (Activity)
  • getContentResolver (Context)
  • scheduleAtFixedRate (Timer)
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • Stack (java.util)
    Stack is a Last-In/First-Out(LIFO) data structure which represents a stack of objects. It enables u
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now