예제 #1
0
  /**
   * Returns Info object with the specified value.
   *
   * @param value the string containing the description.
   * @return Info
   */
  public Info createInfo(String value) {
    InformationField infoImpl = new InformationField();
    try {

      infoImpl.setValue(value);

    } catch (SdpException e) {
      LOG.warn("Unexpected exception", e);
    }
    return infoImpl;
  }