All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.docmosis.sdk.request.param.StringParamType Maven / Gradle / Ivy

Go to download

This SDK makes it easy to invoke API calls on Docmosis web service end points (such as the public Docmosis Cloud Services).

There is a newer version: 1.0.1
Show newest version
package com.docmosis.sdk.request.param;

public class StringParamType extends AbstractParamType {
	
	private String value;
	
	public StringParamType(String value)
	{
		this.value = value;
	}

	public String getValue() {
		return value;
	}

	public void setValue(String value) {
		this.value = value;
	}

	@Override
	public String stringValue() {
		return value;
	}

	@Override
	public String toString() {
		return value;
	}	
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy