X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;ds=sidebyside;f=src%2Fmain%2Fjava%2Fcom%2Findexdata%2Fmkjsf%2Fpazpar2%2Fcommands%2Fsp%2FRecordCommandSp.java;h=0b40381ea5368792ef12d97ae4c274b93e2784f6;hb=86f289cd42ba95846c80d22129ed565e4e9d6dde;hp=1d7cfc88d843ea979ba8522890a5f6569406ef64;hpb=7df6b1590eb285bca094652950a23edc3da95f70;p=mkjsf-moved-to-github.git diff --git a/src/main/java/com/indexdata/mkjsf/pazpar2/commands/sp/RecordCommandSp.java b/src/main/java/com/indexdata/mkjsf/pazpar2/commands/sp/RecordCommandSp.java index 1d7cfc8..0b40381 100644 --- a/src/main/java/com/indexdata/mkjsf/pazpar2/commands/sp/RecordCommandSp.java +++ b/src/main/java/com/indexdata/mkjsf/pazpar2/commands/sp/RecordCommandSp.java @@ -6,7 +6,8 @@ import com.indexdata.mkjsf.pazpar2.commands.CommandParameter; import com.indexdata.mkjsf.pazpar2.commands.RecordCommand; /** - * Service Proxy extensions to the record command. + * Service Proxy extensions to the Papzar2 record command, + * these parameters being accessible by pzreq.record.sp.[parameter] * * @author Niels Erik * @@ -20,18 +21,30 @@ public class RecordCommandSp implements Serializable, ServiceProxyCommand { this.command = command; } + /** + * Sets Service Proxy command parameter recordquery. See Service Proxy documentation for details. + */ public void setRecordquery (String recordQuery) { command.setParameter(new CommandParameter("recordquery","=",recordQuery)); } + /** + * Gets parameter value for recordquery + */ public String getRecordquery() { return command.getParameterValue("recordquery"); } + /** + * Sets Service Proxy command parameter acefilter. See Service Proxy documentation for details. + */ public void setAcefilter (String aceFilter) { command.setParameter(new CommandParameter("acefilter","=",aceFilter)); } + /** + * Gets parameter value for acefilter + */ public String getAcefilter () { return command.getParameterValue("acefilter"); }