Package org.wso2.carbon.registry.ws.api
Class WSProperty
- java.lang.Object
-
- org.wso2.carbon.registry.ws.api.WSProperty
-
public class WSProperty extends Object
The WSProperty class is a web service compatible version of the Java Property class.
-
-
Constructor Summary
Constructors Constructor Description WSProperty()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetKey()Get the keyString[]getValues()Get values according to the corresponding keyvoidsetKey(String key)Set the keyvoidsetValues(String[] values)Set the values for the corresponding key
-
-
-
Method Detail
-
getKey
public String getKey()
Get the key- Returns:
- key
-
setKey
public void setKey(String key)
Set the key- Parameters:
key-
-
getValues
public String[] getValues()
Get values according to the corresponding key- Returns:
- values
-
setValues
public void setValues(String[] values)
Set the values for the corresponding key- Parameters:
values-
-
-