java.lang.Object
com.technia.dsx.threedspace.doc.file.Url

public class Url extends Object
Represents a URL for file operations with HTTP method, parameters, and content type.

Used to construct URLs for FCS (File Content Service) operations including checkin and checkout. Supports POST and GET methods, multipart and form-urlencoded content types, and parameter management.

Since:
2022-06-14
  • Field Details

  • Constructor Details

    • Url

      public Url()
  • Method Details

    • of

      public static Url of(String method, String url, String paramName1, String paramValue1)
    • addParameter

      public void addParameter(String name, String value)
    • addParameter

      public void addParameter(String name, String[] values)
    • getParamValue

      public String getParamValue(String name)
    • getParamValues

      public String[] getParamValues(String name)
    • getParameterNames

      public Iterator<String> getParameterNames()
    • getParamMap

      public Map<String,String[]> getParamMap()
    • getMethod

      public String getMethod()
    • setMethod

      public void setMethod(String method)
    • getUrl

      public String getUrl()
    • setUrl

      public void setUrl(String url)
    • getContentType

      public String getContentType()
    • setContentType

      public void setContentType(String contentType)
    • getParams

      public Map<String,String[]> getParams()
    • setParams

      public void setParams(Map<String,String[]> params)
    • getCSRFToken

      public com.technia.dsx.app.NameValueTuple getCSRFToken()
    • setCSRFToken

      public void setCSRFToken(com.technia.dsx.app.NameValueTuple csrfToken)