22
33namespace phpsap \interfaces \Config ;
44
5+ use phpsap \interfaces \exceptions \IIncompleteConfigException ;
6+ use phpsap \interfaces \exceptions \IInvalidArgumentException ;
7+
58/**
69 * Interface IConfig
710 *
@@ -82,45 +85,45 @@ interface IConfigCommon extends IConfiguration
8285 /**
8386 * Get the username to use for authentication.
8487 * @return string The username.
85- * @throws \phpsap\interfaces\exceptions\ IIncompleteConfigException
88+ * @throws IIncompleteConfigException
8689 */
8790 public function getUser ();
8891
8992 /**
9093 * Set the username to use for authentication.
9194 * @param string $user The username.
9295 * @return $this
93- * @throws \phpsap\interfaces\exceptions\ IInvalidArgumentException
96+ * @throws IInvalidArgumentException
9497 */
9598 public function setUser ($ user );
9699
97100 /**
98101 * Get the password to use for authentication.
99102 * @return string The password.
100- * @throws \phpsap\interfaces\exceptions\ IIncompleteConfigException
103+ * @throws IIncompleteConfigException
101104 */
102105 public function getPasswd ();
103106
104107 /**
105108 * Set the password to use for authentication.
106109 * @param string $passwd The password.
107110 * @return $this
108- * @throws \phpsap\interfaces\exceptions\ IInvalidArgumentException
111+ * @throws IInvalidArgumentException
109112 */
110113 public function setPasswd ($ passwd );
111114
112115 /**
113116 * Get the client.
114117 * @return string The client
115- * @throws \phpsap\interfaces\exceptions\ IIncompleteConfigException
118+ * @throws IIncompleteConfigException
116119 */
117120 public function getClient ();
118121
119122 /**
120123 * Set the client.
121124 * @param string $client The client.
122125 * @return $this
123- * @throws \phpsap\interfaces\exceptions\ IInvalidArgumentException
126+ * @throws IInvalidArgumentException
124127 */
125128 public function setClient ($ client );
126129
@@ -136,7 +139,7 @@ public function getSaprouter();
136139 * /H/hostname/S/portnumber/H/
137140 * @param string $saprouter The saprouter.
138141 * @return $this
139- * @throws \phpsap\interfaces\exceptions\ IInvalidArgumentException
142+ * @throws IInvalidArgumentException
140143 */
141144 public function setSaprouter ($ saprouter );
142145
@@ -150,7 +153,7 @@ public function getTrace();
150153 * Set the trace level. See constants TRACE_*.
151154 * @param int $trace The trace level.
152155 * @return $this
153- * @throws \phpsap\interfaces\exceptions\ IInvalidArgumentException
156+ * @throws IInvalidArgumentException
154157 */
155158 public function setTrace ($ trace );
156159
@@ -170,7 +173,7 @@ public function getCodepage();
170173 * username/password.
171174 * @param int $codepage The codepage.
172175 * @return $this
173- * @throws \phpsap\interfaces\exceptions\ IInvalidArgumentException
176+ * @throws IInvalidArgumentException
174177 */
175178 public function setCodepage ($ codepage );
176179
@@ -184,7 +187,7 @@ public function getLang();
184187 * Set the logon language.
185188 * @param string $lang The logon language.
186189 * @return $this
187- * @throws \phpsap\interfaces\exceptions\ IInvalidArgumentException
190+ * @throws IInvalidArgumentException
188191 */
189192 public function setLang ($ lang );
190193
@@ -198,7 +201,7 @@ public function getDest();
198201 * Set the destination in RfcOpenConnection.
199202 * @param string $dest The destination in RfcOpenConnection.
200203 * @return $this
201- * @throws \phpsap\interfaces\exceptions\ IInvalidArgumentException
204+ * @throws IInvalidArgumentException
202205 */
203206 public function setDest ($ dest );
204207}
0 commit comments