- CATEGORIES - Static variable in class com.indexdata.mkjsf.pazpar2.commands.sp.ServiceProxyCommands
-
- CategoriesCommand - Class in com.indexdata.mkjsf.pazpar2.commands.sp
-
Represents a Service Proxy categories
command, can be accessed by pzreq.sp.categories
- CategoriesCommand() - Constructor for class com.indexdata.mkjsf.pazpar2.commands.sp.CategoriesCommand
-
- CategoriesResponse - Class in com.indexdata.mkjsf.pazpar2.data.sp
-
Data from the categories
command, can be accessed by pzresp.sp.categories
- CategoriesResponse() - Constructor for class com.indexdata.mkjsf.pazpar2.data.sp.CategoriesResponse
-
- characters(char[], int, int) - Method in class com.indexdata.mkjsf.pazpar2.data.ResponseParser
-
- checkIn(Pazpar2Command) - Method in class com.indexdata.mkjsf.pazpar2.state.StateManager
-
Registers a Pazpar2 command for execution.
- ClientCommandResponse - Class in com.indexdata.mkjsf.pazpar2
-
Contains one HTTP response to a command executed against a Pazpar2 service in such a
way as to give the response parser a common interface to responses, whether
they are from Pazpar2, from the Service Proxy, or are error messages created
by the JSF application during processing.
- ClientCommandResponse(Pazpar2HttpResponse, ByteArrayOutputStream) - Constructor for class com.indexdata.mkjsf.pazpar2.ClientCommandResponse
-
Used for storing Pazpar2 based response
- ClientCommandResponse(int, String, String) - Constructor for class com.indexdata.mkjsf.pazpar2.ClientCommandResponse
-
Used for storing error response
- ClientCommandResponse(int, byte[], String) - Constructor for class com.indexdata.mkjsf.pazpar2.ClientCommandResponse
-
Used for storing Service Proxy based response
- cloneMe() - Method in class com.indexdata.mkjsf.pazpar2.Pz2Client
-
- cloneMe() - Method in interface com.indexdata.mkjsf.pazpar2.SearchClient
-
- cloneMe() - Method in class com.indexdata.mkjsf.pazpar2.ServiceProxyClient
-
- com.indexdata.mkjsf.config - package com.indexdata.mkjsf.config
-
The library comes with two alternative mechanisms for configuration of an application.
- com.indexdata.mkjsf.controls - package com.indexdata.mkjsf.controls
-
UI controls - a configurable pager component for browsing through search results a page at a time
- com.indexdata.mkjsf.errors - package com.indexdata.mkjsf.errors
-
Error reporting, error diagnostics, and exception classes
- com.indexdata.mkjsf.pazpar2 - package com.indexdata.mkjsf.pazpar2
-
Overall control and execution of search logic.
- com.indexdata.mkjsf.pazpar2.commands - package com.indexdata.mkjsf.pazpar2.commands
-
Each Pazpar2 command is represented by a class with methods for
setting parameters and running the command against
the selected Pazpar2 service.
- com.indexdata.mkjsf.pazpar2.commands.sp - package com.indexdata.mkjsf.pazpar2.commands.sp
-
Each Service Proxy-only command and each Pazpar2 command with Service Proxy-only parameters
is represented by a class with methods for setting parameters and ultimately running the
command against the selected Service Proxy.
- com.indexdata.mkjsf.pazpar2.data - package com.indexdata.mkjsf.pazpar2.data
-
Pazpar2 responses produced by Pazpar2 commands are parsed by the
ResponseParser, which outputs response data objects that are accessible to the UI
through the class Responses.
- com.indexdata.mkjsf.pazpar2.data.sp - package com.indexdata.mkjsf.pazpar2.data.sp
-
Service Proxy responses produced by Service Proxy commands.
- com.indexdata.mkjsf.pazpar2.state - package com.indexdata.mkjsf.pazpar2.state
-
Tracks the state of commands, parameter settings and
command execution - primarily used for handling browser
history navigation.
- com.indexdata.mkjsf.utils - package com.indexdata.mkjsf.utils
-
Utility classes for file upload, string and list manipulation in UI, logging
- CommandError - Class in com.indexdata.mkjsf.pazpar2.data
-
Holds an error encountered during the execution of a command.
- CommandError() - Constructor for class com.indexdata.mkjsf.pazpar2.data.CommandError
-
- CommandParameter - Class in com.indexdata.mkjsf.pazpar2.commands
-
Represents a Pazpar2 command parameter with a name, an operator,
a simple value and/or one or more complex values (expressions).
- CommandParameter(String) - Constructor for class com.indexdata.mkjsf.pazpar2.commands.CommandParameter
-
- CommandParameter(String, String, String, Expression...) - Constructor for class com.indexdata.mkjsf.pazpar2.commands.CommandParameter
-
Instantiates a parameter with a simple value and one or more expressions
- CommandParameter(String, String, Expression...) - Constructor for class com.indexdata.mkjsf.pazpar2.commands.CommandParameter
-
Instantiates a parameter with one or more expressions
- CommandParameter(String, String, String) - Constructor for class com.indexdata.mkjsf.pazpar2.commands.CommandParameter
-
Instantiates a parameter with a simple value
- CommandParameter(String, String, int) - Constructor for class com.indexdata.mkjsf.pazpar2.commands.CommandParameter
-
Instantiates a parameter with a numeric value
- CommandThread - Class in com.indexdata.mkjsf.pazpar2
-
Helper class for running multiple concurrent Pazpar2 commands.
- CommandThread(Pazpar2Command, SearchClient, Responses) - Constructor for class com.indexdata.mkjsf.pazpar2.CommandThread
-
- concat(String...) - Static method in class com.indexdata.mkjsf.utils.UiUtils
-
Concatenates a list of strings
- concatMaxLength(int, String...) - Static method in class com.indexdata.mkjsf.utils.UiUtils
-
- Configurable - Interface in com.indexdata.mkjsf.config
-
Interface to be implemented by any part of an application that wish to
use a ConfigurationReader for it's configuration.
- Configuration - Class in com.indexdata.mkjsf.config
-
Represents a configuration as a set of key-value pairs
- Configuration() - Constructor for class com.indexdata.mkjsf.config.Configuration
-
- Configuration(Map<String, String>) - Constructor for class com.indexdata.mkjsf.config.Configuration
-
- ConfigurationError - Class in com.indexdata.mkjsf.errors
-
- ConfigurationError(String, String, String) - Constructor for class com.indexdata.mkjsf.errors.ConfigurationError
-
- ConfigurationException - Exception in com.indexdata.mkjsf.errors
-
- ConfigurationException() - Constructor for exception com.indexdata.mkjsf.errors.ConfigurationException
-
- ConfigurationException(String) - Constructor for exception com.indexdata.mkjsf.errors.ConfigurationException
-
- ConfigurationException(Throwable) - Constructor for exception com.indexdata.mkjsf.errors.ConfigurationException
-
- ConfigurationException(String, Throwable) - Constructor for exception com.indexdata.mkjsf.errors.ConfigurationException
-
- ConfigurationReader - Interface in com.indexdata.mkjsf.config
-
Interface to be implemented by classes that read configurations from a source -
i.e.
- configure(ConfigurationReader) - Method in interface com.indexdata.mkjsf.config.Configurable
-
Configures the Configurable using the configuration obtained by the
provided configuration reader
- configure(ConfigurationReader) - Method in class com.indexdata.mkjsf.pazpar2.Pz2Client
-
- configure(ConfigurationReader) - Method in class com.indexdata.mkjsf.pazpar2.Pz2Service
-
- configure(ConfigurationReader) - Method in class com.indexdata.mkjsf.pazpar2.ServiceProxyClient
-
- configureClient(SearchClient, ConfigurationReader) - Method in class com.indexdata.mkjsf.pazpar2.Pz2Service
-
Configures the selected search client using the selected configuration reader.
- copy() - Method in class com.indexdata.mkjsf.pazpar2.commands.BytargetCommand
-
- copy() - Method in class com.indexdata.mkjsf.pazpar2.commands.CommandParameter
-
Clones the CommandParameter
- copy() - Method in class com.indexdata.mkjsf.pazpar2.commands.Expression
-
Clones the expression
- copy() - Method in class com.indexdata.mkjsf.pazpar2.commands.FilterParameter
-
- copy() - Method in class com.indexdata.mkjsf.pazpar2.commands.InitCommand
-
- copy() - Method in class com.indexdata.mkjsf.pazpar2.commands.LimitParameter
-
- copy() - Method in class com.indexdata.mkjsf.pazpar2.commands.Pazpar2Command
-
Commands must implement this method to provide a completely detached, deep clone of
themselves.
- copy() - Method in class com.indexdata.mkjsf.pazpar2.commands.PingCommand
-
- copy() - Method in class com.indexdata.mkjsf.pazpar2.commands.QueryParameter
-
- copy() - Method in class com.indexdata.mkjsf.pazpar2.commands.RecordCommand
-
- copy() - Method in class com.indexdata.mkjsf.pazpar2.commands.SearchCommand
-
- copy() - Method in class com.indexdata.mkjsf.pazpar2.commands.SettingsCommand
-
- copy() - Method in class com.indexdata.mkjsf.pazpar2.commands.ShowCommand
-
- copy() - Method in class com.indexdata.mkjsf.pazpar2.commands.sp.AuthCommand
-
- copy() - Method in class com.indexdata.mkjsf.pazpar2.commands.sp.CategoriesCommand
-
- copy() - Method in class com.indexdata.mkjsf.pazpar2.commands.StatCommand
-
- copy() - Method in class com.indexdata.mkjsf.pazpar2.commands.TermlistCommand
-
- createErrorXml(String, String, String, String, String) - Static method in class com.indexdata.mkjsf.pazpar2.data.CommandError
-
Creates an XML string error message, embedded in an XML string document named by the command
This is the XML that ResponseParser will turn into a CommandError object.