congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
Messages.getMessage
Code IndexAdd Tabnine to your IDE (free)

How to use
getMessage
method
in
org.deegree.services.i18n.Messages

Best Java code snippets using org.deegree.services.i18n.Messages.getMessage (Showing top 5 results out of 315)

origin: deegree/deegree3

/**
 * Short version for lazy people.
 * 
 * @param key
 * @param arguments
 * @return the same as #getMessage
 */
public static String get( String key, Object... arguments ) {
  return getMessage( key, arguments );
}
origin: deegree/deegree3

return getMessage( key, arguments );
origin: deegree/deegree3

        + QUERY_ID_GET_FEATURE_BY_ID + "&ID={}#{}";
} else {
  throw new UnsupportedOperationException( Messages.getMessage( "WFS_BACKREFERENCE_UNSUPPORTED", version ) );
origin: deegree/deegree3

String msg = Messages.getMessage( "CSW_NO_IDENTIFIER_FOUND", requestedIdList );
LOG.debug( msg );
throw new MetadataStoreException( msg );
origin: deegree/deegree3

protected GMLObject retrieveObject( String id )
            throws OWSException {
  GMLObject o = null;
  for ( FeatureStore fs : format.getMaster().getStoreManager().getStores() ) {
    try {
      o = fs.getObjectById( id );
    } catch ( FeatureStoreException e ) {
      throw new OWSException( e.getMessage(), NO_APPLICABLE_CODE );
    }
    if ( o != null ) {
      break;
    }
  }
  if ( o == null ) {
    String msg = Messages.getMessage( "WFS_NO_SUCH_OBJECT", id );
    throw new OWSException( new InvalidParameterValueException( msg ) );
  }
  return o;
}
org.deegree.services.i18nMessagesgetMessage

Javadoc

Returns the message assigned to the passed key. If no message is assigned, an error message will be returned that indicates the missing key.

Popular methods of Messages

  • get
  • overrideMessages

Popular in Java

  • Creating JSON documents from java classes using gson
  • getSystemService (Context)
  • getSharedPreferences (Context)
  • setContentView (Activity)
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • URL (java.net)
    A Uniform Resource Locator that identifies the location of an Internet resource as specified by RFC
  • DateFormat (java.text)
    Formats or parses dates and times.This class provides factories for obtaining instances configured f
  • TimeZone (java.util)
    TimeZone represents a time zone offset, and also figures out daylight savings. Typically, you get a
  • Collectors (java.util.stream)
  • ImageIO (javax.imageio)
  • Top 17 PhpStorm Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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