Uses of Class
org.marketcetera.util.except.I18NException

Packages that use I18NException
org.marketcetera.util.auth Multi-context gathering of credentials for authentication. 
org.marketcetera.util.except Nested exception framework with internationalization (i18n) and thread interruption support. 
org.marketcetera.util.exec Process execution. 
org.marketcetera.util.file Miscellaneous utilities for file management. 
org.marketcetera.util.l10n Message localization tools. 
org.marketcetera.util.unicode Unicode en/decoding with BOMs, including I/O stream support. 
org.marketcetera.util.ws.stateful Web services infrastructure. 
org.marketcetera.util.ws.stateless Infrastructure for stateless communication between client and server. 
org.marketcetera.util.ws.tags Tags used to identify aspects of web services, and filters for those tags. 
 

Uses of I18NException in org.marketcetera.util.auth
 

Methods in org.marketcetera.util.auth that throw I18NException
abstract  void Context.setValues()
          Sets the data of the holders associated with the receivers' setters.
 void ConsoleContext.setValues()
           
 void CliContext.setValues()
           
 

Uses of I18NException in org.marketcetera.util.except
 

Subclasses of I18NException in org.marketcetera.util.except
 class I18NInterruptedException
          An internationalized exception indicating interruption.
 

Methods in org.marketcetera.util.except that return I18NException
static I18NException ExceptUtils.wrap(Throwable throwable)
          If the given throwable is an interruption exception per ExceptUtils.isInterruptException(Throwable), then the throwable is wrapped inside a I18NInterruptedException, and this exception is returned; also, the calling thread is interrupted.
static I18NException ExceptUtils.wrap(Throwable throwable, I18NBoundMessage message)
          If the given throwable is an interruption exception per ExceptUtils.isInterruptException(Throwable), then the throwable is wrapped inside a I18NInterruptedException, and this exception is returned; also, the calling thread is interrupted.
 

Uses of I18NException in org.marketcetera.util.exec
 

Methods in org.marketcetera.util.exec that throw I18NException
static ExecResult Exec.run(File directory, Disposition disposition, String... args)
          Executes the process with the given arguments and returns the execution result.
static ExecResult Exec.run(String name, Disposition disposition, String... args)
          Executes the process with the given arguments and returns the execution result.
 

Uses of I18NException in org.marketcetera.util.file
 

Methods in org.marketcetera.util.file that throw I18NException
static void Deleter.apply(File root)
          Deletes the file tree rooted at the given root.
static void Deleter.apply(String name)
          Deletes the file tree rooted at the file with the given name.
static void CopyBytesUtils.copy(byte[] data, String name)
          Copies an in-memory byte array into the given location.
static void CopyCharsUtils.copy(char[] data, String name)
          Copies an in-memory character array into the given location.
static void CopyCharsUnicodeUtils.copy(char[] data, String name, SignatureCharset requestedSignatureCharset)
          Copies an in-memory character array into the given location and using the given signature/charset.
static long CopyBytesUtils.copy(InputStream in, boolean inSkipClose, OutputStream out, boolean outSkipClose)
          Copies a byte stream from the given source to the given sink.
static long CopyBytesUtils.copy(InputStream in, boolean skipClose, String out)
          Copies a byte stream from the given source to the given location.
static long CopyCharsUnicodeUtils.copy(Reader in, boolean skipClose, String out)
          Copies a character stream from the given source to the given location, attempting to retain signature/charset information.
static long CopyCharsUtils.copy(Reader in, boolean skipClose, String out)
          Copies a character stream from the given source to the given location.
static long CopyCharsUtils.copy(Reader in, boolean inSkipClose, Writer out, boolean outSkipClose)
          Copies a character stream from the given source to the given sink.
static byte[] CopyBytesUtils.copy(String name)
          Copies a byte stream from the given location into memory, returning a byte array.
static char[] CopyCharsUtils.copy(String name)
          Copies the character stream at the given location into memory, returning a character array.
static char[] CopyCharsUnicodeUtils.copy(String name, DecodingStrategy decodingStrategy)
          Copies the character stream at the given location (and interpreted using the given strategy) into memory, returning a character array.
static long CopyCharsUnicodeUtils.copy(String in, DecodingStrategy decodingStrategy, String out)
          Copies a character stream from one given location (and interpreted using the given strategy) to another, attempting to retain signature/charset information.
static long CopyCharsUnicodeUtils.copy(String in, DecodingStrategy decodingStrategy, Writer out, boolean skipClose)
          Copies a character stream from the given location (and interpreted using the given strategy) to the given sink.
static long CopyBytesUtils.copy(String in, OutputStream out, boolean skipClose)
          Copies a byte stream from the given location to the given sink.
static long CopyBytesUtils.copy(String in, String out)
          Copies a byte stream from one given location to another.
static long CopyCharsUtils.copy(String in, String out)
          Copies a character stream from one given location to another.
static long CopyCharsUtils.copy(String in, Writer out, boolean skipClose)
          Copies a character stream from the given location to the given sink.
 

Uses of I18NException in org.marketcetera.util.l10n
 

Methods in org.marketcetera.util.l10n that throw I18NException
protected  void ContainerClassInfo.addMessage(I18NMessage message)
          Adds the given message to the receiver's meta-information.
 

Constructors in org.marketcetera.util.l10n that throw I18NException
ContainerClassInfo(Class<?> container)
          Creates a new meta-information holder for the given message container class.
MessageComparator(Class<?> container)
          Creates a new comparator for the given container class and the fallback properties file deduced from the class's message provider.
MessageComparator(Class<?> container, Locale locale)
          Creates a new comparator for the given container class and the properties file deduced from the class's message provider and the given locale.
MessageComparator(ContainerClassInfo classInfo)
          Creates a new comparator for the given container class meta-information and the properties file deduced from the container's message provider.
PropertiesFileInfo(I18NMessageProvider provider)
          Creates a new meta-information holder for the fallback properties file associated with the given provider.
PropertiesFileInfo(I18NMessageProvider provider, Locale locale)
          Creates a new meta-information holder for the properties file associated with the given provider and locale.
 

Uses of I18NException in org.marketcetera.util.unicode
 

Methods in org.marketcetera.util.unicode that throw I18NException
 void SignatureCharset.assertSupported()
          Asserts that the JVM supports the receiver's charset.
 void UnicodeCharset.assertSupported()
          Asserts that the JVM supports the receiver's charset.
 String SignatureCharset.decode(byte[] data)
          Decodes the given byte array using the receiver's charset, and returns the result.
 String DecodingStrategy.decode(byte[] data)
          Decodes the given byte array using the charset paired to a signature (among the signature/charset pairs within the receiver's serializations) that matches the array header, and returns the result.
 String UnicodeCharset.decode(byte[] data)
          Decodes the given byte array using the receiver's charset, and returns the result.
 String UnicodeCharset.decode(byte[] data, int offset, int length)
          Decodes the given portion of the given byte array using the receiver's charset, and returns the result.
static String Serialization.decode(Serialization[] candidates, byte[] data)
          Decodes the given byte array using the charset paired to a signature (among the pairs of the given serializations) that matches the array header, and returns the result.
 byte[] SignatureCharset.encode(String data)
          Encodes the given string using the receiver's charset, and returns the result.
 byte[] UnicodeCharset.encode(String data)
          Encodes the given string using the receiver's charset, and returns the result.
 

Uses of I18NException in org.marketcetera.util.ws.stateful
 

Methods in org.marketcetera.util.ws.stateful that throw I18NException
 void Client.assertValidSession()
          Asserts that an active session is in progress.
protected  SessionHolder<T> RemoteCall.getSessionHolder(ClientContext context)
          Asserts that the given client context matches all of the receiver's filters.
 void Client.login(String user, char[] password)
          Initiates a new session using the given credentials.
 boolean Authenticator.shouldAllow(StatelessClientContext context, String user, char[] password)
          Checks whether the given credentials can be used to initiate a new session on behalf of the client with the given context.
 

Uses of I18NException in org.marketcetera.util.ws.stateless
 

Methods in org.marketcetera.util.ws.stateless that throw I18NException
protected  void StatelessRemoteCall.assertFilterMatch(StatelessClientContext context)
          Asserts that the given client context matches all of the receiver's filters.
protected static void StatelessRemoteCall.assertFilterMatch(TagFilter filter, Tag tag)
          Asserts that the given filter matches the given tag.
 

Uses of I18NException in org.marketcetera.util.ws.tags
 

Methods in org.marketcetera.util.ws.tags that throw I18NException
 void EqualsTagFilter.assertMatch(Tag tag)
           
 void TagFilter.assertMatch(Tag tag)
          Asserts that the given tag is acceptable to the receiver.
 void NonNullTagFilter.assertMatch(Tag tag)
           
 void ValidSessionTagFilter.assertMatch(Tag tag)
           
 



Copyright © 2012. All Rights Reserved.