X-Git-Url: http://lists.indexdata.dk/cgi-bin?a=blobdiff_plain;ds=sidebyside;f=src%2Fmain%2Fjava%2Fcom%2Findexdata%2Fpz2utils4jsf%2Fpazpar2%2Fsp%2FServiceProxyInterface.java;h=0147e3fb6d734fdbeeb5d62f7a2714eac5d59a8b;hb=a78346a10c75cd39bd0009517aebabc73871e2c3;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..0147e3f 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,16 @@ 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 getInitResponse(); + public void setServiceProxyUrl(String url); + public String getServiceProxyUrl(); }