Android Open Source - sodf Sodf Vocabulary






From Project

Back to project page sodf.

License

The source code is released under:

Copyright (c) 2013 Lorenz Lehmann Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Sof...

If you think the Android project sodf listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package lal.sodf.framework.ontology;
//from w  w w . ja v  a 2s. com
/**
 * A list of all literals, which can be used within a SODF ontology
 * @author Lorenz Lehmann
 *
 */
public class SodfVocabulary {
  /** The prefix that is used for all literals in the SODF vocabulary */
  public static final String SODF_PREFIX_KEY = "sodf";
  /** The URI where the definition of each SODF literal can be found */
  public static final String SODF_PREFIX_VALUE = "http://www.sodf-ontology.com/vocabulary";
  
  /** Literal that is used as a key for the properties section */
  public static final String SODF_PROPERTIES = "sodf:properties";
  
  /** Literal that is used as a key for the functions section */
  public static final String SODF_FUNCTIONS = "sodf:functions";
  /** Literal that is used to give the name of a function */
  public static final String SODF_NAME = "sodf:name";
  /** Literal that is used to give the description of a function */
  public static final String SODF_DESCRIPTION = "sodf:description";
  /** Literal that is used as a key for the interaction possibillity with a function */
  public static final String SODF_INTERACTION = "sodf:interaction";
  /** Literal that is used to specify the type of an interaction */
  public static final String SODF_INTERACTION_TYPE = "sodf:interaction_type";
  /** Value that is used for REST interactions */
  public static final String SODF_REST = "sodf:rest";
  /** Literal that is used to specify the URI of a REST interaction */
  public static final String SODF_URI = "sodf:uri";
  /** Literal that is used to specify the parameters of a REST interaction */
  public static final String SODF_REST_PARAMETERS = "sodf:rest_parameters";
  /** Literal that is used to specify the name of a parameter of a REST interaction */
  public static final String SODF_REST_PARAMETERS_NAME = "sodf:rest_parameters_name";
  /** Literal that is used to describe a parameter of a REST interaction */
  public static final String SODF_REST_PARAMETERS_DESCRIPTION = "sodf:rest_parameters_description";
  /** Literal that is used to specify the HTTP method of a REST interaction */
  public static final String SODF_REST_METHOD = "sodf:rest_method";
  
  /** Literal that represents the HTTP method GET */
  public static final String SODF_HTTP_METHOD_GET = "sodf:http_method_get";
  /** Literal that represents the HTTP method HEAD */
  public static final String SODF_HTTP_METHOD_HEAD = "sodf:http_method_head";
  /** Literal that represents the HTTP method POST */
  public static final String SODF_HTTP_METHOD_POST = "sodf:http_method_post";
  /** Literal that represents the HTTP method PUT */
  public static final String SODF_HTTP_METHOD_PUT = "sodf:http_method_put";
  /** Literal that represents the HTTP method DELETE */
  public static final String SODF_HTTP_METHOD_DELETE = "sodf:http_method_delete";
  /** Literal that represents the HTTP method TRACE */
  public static final String SODF_HTTP_METHOD_TRACE = "sodf:http_method_trace";
  /** Literal that represents the HTTP method OPTIONS */
  public static final String SODF_HTTP_METHOD_OPTIONS = "sodf:http_method_options";
  /** Literal that represents the HTTP method CONNECT */
  public static final String SODF_HTTP_METHOD_CONNECT = "sodf:http_method_connect";
  /** Literal that represents the HTTP method PATCH */
  public static final String SODF_HTTP_METHOD_PATCH = "sodf:http_method_patch";
  
  /** Literal that is used as a key for the metadata section */
  public static final String SODF_METADATA = "sodf:metadata";
  /** Literal that is used to name the author of a SODF description */
  public static final String SODF_AUTHOR = "sodf:author";
  /** Literal that is used to specify the version of a SODF description */
  public static final String SODF_VERSION = "sodf:version";
  /** Literal that is used as a key for the comment if a SODF description */
  public static final String SODF_COMMENT = "sodf:comment";
  /** Literal that is used as a key for the comment if a SODF description */
  public static final String SODF_PREFIXES = "sodf:prefixes";

}




Java Source Code List

lal.apps.ontap.MainActivity.java
lal.apps.ontap.WifiVocabulary.java
lal.apps.smartfoodenvironment.activities.ExpiredActivity.java
lal.apps.smartfoodenvironment.activities.FactoryActivity.java
lal.apps.smartfoodenvironment.activities.MicrowaveActivity.java
lal.apps.smartfoodenvironment.activities.StartActivity.java
lal.apps.smartfoodenvironment.model.MicrowaveVocabulary.java
lal.apps.smartfoodenvironment.model.ProductFactory.java
lal.apps.smartfoodenvironment.model.ProductVocabulary.java
lal.sodf.example.MainActivity.java
lal.sodf.framework.SodfCallback.java
lal.sodf.framework.SodfCallback.java
lal.sodf.framework.SodfCallback.java
lal.sodf.framework.SodfFramework.java
lal.sodf.framework.SodfFramework.java
lal.sodf.framework.SodfFramework.java
lal.sodf.framework.SodfWrapper.java
lal.sodf.framework.SodfWrapper.java
lal.sodf.framework.SodfWrapper.java
lal.sodf.framework.compressor.CompressionAlgorithm.java
lal.sodf.framework.compressor.CompressionAlgorithm.java
lal.sodf.framework.compressor.CompressionAlgorithm.java
lal.sodf.framework.compressor.Compressor.java
lal.sodf.framework.compressor.Compressor.java
lal.sodf.framework.compressor.Compressor.java
lal.sodf.framework.compressor.Gzip.java
lal.sodf.framework.compressor.Gzip.java
lal.sodf.framework.compressor.Gzip.java
lal.sodf.framework.exceptions.CompressionAlgorithmNotFoundException.java
lal.sodf.framework.exceptions.CompressionAlgorithmNotFoundException.java
lal.sodf.framework.exceptions.CompressionAlgorithmNotFoundException.java
lal.sodf.framework.exceptions.DuplicateKeyException.java
lal.sodf.framework.exceptions.DuplicateKeyException.java
lal.sodf.framework.exceptions.DuplicateKeyException.java
lal.sodf.framework.exceptions.MalformedTypeException.java
lal.sodf.framework.exceptions.MalformedTypeException.java
lal.sodf.framework.exceptions.MalformedTypeException.java
lal.sodf.framework.exceptions.TagEmptyException.java
lal.sodf.framework.exceptions.TagEmptyException.java
lal.sodf.framework.exceptions.TagEmptyException.java
lal.sodf.framework.exceptions.UnformattedTagException.java
lal.sodf.framework.exceptions.UnformattedTagException.java
lal.sodf.framework.exceptions.UnformattedTagException.java
lal.sodf.framework.nfc.NfcContentWrapper.java
lal.sodf.framework.nfc.NfcContentWrapper.java
lal.sodf.framework.nfc.NfcContentWrapper.java
lal.sodf.framework.nfc.NfcHandler.java
lal.sodf.framework.nfc.NfcHandler.java
lal.sodf.framework.nfc.NfcHandler.java
lal.sodf.framework.ontology.FunctionsNode.java
lal.sodf.framework.ontology.FunctionsNode.java
lal.sodf.framework.ontology.FunctionsNode.java
lal.sodf.framework.ontology.KeyNode.java
lal.sodf.framework.ontology.KeyNode.java
lal.sodf.framework.ontology.KeyNode.java
lal.sodf.framework.ontology.KeyValueNode.java
lal.sodf.framework.ontology.KeyValueNode.java
lal.sodf.framework.ontology.KeyValueNode.java
lal.sodf.framework.ontology.MetadataNode.java
lal.sodf.framework.ontology.MetadataNode.java
lal.sodf.framework.ontology.MetadataNode.java
lal.sodf.framework.ontology.Node.java
lal.sodf.framework.ontology.Node.java
lal.sodf.framework.ontology.Node.java
lal.sodf.framework.ontology.PropertiesNode.java
lal.sodf.framework.ontology.PropertiesNode.java
lal.sodf.framework.ontology.PropertiesNode.java
lal.sodf.framework.ontology.RestInteractionNode.java
lal.sodf.framework.ontology.RestInteractionNode.java
lal.sodf.framework.ontology.RestInteractionNode.java
lal.sodf.framework.ontology.RestParameters.java
lal.sodf.framework.ontology.RestParameters.java
lal.sodf.framework.ontology.RestParameters.java
lal.sodf.framework.ontology.SodfTree.java
lal.sodf.framework.ontology.SodfTree.java
lal.sodf.framework.ontology.SodfTree.java
lal.sodf.framework.ontology.SodfVocabulary.java
lal.sodf.framework.ontology.SodfVocabulary.java
lal.sodf.framework.ontology.SodfVocabulary.java
lal.sodf.framework.parser.SodfParser.java
lal.sodf.framework.parser.SodfParser.java
lal.sodf.framework.parser.SodfParser.java