Package com.atlassian.jira.rest.client.api

Examples of com.atlassian.jira.rest.client.api.IdentifiableEntity


    } else if (rawValue instanceof CustomFieldOption) {
      return transformCustomFieldOption((CustomFieldOption) rawValue);
    } else if (rawValue instanceof TimeTracking) {
      return transformTimeTracking((TimeTracking) rawValue);
    } else if (rawValue instanceof IdentifiableEntity) {
      final IdentifiableEntity identifiableEntity = (IdentifiableEntity) rawValue;
      return new ComplexIssueInputFieldValue(ImmutableMap.<String, Object>of("id", identifiableEntity.getId().toString()));
    } else if (rawValue instanceof NamedEntity) {
      final NamedEntity namedEntity = (NamedEntity) rawValue;
      return new ComplexIssueInputFieldValue(ImmutableMap.<String, Object>of("name", namedEntity.getName()));
    }
View Full Code Here

TOP

Related Classes of com.atlassian.jira.rest.client.api.IdentifiableEntity

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.