Initial import.
authorroot <root@myriad9.zcu.cz>
Thu, 8 Sep 2016 22:28:25 +0000 (00:28 +0200)
committerroot <root@myriad9.zcu.cz>
Thu, 8 Sep 2016 22:28:25 +0000 (00:28 +0200)
commit62c63b71bda489544b794bdb1c6d96c210caeba0
tree94cc7dac43822ea21d88192a9211029f01af5932
Initial import.
117 files changed:
jOCCI-core/.gitignore [new file with mode: 0644]
jOCCI-core/.travis.yml [new file with mode: 0644]
jOCCI-core/LICENSE [new file with mode: 0644]
jOCCI-core/README.md [new file with mode: 0644]
jOCCI-core/debian/README.source [new file with mode: 0644]
jOCCI-core/debian/changelog [new file with mode: 0644]
jOCCI-core/debian/compat [new file with mode: 0644]
jOCCI-core/debian/control [new file with mode: 0644]
jOCCI-core/debian/copyright [new file with mode: 0644]
jOCCI-core/debian/libjocci-core-java-doc.doc-base.api [new file with mode: 0644]
jOCCI-core/debian/libjocci-core-java-doc.install [new file with mode: 0644]
jOCCI-core/debian/libjocci-core-java.poms [new file with mode: 0644]
jOCCI-core/debian/maven.cleanIgnoreRules [new file with mode: 0644]
jOCCI-core/debian/maven.ignoreRules [new file with mode: 0644]
jOCCI-core/debian/maven.properties [new file with mode: 0644]
jOCCI-core/debian/maven.publishedRules [new file with mode: 0644]
jOCCI-core/debian/maven.rules [new file with mode: 0644]
jOCCI-core/debian/rules [new file with mode: 0755]
jOCCI-core/debian/source/format [new file with mode: 0644]
jOCCI-core/pom.xml [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/Collection.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/Model.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/collection/AttributeMapCover.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/collection/SetCover.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/core/Action.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/core/ActionInstance.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/core/Attribute.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/core/Category.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/core/Entity.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/core/Kind.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/core/Link.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/core/Mixin.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/core/Resource.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/exception/AmbiguousIdentifierException.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/exception/InvalidAttributeException.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/exception/InvalidAttributeValueException.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/exception/ParsingException.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/exception/RenderingException.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/infrastructure/Compute.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/infrastructure/IPNetwork.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/infrastructure/IPNetworkInterface.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/infrastructure/Network.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/infrastructure/NetworkInterface.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/infrastructure/Storage.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/infrastructure/StorageLink.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/infrastructure/enumeration/Allocation.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/infrastructure/enumeration/Architecture.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/infrastructure/enumeration/ComputeState.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/infrastructure/enumeration/NetworkState.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/infrastructure/enumeration/StorageLinkState.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/infrastructure/enumeration/StorageState.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/parser/CollectionType.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/parser/JSONParser.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/parser/MediaType.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/parser/Parser.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/parser/TextParser.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/renderer/TextRenderer.java [new file with mode: 0644]
jOCCI-core/src/main/java/cz/cesnet/cloud/occi/type/Identifiable.java [new file with mode: 0644]
jOCCI-core/src/test/java/cz/cesnet/cloud/occi/CollectionTest.java [new file with mode: 0644]
jOCCI-core/src/test/java/cz/cesnet/cloud/occi/DataGenerator.java [new file with mode: 0644]
jOCCI-core/src/test/java/cz/cesnet/cloud/occi/ModelTest.java [new file with mode: 0644]
jOCCI-core/src/test/java/cz/cesnet/cloud/occi/TestHelper.java [new file with mode: 0644]
jOCCI-core/src/test/java/cz/cesnet/cloud/occi/collection/AttributeMapCoverTest.java [new file with mode: 0644]
jOCCI-core/src/test/java/cz/cesnet/cloud/occi/collection/SetCoverTest.java [new file with mode: 0644]
jOCCI-core/src/test/java/cz/cesnet/cloud/occi/core/ActionInstanceTest.java [new file with mode: 0644]
jOCCI-core/src/test/java/cz/cesnet/cloud/occi/core/ActionTest.java [new file with mode: 0644]
jOCCI-core/src/test/java/cz/cesnet/cloud/occi/core/AttributeTest.java [new file with mode: 0644]
jOCCI-core/src/test/java/cz/cesnet/cloud/occi/core/CategoryTest.java [new file with mode: 0644]
jOCCI-core/src/test/java/cz/cesnet/cloud/occi/core/EntityTest.java [new file with mode: 0644]
jOCCI-core/src/test/java/cz/cesnet/cloud/occi/core/KindTest.java [new file with mode: 0644]
jOCCI-core/src/test/java/cz/cesnet/cloud/occi/core/LinkTest.java [new file with mode: 0644]
jOCCI-core/src/test/java/cz/cesnet/cloud/occi/core/MixinTest.java [new file with mode: 0644]
jOCCI-core/src/test/java/cz/cesnet/cloud/occi/core/ResourceTest.java [new file with mode: 0644]
jOCCI-core/src/test/java/cz/cesnet/cloud/occi/parser/TextParserTest.java [new file with mode: 0644]
jOCCI-core/src/test/resources/log4j.properties [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/collection_occi_action_attribute.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/collection_occi_action_category.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/collection_occi_link_attribute.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/collection_occi_link_category.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/collection_occi_resource_attribute.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/collection_occi_resource_category.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/collection_occi_resource_link.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/collection_plain_action.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/collection_plain_link.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/collection_plain_resource.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/locations_plain.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/locations_uri-list.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/model_occi_actions_full.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/model_occi_actions_minimal.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/model_occi_all.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/model_occi_kinds_full.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/model_occi_kinds_minimal.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/model_occi_mixins_full.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/model_occi_mixins_minimal.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/model_plain_actions_full.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/model_plain_actions_minimal.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/model_plain_all.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/model_plain_kinds_full.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/model_plain_kinds_minimal.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/model_plain_mixins_full.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/parser/text/model_plain_mixins_minimal.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/rendering/text/action_headers_attributes.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/rendering/text/action_headers_category.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/rendering/text/action_plain.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/rendering/text/inline_link_headers.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/rendering/text/inline_link_plain.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/rendering/text/kind_headers.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/rendering/text/kind_plain.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/rendering/text/link_headers_attributes.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/rendering/text/link_headers_categories.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/rendering/text/link_plain.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/rendering/text/mixin_headers.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/rendering/text/mixin_plain.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/rendering/text/resource_headers_attributes.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/rendering/text/resource_headers_categories.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/rendering/text/resource_headers_links.txt [new file with mode: 0644]
jOCCI-core/src/test/resources/rendering/text/resource_plain.txt [new file with mode: 0644]