![JAR search and dependency download from the Maven repository](/logo.png)
gldapo.GldapoTypeMappingRegistry Maven / Gradle / Ivy
//
// Generated stub from file:/Users/daleyl/Projects/gldapo/target/checkout/src/main/groovy/gldapo/GldapoTypeMappingRegistry.groovy
//
package gldapo;
import java.lang.*;
import java.io.*;
import java.net.*;
import java.util.*;
import groovy.lang.*;
import groovy.util.*;
import gldapo.schema.attribute.type.DefaultTypeMappings;
import gldapo.schema.attribute.AbstractAttributeMapping;
/**
* Holds the global type mappings to convert values to and from LDAP and Java
*
* @see Gldapo#getTypemappings()
*/
public class GldapoTypeMappingRegistry
extends LinkedList
{
private GldapoTypeMappingRegistry(java.lang.Void void1, java.lang.Void void2, java.lang.Void void3) {
throw new InternalError("Stubbed method");
}
/**
* Installs {@link DefaultTypeMappings} into the registry.
*/
public GldapoTypeMappingRegistry() {
this((java.lang.Void)null, (java.lang.Void)null, (java.lang.Void)null);
throw new InternalError("Stubbed method");
}
public void installDefaults() {
throw new InternalError("Stubbed method");
}
/**
* Returns a closure that can be used to convert a LDAP value to a particular type.
*
* Uses {@link AbstractAttributeMapping#toGroovyByTypeMapperName(String)} to calculate the name of the
* suitable mapping method
*/
public java.lang.Object getToGroovyMapperForType(java.lang.String type) {
throw new InternalError("Stubbed method");
}
/**
* Returns a closure that can be used to convert a groovy value to an LDAP value (string)
*
* Uses {@link AbstractAttributeMapping#toLdapByTypeMapperName(String)} to calculate the name of the
* suitable mapping method
*/
public java.lang.Object getToLdapMapperForType(java.lang.String type) {
throw new InternalError("Stubbed method");
}
public java.lang.Object findMapper(java.lang.String mapperName, Class[] argTypes) {
throw new InternalError("Stubbed method");
}
public void clear() {
throw new InternalError("Stubbed method");
}
public groovy.lang.MetaClass getMetaClass() {
throw new InternalError("Stubbed method");
}
public void setMetaClass(groovy.lang.MetaClass metaClass) {
throw new InternalError("Stubbed method");
}
public java.lang.Object invokeMethod(java.lang.String name, java.lang.Object args) {
throw new InternalError("Stubbed method");
}
public java.lang.Object getProperty(java.lang.String name) {
throw new InternalError("Stubbed method");
}
public void setProperty(java.lang.String name, java.lang.Object value) {
throw new InternalError("Stubbed method");
}
}