Tabnine Logo
TypeId.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
com.atlassian.applinks.spi.application.TypeId
constructor

Best Java code snippets using com.atlassian.applinks.spi.application.TypeId.<init> (Showing top 9 results out of 315)

origin: com.atlassian.applinks/applinks-plugin-core

@Override
public TypeId unmarshal(final String v) throws Exception
{
  return new TypeId(v);
}
origin: com.atlassian.applinks/applinks-plugin-core-test

  public TypeId getId()
  {
    return new TypeId("dummy");
  }
};
origin: com.atlassian.applinks/applinks-common

@Override
public TypeId unmarshal(final String v) throws Exception {
  return new TypeId(v);
}
origin: com.atlassian.applinks/applinks-test-common

  @Nonnull
  public TypeId getId() {
    return new TypeId("dummy");
  }
}
origin: com.atlassian.applinks/applinks-test-common

@Nonnull
public TypeId getId() {
  return new TypeId(typeId);
}
origin: com.atlassian.applinks/applinks-plugin

public TypeId getType() {
  final String id = (String) applinksAdminPropertySet.getProperty(Property.TYPE.key());
  return id != null ? new TypeId(id) : null;
}
origin: com.atlassian.applinks/applinks-tests

private ApplicationType getApplicationType(URI baseUrl, CreateRequestEntity entity) {
  if (entity.typeId != null) {
    return typeAccessor.loadApplicationType(new TypeId(entity.typeId));
  }
  try {
    final Manifest manifest = manifestRetriever.getManifest(baseUrl);
    return typeAccessor.loadApplicationType(manifest.getTypeId());
  } catch (Exception e) {
    // it might be a generic so don't worry yet
    log.info("Could not load manifest from remoteUri, creating a generic type link", e);
    return typeAccessor.loadApplicationType(new TypeId(GenericApplicationType.class.getCanonicalName()));
  }
}
origin: com.atlassian.applinks/applinks-plugin

final TypeId typeId = new TypeId(getRequiredJSONString(obj, TYPE));
final EntityType type = typeAccessor.loadEntityType(typeId);
origin: com.atlassian.applinks/applinks-tests

linkService.addApplicationLink(
    aid,
    typeAccessor.loadApplicationType(new TypeId(RefAppApplicationType.class.getCanonicalName())),
    ApplicationLinkDetails.builder()
        .displayUrl(new URI("http://unvoodoo.com"))
com.atlassian.applinks.spi.applicationTypeId<init>

Popular methods of TypeId

  • get
  • equals
  • getTypeId
    Convenience method for looking up TypeIds from EntityTypes. The applinks-entity-type descriptor enfo
  • toString
  • compareTo

Popular in Java

  • Running tasks concurrently on multiple threads
  • addToBackStack (FragmentTransaction)
  • getApplicationContext (Context)
  • onRequestPermissionsResult (Fragment)
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • SQLException (java.sql)
    An exception that indicates a failed JDBC operation. It provides the following information about pro
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Project (org.apache.tools.ant)
    Central representation of an Ant project. This class defines an Ant project with all of its targets,
  • From CI to AI: The AI layer in your organization
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now