Tabnine Logo
In
Code IndexAdd Tabnine to your IDE (free)

How to use
In
in
jodd.madvoc.meta

Best Java code snippets using jodd.madvoc.meta.In (Showing top 20 results out of 315)

origin: oblac/jodd

static class Action {
  @In String input;
}
origin: org.jodd/jodd-wot

/**
 * Inspects single IN annotation for a property.
 */
protected ScopeData.In inspectIn(In in, ScopeType scopeType, String propertyName, Class propertyType) {
  if (in == null) {
    return null;
  }
  ScopeType scope = in.scope();
  if (scope != scopeType) {
    return null;
  }
  ScopeData.In ii = new ScopeData.In();
  fillNameTarget(ii, in.value(), propertyName);
  ii.type = propertyType;
  ii.create = in.create();
  ii.remove = in.remove();
  return ii;
}
origin: oblac/jodd

final InjectionPoint ii = in == null ? null : buildInjectionPoint(in.value(), pd.getName(), pd.getType(), scope);
if (ii != null) {
  listIn.add(ii);
origin: oblac/jodd

final InjectionPoint scopeDataIn = buildInjectionPoint(in.value(), name, type, scope);
if (scopeDataIn != null) {
  count++;
origin: oblac/jodd

@In @MadvocContext
protected ResultMapper resultMapper;
origin: oblac/jodd

@In @MadvocContext
protected MadvocEncoding madvocEncoding;
origin: oblac/jodd

@In @MadvocContext
protected MadvocEncoding madvocEncoding;
origin: oblac/jodd

@Action
public void add(@In String name, @In Foo foo) {
  System.out.println(name);
  System.out.println(foo.value);
}
origin: oblac/jodd

@In @MadvocContext
protected MadvocEncoding madvocEncoding;
origin: oblac/jodd

@In @MadvocContext
protected ResultMapper resultMapper;
origin: oblac/jodd

@In @MadvocContext
protected ResultMapper resultMapper;
origin: oblac/jodd

@In @MadvocContext
protected ScopeResolver scopeResolver;
@In @MadvocContext
protected MadvocEncoding madvocEncoding;
@In @MadvocContext
protected FileUploader fileUploader;
origin: oblac/jodd

@In @MadvocContext
protected ActionsManager actionsManager;
origin: oblac/jodd

@In @MadvocContext
protected ResultMapper resultMapper;
origin: oblac/jodd

static class BaseAction<A, B> {
  @In A input;
  @Out B output;
}
origin: oblac/jodd

public static final String ALIAS_LOGIN = "<login>";
@In @Request protected HttpServletRequest servletRequest;
@In @Request protected HttpServletResponse servletResponse;
origin: oblac/jodd

@In @MadvocContext
protected ActionsManager actionsManager;
@In @MadvocContext
protected FiltersManager filtersManager;
@In @MadvocContext
protected InterceptorsManager interceptorsManager;
@In @MadvocContext
protected ResultsManager resultsManager;
origin: org.jodd/jodd-wot

@In(scope = ScopeType.CONTEXT)
protected MadvocConfig madvocConfig;
origin: org.jodd/jodd-wot

@In(scope = ScopeType.CONTEXT)
protected MadvocConfig madvocConfig;
origin: org.jodd/jodd-wot

@In(scope = ScopeType.CONTEXT)
protected MadvocConfig madvocConfig;
jodd.madvoc.metaIn

Most used methods

  • <init>
  • value
  • create
  • remove
  • scope

Popular in Java

  • Finding current android device location
  • getApplicationContext (Context)
  • setRequestProperty (URLConnection)
  • getSharedPreferences (Context)
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • Top Sublime Text 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