Tabnine Logo
CommonSchemaAttributes
Code IndexAdd Tabnine to your IDE (free)

How to use
CommonSchemaAttributes
in
com.atlassian.json.schema.annotation

Best Java code snippets using com.atlassian.json.schema.annotation.CommonSchemaAttributes (Showing top 20 results out of 315)

origin: com.atlassian.plugins/atlassian-connect-server-modules

@CommonSchemaAttributes(defaultValue = "jwt")
private AuthenticationType type;
origin: external.atlassian.json/json-schemagen-core

if (StringUtil.isNotBlank(commonAnno.defaultValue()))
  schema.setDefaultValue(commonAnno.defaultValue());
if (StringUtil.isNotBlank(commonAnno.title()))
  schema.setTitle(commonAnno.title());
if (StringUtil.isNotBlank(commonAnno.description()))
  schema.setDescription(commonAnno.description());
if (commonAnno.allOf().length > 0)
  schema.setAllOf(generateSchemaSet(commonAnno.allOf()));
if (commonAnno.anyOf().length > 0)
  schema.setAnyOf(generateSchemaSet(commonAnno.anyOf()));
if (commonAnno.oneOf().length > 0)
  schema.setOneOf(generateSchemaSet(commonAnno.oneOf()));
if (!AnnotationHelper.EmptyClass.class.getName().equals(commonAnno.not().getName()))
  schema.setNot(generateObjectSchema(commonAnno.not(), null));
origin: external.atlassian.json/json-schemagen-core

protected String getFieldTitle(Class<?> theClass, Field theField)
{
  SchemaClassDoc classDoc = schemaDocs.getClassDoc(theClass.getName());
  String title = null;
  if (null != classDoc)
  {
    SchemaFieldDoc fieldDoc = classDoc.getFieldDoc(theField.getName());
    if (null != fieldDoc)
    {
      if (isNotBlank(fieldDoc.getFieldTitle()))
      {
        title = fieldDoc.getFieldTitle();
      }
    }
  }
  if (null == title)
  {
    if (theField.isAnnotationPresent(CommonSchemaAttributes.class))
    {
      title = theField.getAnnotation(CommonSchemaAttributes.class).title();
    }
  }
  return title;
}
origin: io.atlassian.json-schemagen/json-schemagen-core

protected String getFieldTitle(Class<?> theClass, Field theField)
{
  SchemaClassDoc classDoc = schemaDocs.getClassDoc(theClass.getName());
  String title = null;
  if (null != classDoc)
  {
    SchemaFieldDoc fieldDoc = classDoc.getFieldDoc(theField.getName());
    if (null != fieldDoc)
    {
      if (isNotBlank(fieldDoc.getFieldTitle()))
      {
        title = fieldDoc.getFieldTitle();
      }
    }
  }
  if (null == title)
  {
    if (theField.isAnnotationPresent(CommonSchemaAttributes.class))
    {
      title = theField.getAnnotation(CommonSchemaAttributes.class).title();
    }
  }
  return title;
}
origin: io.atlassian.json-schemagen/json-schemagen-core

if (StringUtil.isNotBlank(commonAnno.defaultValue()))
  schema.setDefaultValue(commonAnno.defaultValue());
if (StringUtil.isNotBlank(commonAnno.title()))
  schema.setTitle(commonAnno.title());
if (StringUtil.isNotBlank(commonAnno.description()))
  schema.setDescription(commonAnno.description());
if (commonAnno.allOf().length > 0)
  schema.setAllOf(generateSchemaSet(commonAnno.allOf()));
if (commonAnno.anyOf().length > 0)
  schema.setAnyOf(generateSchemaSet(commonAnno.anyOf()));
if (commonAnno.oneOf().length > 0)
  schema.setOneOf(generateSchemaSet(commonAnno.oneOf()));
if (!AnnotationHelper.EmptyClass.class.getName().equals(commonAnno.not().getName()))
  schema.setNot(generateObjectSchema(commonAnno.not(), null));
origin: com.atlassian.plugins/atlassian-connect-modules

@CommonSchemaAttributes(defaultValue = "jwt")
private AuthenticationType type;
origin: com.atlassian.plugins/atlassian-connect-modules

@CommonSchemaAttributes(defaultValue = "page")
private WebItemTargetType type;
origin: com.atlassian.plugins/atlassian-connect-server-modules

@CommonSchemaAttributes(defaultValue = "page")
private WebItemTargetType type;
origin: com.atlassian.plugins/atlassian-connect-confluence-modules

@CommonSchemaAttributes(defaultValue = "true")
private boolean enabled;
origin: com.atlassian.plugins/atlassian-connect-confluence-modules

@CommonSchemaAttributes(defaultValue = "edit")
private CreateResultType createResult;
origin: com.atlassian.plugins/atlassian-connect-confluence-modules

@CommonSchemaAttributes(defaultValue = "get")
private MacroRenderingMethodType renderingMethod;
origin: com.atlassian.plugins/atlassian-connect-server-modules

@CommonSchemaAttributes(defaultValue = "true")
private Boolean chrome;
origin: com.atlassian.plugins/atlassian-connect-modules

@CommonSchemaAttributes(defaultValue = "true")
private Boolean chrome;
origin: com.atlassian.plugins/atlassian-connect-confluence-modules

@CommonSchemaAttributes(defaultValue = "storage")
private CustomContentBodyType bodyType;
@CommonSchemaAttributes(defaultValue = "false")
private Boolean preventDuplicateTitle;
origin: com.atlassian.plugins/atlassian-connect-modules

@CommonSchemaAttributes(defaultValue = "addon")
private AddonUrlContext context;
origin: com.atlassian.plugins/atlassian-connect-server-modules

@CommonSchemaAttributes(defaultValue = "addon")
private AddonUrlContext context;
origin: com.atlassian.plugins/atlassian-connect-modules

@CommonSchemaAttributes(title = "en-US")
@StringSchemaAttributes(format = "uri")
private String en_US;
@SerializedName("en-UK")
@CommonSchemaAttributes(title = "en-UK")
@StringSchemaAttributes(format = "uri")
private String en_UK;
@SerializedName("fr-FR")
@CommonSchemaAttributes(title = "fr-FR")
@StringSchemaAttributes(format = "uri")
private String fr_FR;
@SerializedName("de-DE")
@CommonSchemaAttributes(title = "de-DE")
@StringSchemaAttributes(format = "uri")
private String de_DE;
@SerializedName("pt-PT")
@CommonSchemaAttributes(title = "pt-PT")
@StringSchemaAttributes(format = "uri")
private String pt_PT;
@SerializedName("es-ES")
@CommonSchemaAttributes(title = "es-ES")
@StringSchemaAttributes(format = "uri")
private String es_ES;
@SerializedName("ja-JP")
@CommonSchemaAttributes(title = "ja-JP")
@StringSchemaAttributes(format = "uri")
private String ja_JP;
@SerializedName("ko-KR")
@CommonSchemaAttributes(title = "ko-KR")
origin: com.atlassian.plugins/atlassian-connect-server-modules

@CommonSchemaAttributes(defaultValue = "")
private String addonKey;
origin: com.atlassian.plugins/atlassian-connect-modules

@CommonSchemaAttributes(defaultValue = "")
private String addonKey;
origin: com.atlassian.plugins/atlassian-connect-confluence-modules

@CommonSchemaAttributes(defaultValue = "block")
private MacroOutputType outputType;
@CommonSchemaAttributes(defaultValue = "none")
private MacroBodyType bodyType;
@CommonSchemaAttributes(defaultValue = "false")
private Boolean featured;
@CommonSchemaAttributes(defaultValue = "false")
private Boolean hidden;
com.atlassian.json.schema.annotationCommonSchemaAttributes

Most used methods

  • <init>
  • allOf
  • anyOf
  • defaultValue
  • description
  • not
  • oneOf
  • title

Popular in Java

  • Parsing JSON documents to java classes using gson
  • findViewById (Activity)
  • getSupportFragmentManager (FragmentActivity)
  • requestLocationUpdates (LocationManager)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Collection (java.util)
    Collection is the root of the collection hierarchy. It defines operations on data collections and t
  • HashMap (java.util)
    HashMap is an implementation of Map. All optional operations are supported.All elements are permitte
  • JComboBox (javax.swing)
  • 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