X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fcom%2Findexdata%2Fpz2utils4jsf%2Fpazpar2%2Fsp%2FServiceProxyInterface.java;h=ef84cea54e113ed72f0f4e73c85b23b492a14d7f;hb=801fbed2d559e224160d473e0860dd765354569f;hp=5f4df137e5946831b1ad010787fb3699f7e755ff;hpb=aa4634e1a3c9eec2103b299dda20d916dcba8b20;p=mkjsf-moved-to-github.git diff --git a/src/main/java/com/indexdata/pz2utils4jsf/pazpar2/sp/ServiceProxyInterface.java b/src/main/java/com/indexdata/pz2utils4jsf/pazpar2/sp/ServiceProxyInterface.java index 5f4df13..ef84cea 100644 --- a/src/main/java/com/indexdata/pz2utils4jsf/pazpar2/sp/ServiceProxyInterface.java +++ b/src/main/java/com/indexdata/pz2utils4jsf/pazpar2/sp/ServiceProxyInterface.java @@ -1,8 +1,17 @@ package com.indexdata.pz2utils4jsf.pazpar2.sp; -import com.indexdata.pz2utils4jsf.pazpar2.Pz2Interface; +import java.io.IOException; +import java.io.UnsupportedEncodingException; -public interface ServiceProxyInterface extends Pz2Interface { +import com.indexdata.pz2utils4jsf.pazpar2.Pz2Interface; - public String login(String navigateTo); +public interface ServiceProxyInterface extends Pz2Interface { + public String login(String navigateTo); + public void setInitFileName (String fileName); + public String getInitFileName(); + public String postInit() throws UnsupportedEncodingException, IOException; + public String postInit(byte[] initDoc) throws UnsupportedEncodingException, IOException; + public String getInitResponse(); + public void setServiceProxyUrl(String url); + public String getServiceProxyUrl(); }