congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
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

  • Start an intent from android
  • setScale (BigDecimal)
  • getSharedPreferences (Context)
  • requestLocationUpdates (LocationManager)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • SortedSet (java.util)
    SortedSet is a Set which iterates over its elements in a sorted order. The order is determined eithe
  • ServletException (javax.servlet)
    Defines a general exception a servlet can throw when it encounters difficulty.
  • BoxLayout (javax.swing)
  • Best plugins for Eclipse
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