diff --git a/.gitignore b/.gitignore index 586adb73..7610d1e3 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,8 @@ target bin .metadata -**/integrationTest.properties \ No newline at end of file +**/integrationTest.properties +_site +_tmp +.sass-cache +.awestruct diff --git a/Gemfile b/Gemfile new file mode 100644 index 00000000..f38cff2e --- /dev/null +++ b/Gemfile @@ -0,0 +1,25 @@ +source 'https://rubygems.org' + +# older ruby versions have problems! Lets be specific. use 'rvm use 1.9.3@sites --create' to use specific ruby version +ruby '1.9.3' +gem 'awestruct', '0.5.4.rc3' # Framework for creating static HTML sites +gem 'uglifier', '~> 2.0.1' # Ruby wrapper for UglifyJS JavaScript compressor +gem 'cssminify', '~> 1.0.2' # CSS compression using YUI compressor +gem 'rb-fsevent', '~> 0.9.3' # FSEvents API with Signals catching (without RubyCocoa) +gem 'kramdown', '~> 1.0.1' # Kramdown works on all platforms, rdiscount only on mri +gem 'htmlcompressor', '~> 0.0.3' # Adds in HTML minification, helps remove the warning on awestruct startup +gem 'RedCloth' +gem 'listen', '~> 1.0' +gem 'asciidoctor', '0.1.4' +gem 'slim' +gem 'less' +#gem 'therubyracer' +gem 'tilt', '~> 1.4.0' +gem 'coderay' +gem 'html_press', '~> 0.8.1' +gem 'git' # required to run the '-deploy' option + +# To enable guard and livereload (is C native thus not available on windows. Commented out for now) +#gem 'guard' +#gem 'guard-livereload' +#gem 'yajl-ruby' diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 00000000..a76a07e2 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,109 @@ +GEM + remote: https://rubygems.org/ + specs: + POpen4 (0.1.4) + Platform (>= 0.4.0) + open4 + Platform (0.4.0) + RedCloth (4.2.9) + asciidoctor (0.1.4) + awestruct (0.5.4.rc3) + bootstrap-sass (>= 2.3.1.0) + compass (>= 0.12.1) + compass-960-plugin (~> 0.10.4) + haml (~> 4.0.1) + listen (~> 1.0) + mime-types (= 1.25) + nokogiri (= 1.5.10) + rack (~> 1.5.2) + rest-client (>= 1.6.7) + ruby-s3cmd (~> 0.1.5) + tilt (>= 1.3.5, < 2.0) + zurb-foundation (>= 4.0.9, < 5.0) + bootstrap-sass (3.1.1.0) + sass (~> 3.2) + chunky_png (1.3.0) + coderay (1.1.0) + commonjs (0.2.7) + compass (0.12.3) + chunky_png (~> 1.2) + fssm (>= 0.2.7) + sass (= 3.2.14) + compass-960-plugin (0.10.4) + compass (>= 0.10.0) + css_press (0.3.2) + csspool-st (= 3.1.2) + json + cssminify (1.0.2) + csspool-st (3.1.2) + execjs (2.0.2) + ffi (1.9.3) + fssm (0.2.10) + git (1.2.6) + haml (4.0.5) + tilt + html_press (0.8.2) + htmlentities + multi_css (>= 0.1.0) + multi_js (>= 0.1.0) + htmlcompressor (0.0.7) + yui-compressor (~> 0.9.6) + htmlentities (4.3.1) + json (1.8.1) + kramdown (1.0.2) + less (2.5.0) + commonjs (~> 0.2.7) + listen (1.3.1) + rb-fsevent (>= 0.9.3) + rb-inotify (>= 0.9) + rb-kqueue (>= 0.2) + mime-types (1.25) + multi_css (0.1.0) + css_press + multi_js (0.1.0) + uglifier (~> 2) + multi_json (1.9.2) + nokogiri (1.5.10) + open4 (1.3.3) + rack (1.5.2) + rb-fsevent (0.9.4) + rb-inotify (0.9.3) + ffi (>= 0.5.0) + rb-kqueue (0.2.2) + ffi (>= 0.5.0) + rest-client (1.6.7) + mime-types (>= 1.16) + ruby-s3cmd (0.1.5) + sass (3.2.14) + slim (2.0.2) + temple (~> 0.6.6) + tilt (>= 1.3.3, < 2.1) + temple (0.6.7) + tilt (1.4.1) + uglifier (2.0.1) + execjs (>= 0.3.0) + multi_json (~> 1.0, >= 1.0.2) + yui-compressor (0.9.6) + POpen4 (>= 0.1.4) + zurb-foundation (4.3.2) + sass (>= 3.2.0) + +PLATFORMS + ruby + +DEPENDENCIES + RedCloth + asciidoctor (= 0.1.4) + awestruct (= 0.5.4.rc3) + coderay + cssminify (~> 1.0.2) + git + html_press (~> 0.8.1) + htmlcompressor (~> 0.0.3) + kramdown (~> 1.0.1) + less + listen (~> 1.0) + rb-fsevent (~> 0.9.3) + slim + tilt (~> 1.4.0) + uglifier (~> 2.0.1) diff --git a/README.md b/README.md old mode 100755 new mode 100644 index f416162f..10f2f7d0 --- a/README.md +++ b/README.md @@ -1,35 +1,10 @@ -OpenShift Java Client -=========================== +OpenShift Java Client Website +===================== -Java client for the OpenShift REST API. It pretty much offers all features that are currently available in the rhc-* command line tools -(create/rename a domain, create/destroy applications, list applications, list available cartridges, add cartridges, etc.). -This client is used by JBoss Tools for OpenShift. +Visit this site at http://openshift.github.io/openshift-java-client -Usage ------ -An exemplary usage of the client may look like the following: - IOpenShiftConnection connection = - new OpenShiftConnectionFactory().getConnection("myApplicationId", "user", "password"); - IUser user = connection.getUser(); - IDomain domain = user.createDomain("myDomain"); - IApplication as7Application = domain.createApplication("myApplication", LatestVersionOf.jbossAs().get(user)); - IEmbeddedCartridge mySqlCartridge = as7Application.addEmbeddableCartridge(LatestVersionOf.mySQL().get(user)); - String unstructuredCredentials = mySqlCartridge.getCreationLog(); - String mySqlConnectionUrl = mySqlCartridge.getUrl(); -There are also 2 blog posts on jboss.org which discuss the API in more details: +To run this site locally, checkout this gh-pages-awestruct branch, run "bundle install", and then run "awestruct -d" -* [show-domain-info: openshift-java-client in a nutshell](http://planet.jboss.org/post/show_domain_info_openshift_java_client_in_a_nutshell) -* [enable-openshift-ci: full example using openshift-java-client](https://community.jboss.org/wiki/Enable-openshift-ciFullExampleUsingOpenshift-java-client) - -Most insightful are the integration tests within the library which pretty much use the API in all details: - -* ApplicationResourceIntegrationTest -* DomainResourceIntegrationTest -* EmbeddedCartridgeResourceIntegrationTest -* etc. - -Download --------- -You may either build from source using maven (mvn clean package) or get the prebuilt artifact from the maven central. +To deploy this site, checkout the gh-pages-awestruct branch, run "awestruct", then then run "awestruct -P production --deploy". diff --git a/Rakefile b/Rakefile new file mode 100644 index 00000000..2a7d0b91 --- /dev/null +++ b/Rakefile @@ -0,0 +1,200 @@ +# This file is a rake build file. The purpose of this file is to simplify +# setting up and using Awestruct. It's not required to use Awestruct, though it +# does save you time (hopefully). If you don't want to use rake, just ignore or +# delete this file. +# +# If you're just getting started, execute this command to install Awestruct and +# the libraries on which it depends: +# +# rake setup +# +# The setup task installs the necessary libraries according to which Ruby +# environment you are using. If you want the libraries kept inside the project, +# execute this command instead: +# +# rake setup[local] +# +# IMPORTANT: To install gems, you'll need development tools on your machine, +# which include a C compiler, the Ruby development libraries and some other +# development libraries as well. +# +# There are also tasks for running Awestruct. The build will auto-detect +# whether you are using Bundler and, if you are, wrap calls to awestruct in +# `bundle exec`. +# +# To run in Awestruct in development mode, execute: +# +# rake +# +# To clean the generated site before you build, execute: +# +# rake clean preview +# +# To deploy using the production profile, execute: +# +# rake deploy +# +# To get a list of all tasks, execute: +# +# rake -T +# +# Now you're Awestruct with rake! + +$use_bundle_exec = true +$install_gems = ['awestruct -v "~> 0.5.0"', 'rb-inotify -v "~> 0.9.0"'] +$awestruct_cmd = nil +task :default => :preview + +desc 'Setup the environment to run Awestruct' +task :setup, [:env] => :init do |task, args| + next if !which('awestruct').nil? + + if File.exist? 'Gemfile' + if args[:env] == 'local' + require 'fileutils' + FileUtils.remove_file 'Gemfile.lock', true + FileUtils.remove_dir '.bundle', true + system 'bundle install --binstubs=_bin --path=.bundle' + else + system 'bundle install' + end + else + if args[:env] == 'local' + $install_gems.each do |gem| + msg "Installing #{gem}..." + system "gem install --bindir=_bin --install-dir=.bundle #{gem}" + end + else + $install_gems.each do |gem| + msg "Installing #{gem}..." + system "gem install #{gem}" + end + end + end + msg 'Run awestruct using `awestruct` or `rake`' + # Don't execute any more tasks, need to reset env + exit 0 +end + +desc 'Update the environment to run Awestruct' +task :update => :init do + if File.exist? 'Gemfile' + system 'bundle update' + else + system 'gem update awestruct' + end + # Don't execute any more tasks, need to reset env + exit 0 +end + +desc 'Build and preview the site locally in development mode' +task :preview => :check do + run_awestruct '-d' +end + +# provide a serve task for those used to Jekyll commands +desc 'An alias to the preview task' +task :serve => :preview + +desc 'Generate the site using the specified profile (default: development)' +task :gen, [:profile] => :check do |task, args| + profile = args[:profile] || 'development' + profile = 'production' if profile == 'prod' + run_awestruct "-P #{profile} -g --force" +end + +desc 'Generate the site and deploy to production' +task :deploy => :check do + run_awestruct '-P production -g --force --deploy' +end + +desc 'Clean out generated site and temporary files' +task :clean, :spec do |task, args| + require 'fileutils' + dirs = ['.awestruct', '.sass-cache', '_site'] + if args[:spec] == 'all' + dirs << '_tmp' + end + dirs.each do |dir| + FileUtils.remove_dir dir unless !File.directory? dir + end +end + +# Perform initialization steps, such as setting up the PATH +task :init do + # Detect using gems local to project + if File.exist? '_bin' + ENV['PATH'] = "_bin#{File::PATH_SEPARATOR}#{ENV['PATH']}" + ENV['GEM_HOME'] = '.bundle' + end +end + +desc 'Check to ensure the environment is properly configured' +task :check => :init do + if !File.exist? 'Gemfile' + if which('awestruct').nil? + msg 'Could not find awestruct.', :warn + msg 'Run `rake setup` or `rake setup[local]` to install from RubyGems.' + # Enable once the rubygem-awestruct RPM is available + #msg 'Run `sudo yum install rubygem-awestruct` to install via RPM. (Fedora >= 18)' + exit 1 + else + $use_bundle_exec = false + next + end + end + + begin + require 'bundler' + Bundler.setup + rescue LoadError + $use_bundle_exec = false + rescue StandardError => e + msg e.message, :warn + if which('awestruct').nil? + msg 'Run `rake setup` or `rake setup[local]` to install required gems from RubyGems.' + else + msg 'Run `rake update` to install additional required gems from RubyGems.' + end + exit e.status_code + end +end + +# Execute Awestruct +def run_awestruct(args) + system "#{$use_bundle_exec ? 'bundle exec ' : ''}awestruct #{args}" +end + +# A cross-platform means of finding an executable in the $PATH. +# Respects $PATHEXT, which lists valid file extensions for executables on Windows +# +# which 'awestruct' +# => /usr/bin/awestruct +def which(cmd, opts = {}) + unless $awestruct_cmd.nil? || opts[:clear_cache] + return $awestruct_cmd + end + + $awestruct_cmd = nil + exts = ENV['PATHEXT'] ? ENV['PATHEXT'].split(';') : [''] + ENV['PATH'].split(File::PATH_SEPARATOR).each do |path| + exts.each do |ext| + candidate = File.join path, "#{cmd}#{ext}" + if File.executable? candidate + $awestruct_cmd = candidate + return $awestruct_cmd + end + end + end + return $awestruct_cmd +end + +# Print a message to STDOUT +def msg(text, level = :info) + case level + when :warn + puts "\e[31m#{text}\e[0m" + else + puts "\e[33m#{text}\e[0m" + end +end diff --git a/_config/site.yml b/_config/site.yml new file mode 100644 index 00000000..feff7689 --- /dev/null +++ b/_config/site.yml @@ -0,0 +1,18 @@ +name: OpenShift Java Client + +profiles: + development: + base_url: http://localhost:4242 + production: + base_url: http://openshift.github.io/openshift-java-client + deploy: + repository: git@github.com:openshift/openshift-java-client.git + host: github_pages + branch: gh-pages + google_analytics: UA-40375612-1 + developercorey: + base_url: http://developercorey.github.io/openshift-java-client + deploy: + repository: git@github.com:developercorey/openshift-java-client.git + host: github_pages + branch: gh-pages diff --git a/_ext/pipeline.rb b/_ext/pipeline.rb new file mode 100644 index 00000000..7f09abf0 --- /dev/null +++ b/_ext/pipeline.rb @@ -0,0 +1,10 @@ +require 'bootstrap-sass' + +Awestruct::Extensions::Pipeline.new do + helper Awestruct::Extensions::GoogleAnalytics + helper Awestruct::Extensions::Partial + # extension Awestruct::Extensions::Posts.new '/news' + # extension Awestruct::Extensions::Indexifier.new + # Indexifier *must* come before Atomizer + # extension Awestruct::Extensions::Atomizer.new :posts, '/feed.atom' +end diff --git a/_layouts/default.html.haml b/_layouts/default.html.haml new file mode 100644 index 00000000..f40c800c --- /dev/null +++ b/_layouts/default.html.haml @@ -0,0 +1,73 @@ +!!! 5 +%html(lang="en") + %head + %title #{page.title} | OpenShift Java Client + %meta(charset="utf-8") + %meta(name="viewport" content="width=device-width, initial-scale=1.0") + %meta(name="description" content="#{page.description}") + + %link(href="#{site.base_url}/images/favicon.png" rel="shortcut icon") + + %link(href="#{site.base_url}/css/bootstrap.min.css" rel="stylesheet") + %link(href="#{site.base_url}/css/prism.css" rel="stylesheet") + %link(href="#{site.base_url}/css/main.css" rel="stylesheet") + %link(href="#{site.base_url}/css/topnav.css" rel="stylesheet") + %link(href="#{site.base_url}/css/SyntaxHighlighter.css" rel="stylesheet") + / IE 6-8 support of HTML 5 elements + /[if lt IE 9] + %script(src="#{site.base_url}/js/html5shiv.js") + %script(src="#{site.base_url}/js/respond.min.js") + %script(src="#{site.base_url}/js/prism.js") + %body + .navbar.navbar-inverse.navbar-fixed-top{:role=>"navigation"} + .container + .navbar-header + %a.navbar-brand{:href=>"#{site.base_url}/"} OpenShift Java Client + .collapse.navbar-collapse + %ul.nav.navbar-nav + %li + %a.getstarted{:href=>"#{site.base_url}/getstarted" } Get Started + %li + %a{:href=>"../documentation", :target=>"_blank"} Documentation + %li + %a.samplecode{:href=>"#{site.base_url}/samplecode"} Sample Code + %li + %a.gethelp{:href=>"#{site.base_url}/gethelp" } Get Help + %li + %a{:href=>"https://github.com/openshift/openshift-java-client", :target=>"_blank"} Source Code + %li + %a.joinus{:href=>"#{site.base_url}/joinus"} Join Us + .container + ~ content + .container + %hr + %footer + %a{:href=>"#{site.base_url}/getstarted"} Get Started + | + %a{:href=>"#{site.base_url}/documentation", :target=>"_blank" }Documentation + | + %a{:href=>"#{site.base_url}/samplecode"} Sample Code + | + %a{:href=>"#{site.base_url}/gethelp"} Get Help + | + %a{:href=>"https://github.com/openshift/openshift-java-client", :target=>"_blank"} Source Code + | + %a{ :href=>"#{site.base_url}/joinus"} Join Us + %p.copyright< + Copyright © 2011 Red Hat, Inc. + Distributed under license by Red Hat, Inc. All rights reserved.
+ This program is made available under the terms of the + Eclipse Public License v1.0 which accompanies this distribution, + and is available here to view online. + %script(src="#{site.base_url}/js/jquery-1.10.2.min.js") + %script(src="#{site.base_url}/js/bootstrap.min.js") + %script(src="#{site.base_url}/js/alignbuttons.js") + = google_analytics_async + %script(src="#{site.base_url}/js/shCore.js") + %script(src="#{site.base_url}/js/shBrushJava.js") + %script(src="#{site.base_url}/js/shBrushXml.js") + :javascript + dp.SyntaxHighlighter.HighlightAll('code'); + $(function(){ + $(".#{page.page_name}").addClass("current"); + }); \ No newline at end of file diff --git a/_layouts/landing.html.haml b/_layouts/landing.html.haml new file mode 100644 index 00000000..63a0460b --- /dev/null +++ b/_layouts/landing.html.haml @@ -0,0 +1,46 @@ +!!! 5 +%html(lang="en") + %head + %title OpenShift Java Client + %meta(charset="utf-8") + %meta(name="viewport" content="width=device-width, initial-scale=1.0") + %meta(name="description" content="#{page.description}") + + %link(href="#{site.base_url}/images/favicon.png" rel="shortcut icon") + + %link(href="#{site.base_url}/css/bootstrap.min.css" rel="stylesheet") + %link(href="#{site.base_url}/css/prism.css" rel="stylesheet") + %link(href="#{site.base_url}/css/main.css" rel="stylesheet") + / IE 6-8 support of HTML 5 elements + /[if lt IE 9] + %script(src="#{site.base_url}/js/html5shiv.js") + %script(src="#{site.base_url}/js/respond.min.js") + %script(src="#{site.base_url}/js/prism.js") + %body + + ~ content + .container + %hr + %footer + + %a{:href=>"#{site.base_url}/getstarted",}Get Started + | + %a{:href=>"#{site.base_url}/documentation", :target=>"_blank" }Documentation + | + %a{:href=>"#{site.base_url}/samplecode",} Sample Code + | + %a{:href=>"#{site.base_url}/gethelp"} Get Help + | + %a{:href=>"https://github.com/openshift/openshift-java-client", :target=>"_blank"} Source Code + | + %a{ :href=>"#{site.base_url}/joinus"} Join Us + %p.copyright< + Copyright © 2011 Red Hat, Inc. + Distributed under license by Red Hat, Inc. All rights reserved.
+ This program is made available under the terms of the + Eclipse Public License v1.0 which accompanies this distribution, + and is available here to view online. + %script(src="#{site.base_url}/js/jquery-1.10.2.min.js") + %script(src="#{site.base_url}/js/bootstrap.min.js") + %script(src="#{site.base_url}/js/alignbuttons.js") + = google_analytics_async \ No newline at end of file diff --git a/css/SyntaxHighlighter.css b/css/SyntaxHighlighter.css new file mode 100644 index 00000000..85a82619 --- /dev/null +++ b/css/SyntaxHighlighter.css @@ -0,0 +1,185 @@ +.dp-highlighter +{ + font-family: "Consolas", "Courier New", Courier, mono, serif; + font-size: 12px; + background-color: #E7E5DC; + width: 99%; + overflow: auto; + margin: 18px 0 18px 0 !important; + padding-top: 1px; /* adds a little border on top when controls are hidden */ +} + +/* clear styles */ +.dp-highlighter ol, +.dp-highlighter ol li, +.dp-highlighter ol li span +{ + margin: 0; + padding: 0; + border: none; +} + +.dp-highlighter a, +.dp-highlighter a:hover +{ + background: none; + border: none; + padding: 0; + margin: 0; +} + +.dp-highlighter .bar +{ + padding-left: 45px; +} + +.dp-highlighter.collapsed .bar, +.dp-highlighter.nogutter .bar +{ + padding-left: 0px; +} + +.dp-highlighter ol +{ + list-style: decimal; /* for ie */ + background-color: #fff; + margin: 0px 0px 1px 45px !important; /* 1px bottom margin seems to fix occasional Firefox scrolling */ + padding: 0px; + color: #5C5C5C; +} + +.dp-highlighter.nogutter ol, +.dp-highlighter.nogutter ol li +{ + list-style: none !important; + margin-left: 0px !important; +} + +.dp-highlighter ol li, +.dp-highlighter .columns div +{ + list-style: decimal-leading-zero; /* better look for others, override cascade from OL */ + list-style-position: outside !important; + border-left: 3px solid #6CE26C; + background-color: #F8F8F8; + color: #5C5C5C; + padding: 0 3px 0 10px !important; + margin: 0 !important; + line-height: 14px; +} + +.dp-highlighter.nogutter ol li, +.dp-highlighter.nogutter .columns div +{ + border: 0; +} + +.dp-highlighter .columns +{ + background-color: #F8F8F8; + color: gray; + overflow: hidden; + width: 100%; +} + +.dp-highlighter .columns div +{ + padding-bottom: 5px; +} + +.dp-highlighter ol li.alt +{ + background-color: #FFF; + color: inherit; +} + +.dp-highlighter ol li span +{ + color: black; + background-color: inherit; +} + +/* Adjust some properties when collapsed */ + +.dp-highlighter.collapsed ol +{ + margin: 0px; +} + +.dp-highlighter.collapsed ol li +{ + display: none; +} + +/* Additional modifications when in print-view */ + +.dp-highlighter.printing +{ + border: none; +} + +.dp-highlighter.printing .tools +{ + display: none !important; +} + +.dp-highlighter.printing li +{ + display: list-item !important; +} + +/* Styles for the tools */ + +.dp-highlighter .tools +{ + padding: 3px 8px 3px 10px; + font: 9px Verdana, Geneva, Arial, Helvetica, sans-serif; + color: silver; + background-color: #f8f8f8; + padding-bottom: 10px; + border-left: 3px solid #6CE26C; +} + +.dp-highlighter.nogutter .tools +{ + border-left: 0; +} + +.dp-highlighter.collapsed .tools +{ + border-bottom: 0; +} + +.dp-highlighter .tools a +{ + font-size: 9px; + color: #a0a0a0; + background-color: inherit; + text-decoration: none; + margin-right: 10px; +} + +.dp-highlighter .tools a:hover +{ + color: red; + background-color: inherit; + text-decoration: underline; +} + +/* About dialog styles */ + +.dp-about { background-color: #fff; color: #333; margin: 0px; padding: 0px; } +.dp-about table { width: 100%; height: 100%; font-size: 11px; font-family: Tahoma, Verdana, Arial, sans-serif !important; } +.dp-about td { padding: 10px; vertical-align: top; } +.dp-about .copy { border-bottom: 1px solid #ACA899; height: 95%; } +.dp-about .title { color: red; background-color: inherit; font-weight: bold; } +.dp-about .para { margin: 0 0 4px 0; } +.dp-about .footer { background-color: #ECEADB; color: #333; border-top: 1px solid #fff; text-align: right; } +.dp-about .close { font-size: 11px; font-family: Tahoma, Verdana, Arial, sans-serif !important; background-color: #ECEADB; color: #333; width: 60px; height: 22px; } + +/* Language specific styles */ + +.dp-highlighter .comment, .dp-highlighter .comments { color: #008200; background-color: inherit; } +.dp-highlighter .string { color: blue; background-color: inherit; } +.dp-highlighter .keyword { color: #069; font-weight: bold; background-color: inherit; } +.dp-highlighter .preprocessor { color: gray; background-color: inherit; } diff --git a/css/bootstrap.min.css b/css/bootstrap.min.css new file mode 100644 index 00000000..c547283b --- /dev/null +++ b/css/bootstrap.min.css @@ -0,0 +1,7 @@ +/*! + * Bootstrap v3.0.3 (http://getbootstrap.com) + * Copyright 2013 Twitter, Inc. + * Licensed under http://www.apache.org/licenses/LICENSE-2.0 + */ + +/*! normalize.css v2.1.3 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a{background:transparent}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{margin:.67em 0;font-size:2em}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{height:0;-moz-box-sizing:content-box;box-sizing:content-box}mark{color:#000;background:#ff0}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid #c0c0c0}legend{padding:0;border:0}button,input,select,textarea{margin:0;font-family:inherit;font-size:100%}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{padding:0;box-sizing:border-box}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}@media print{*{color:#000!important;text-shadow:none!important;background:transparent!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%!important}@page{margin:2cm .5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.table td,.table th{background-color:#fff!important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table-bordered th,.table-bordered td{border:1px solid #ddd!important}}*,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.428571429;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}img{vertical-align:middle}.img-responsive{display:block;height:auto;max-width:100%}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;height:auto;max-width:100%;padding:4px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#999}h1,h2,h3{margin-top:20px;margin-bottom:10px}h1 small,h2 small,h3 small,h1 .small,h2 .small,h3 .small{font-size:65%}h4,h5,h6{margin-top:10px;margin-bottom:10px}h4 small,h5 small,h6 small,h4 .small,h5 .small,h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:200;line-height:1.4}@media(min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}cite{font-style:normal}.text-muted{color:#999}.text-primary{color:#428bca}.text-primary:hover{color:#3071a9}.text-warning{color:#8a6d3b}.text-warning:hover{color:#66512c}.text-danger{color:#a94442}.text-danger:hover{color:#843534}.text-success{color:#3c763d}.text-success:hover{color:#2b542c}.text-info{color:#31708f}.text-info:hover{color:#245269}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}.list-inline>li:first-child{padding-left:0}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.428571429}dt{font-weight:bold}dd{margin-left:0}@media(min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}.dl-horizontal dd:before,.dl-horizontal dd:after{display:table;content:" "}.dl-horizontal dd:after{clear:both}.dl-horizontal dd:before,.dl-horizontal dd:after{display:table;content:" "}.dl-horizontal dd:after{clear:both}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{font-size:17.5px;font-weight:300;line-height:1.25}blockquote p:last-child{margin-bottom:0}blockquote small,blockquote .small{display:block;line-height:1.428571429;color:#999}blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small,blockquote.pull-right .small{text-align:right}blockquote.pull-right small:before,blockquote.pull-right .small:before{content:''}blockquote.pull-right small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:20px;font-style:normal;line-height:1.428571429}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;white-space:nowrap;background-color:#f9f2f4;border-radius:4px}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.428571429;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.container:before,.container:after{display:table;content:" "}.container:after{clear:both}.container:before,.container:after{display:table;content:" "}.container:after{clear:both}@media(min-width:768px){.container{width:750px}}@media(min-width:992px){.container{width:970px}}@media(min-width:1200px){.container{width:1170px}}.row{margin-right:-15px;margin-left:-15px}.row:before,.row:after{display:table;content:" "}.row:after{clear:both}.row:before,.row:after{display:table;content:" "}.row:after{clear:both}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666666666666%}.col-xs-10{width:83.33333333333334%}.col-xs-9{width:75%}.col-xs-8{width:66.66666666666666%}.col-xs-7{width:58.333333333333336%}.col-xs-6{width:50%}.col-xs-5{width:41.66666666666667%}.col-xs-4{width:33.33333333333333%}.col-xs-3{width:25%}.col-xs-2{width:16.666666666666664%}.col-xs-1{width:8.333333333333332%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666666666666%}.col-xs-pull-10{right:83.33333333333334%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666666666666%}.col-xs-pull-7{right:58.333333333333336%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666666666667%}.col-xs-pull-4{right:33.33333333333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.666666666666664%}.col-xs-pull-1{right:8.333333333333332%}.col-xs-pull-0{right:0}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666666666666%}.col-xs-push-10{left:83.33333333333334%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666666666666%}.col-xs-push-7{left:58.333333333333336%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666666666667%}.col-xs-push-4{left:33.33333333333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.666666666666664%}.col-xs-push-1{left:8.333333333333332%}.col-xs-push-0{left:0}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666666666666%}.col-xs-offset-10{margin-left:83.33333333333334%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666666666666%}.col-xs-offset-7{margin-left:58.333333333333336%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666666666667%}.col-xs-offset-4{margin-left:33.33333333333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.666666666666664%}.col-xs-offset-1{margin-left:8.333333333333332%}.col-xs-offset-0{margin-left:0}@media(min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666666666666%}.col-sm-10{width:83.33333333333334%}.col-sm-9{width:75%}.col-sm-8{width:66.66666666666666%}.col-sm-7{width:58.333333333333336%}.col-sm-6{width:50%}.col-sm-5{width:41.66666666666667%}.col-sm-4{width:33.33333333333333%}.col-sm-3{width:25%}.col-sm-2{width:16.666666666666664%}.col-sm-1{width:8.333333333333332%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666666666666%}.col-sm-pull-10{right:83.33333333333334%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666666666666%}.col-sm-pull-7{right:58.333333333333336%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666666666667%}.col-sm-pull-4{right:33.33333333333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.666666666666664%}.col-sm-pull-1{right:8.333333333333332%}.col-sm-pull-0{right:0}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666666666666%}.col-sm-push-10{left:83.33333333333334%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666666666666%}.col-sm-push-7{left:58.333333333333336%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666666666667%}.col-sm-push-4{left:33.33333333333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.666666666666664%}.col-sm-push-1{left:8.333333333333332%}.col-sm-push-0{left:0}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666666666666%}.col-sm-offset-10{margin-left:83.33333333333334%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666666666666%}.col-sm-offset-7{margin-left:58.333333333333336%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666666666667%}.col-sm-offset-4{margin-left:33.33333333333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.666666666666664%}.col-sm-offset-1{margin-left:8.333333333333332%}.col-sm-offset-0{margin-left:0}}@media(min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666666666666%}.col-md-10{width:83.33333333333334%}.col-md-9{width:75%}.col-md-8{width:66.66666666666666%}.col-md-7{width:58.333333333333336%}.col-md-6{width:50%}.col-md-5{width:41.66666666666667%}.col-md-4{width:33.33333333333333%}.col-md-3{width:25%}.col-md-2{width:16.666666666666664%}.col-md-1{width:8.333333333333332%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666666666666%}.col-md-pull-10{right:83.33333333333334%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666666666666%}.col-md-pull-7{right:58.333333333333336%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666666666667%}.col-md-pull-4{right:33.33333333333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.666666666666664%}.col-md-pull-1{right:8.333333333333332%}.col-md-pull-0{right:0}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666666666666%}.col-md-push-10{left:83.33333333333334%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666666666666%}.col-md-push-7{left:58.333333333333336%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666666666667%}.col-md-push-4{left:33.33333333333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.666666666666664%}.col-md-push-1{left:8.333333333333332%}.col-md-push-0{left:0}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666666666666%}.col-md-offset-10{margin-left:83.33333333333334%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666666666666%}.col-md-offset-7{margin-left:58.333333333333336%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666666666667%}.col-md-offset-4{margin-left:33.33333333333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.666666666666664%}.col-md-offset-1{margin-left:8.333333333333332%}.col-md-offset-0{margin-left:0}}@media(min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666666666666%}.col-lg-10{width:83.33333333333334%}.col-lg-9{width:75%}.col-lg-8{width:66.66666666666666%}.col-lg-7{width:58.333333333333336%}.col-lg-6{width:50%}.col-lg-5{width:41.66666666666667%}.col-lg-4{width:33.33333333333333%}.col-lg-3{width:25%}.col-lg-2{width:16.666666666666664%}.col-lg-1{width:8.333333333333332%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666666666666%}.col-lg-pull-10{right:83.33333333333334%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666666666666%}.col-lg-pull-7{right:58.333333333333336%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666666666667%}.col-lg-pull-4{right:33.33333333333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.666666666666664%}.col-lg-pull-1{right:8.333333333333332%}.col-lg-pull-0{right:0}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666666666666%}.col-lg-push-10{left:83.33333333333334%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666666666666%}.col-lg-push-7{left:58.333333333333336%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666666666667%}.col-lg-push-4{left:33.33333333333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.666666666666664%}.col-lg-push-1{left:8.333333333333332%}.col-lg-push-0{left:0}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666666666666%}.col-lg-offset-10{margin-left:83.33333333333334%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666666666666%}.col-lg-offset-7{margin-left:58.333333333333336%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666666666667%}.col-lg-offset-4{margin-left:33.33333333333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.666666666666664%}.col-lg-offset-1{margin-left:8.333333333333332%}.col-lg-offset-0{margin-left:0}}table{max-width:100%;background-color:transparent}th{text-align:left}.table{width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.428571429;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*="col-"]{position:static;display:table-column;float:none}table td[class*="col-"],table th[class*="col-"]{display:table-cell;float:none}.table>thead>tr>.active,.table>tbody>tr>.active,.table>tfoot>tr>.active,.table>thead>.active>td,.table>tbody>.active>td,.table>tfoot>.active>td,.table>thead>.active>th,.table>tbody>.active>th,.table>tfoot>.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>.active:hover,.table-hover>tbody>.active:hover>td,.table-hover>tbody>.active:hover>th{background-color:#e8e8e8}.table>thead>tr>.success,.table>tbody>tr>.success,.table>tfoot>tr>.success,.table>thead>.success>td,.table>tbody>.success>td,.table>tfoot>.success>td,.table>thead>.success>th,.table>tbody>.success>th,.table>tfoot>.success>th{background-color:#dff0d8}.table-hover>tbody>tr>.success:hover,.table-hover>tbody>.success:hover>td,.table-hover>tbody>.success:hover>th{background-color:#d0e9c6}.table>thead>tr>.danger,.table>tbody>tr>.danger,.table>tfoot>tr>.danger,.table>thead>.danger>td,.table>tbody>.danger>td,.table>tfoot>.danger>td,.table>thead>.danger>th,.table>tbody>.danger>th,.table>tfoot>.danger>th{background-color:#f2dede}.table-hover>tbody>tr>.danger:hover,.table-hover>tbody>.danger:hover>td,.table-hover>tbody>.danger:hover>th{background-color:#ebcccc}.table>thead>tr>.warning,.table>tbody>tr>.warning,.table>tfoot>tr>.warning,.table>thead>.warning>td,.table>tbody>.warning>td,.table>tfoot>.warning>td,.table>thead>.warning>th,.table>tbody>.warning>th,.table>tfoot>.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>.warning:hover,.table-hover>tbody>.warning:hover>td,.table-hover>tbody>.warning:hover>th{background-color:#faf2cc}@media(max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-x:scroll;overflow-y:hidden;border:1px solid #ddd;-ms-overflow-style:-ms-autohiding-scrollbar;-webkit-overflow-scrolling:touch}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}select[multiple],select[size]{height:auto}select optgroup{font-family:inherit;font-size:inherit;font-style:inherit}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}input[type="number"]::-webkit-outer-spin-button,input[type="number"]::-webkit-inner-spin-button{height:auto}output{display:block;padding-top:7px;font-size:14px;line-height:1.428571429;color:#555;vertical-align:middle}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;color:#555;vertical-align:middle;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6)}.form-control:-moz-placeholder{color:#999}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee}textarea.form-control{height:auto}.form-group{margin-bottom:15px}.radio,.checkbox{display:block;min-height:20px;padding-left:20px;margin-top:10px;margin-bottom:10px;vertical-align:middle}.radio label,.checkbox label{display:inline;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{float:left;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;font-weight:normal;vertical-align:middle;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],.radio[disabled],.radio-inline[disabled],.checkbox[disabled],.checkbox-inline[disabled],fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"],fieldset[disabled] .radio,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm{height:auto}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg{height:auto}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.form-control-static{margin-bottom:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media(min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block}.form-inline select.form-control{width:auto}.form-inline .radio,.form-inline .checkbox{display:inline-block;padding-left:0;margin-top:0;margin-bottom:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:none;margin-left:0}}.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}.form-horizontal .form-group:before,.form-horizontal .form-group:after{display:table;content:" "}.form-horizontal .form-group:after{clear:both}.form-horizontal .form-group:before,.form-horizontal .form-group:after{display:table;content:" "}.form-horizontal .form-group:after{clear:both}.form-horizontal .form-control-static{padding-top:7px}@media(min-width:768px){.form-horizontal .control-label{text-align:right}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:normal;line-height:1.428571429;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#fff}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{color:#fff;background-color:#3276b1;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{color:#fff;background-color:#47a447;border-color:#398439}.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc}.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-link{font-weight:normal;color:#428bca;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#999;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%;padding-right:0;padding-left:0}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';-webkit-font-smoothing:antialiased;font-style:normal;font-weight:normal;line-height:1;-moz-osx-font-smoothing:grayscale}.glyphicon:empty{width:1em}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#428bca;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.428571429;color:#999}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media(min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar:before,.btn-toolbar:after{display:table;content:" "}.btn-toolbar:after{clear:both}.btn-toolbar:before,.btn-toolbar:after{display:table;content:" "}.btn-toolbar:after{clear:both}.btn-toolbar .btn-group{float:left}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group,.btn-toolbar>.btn-group+.btn-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{display:table;content:" "}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{display:table;content:" "}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-bottom-left-radius:4px;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child>.btn:last-child,.btn-group-vertical>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;border-collapse:separate;table-layout:fixed}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}[data-toggle="buttons"]>.btn>input[type="radio"],[data-toggle="buttons"]>.btn>input[type="checkbox"]{display:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-right:0;padding-left:0}.input-group .form-control{width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;white-space:nowrap}.input-group-btn:first-child>.btn{margin-right:-1px}.input-group-btn:last-child>.btn{margin-left:-1px}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-4px}.input-group-btn>.btn:hover,.input-group-btn>.btn:active{z-index:2}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav:before,.nav:after{display:table;content:" "}.nav:after{clear:both}.nav:before,.nav:after{display:table;content:" "}.nav:after{clear:both}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#999}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#999;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.428571429;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media(min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media(min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}.navbar:before,.navbar:after{display:table;content:" "}.navbar:after{clear:both}.navbar:before,.navbar:after{display:table;content:" "}.navbar:after{clear:both}@media(min-width:768px){.navbar{border-radius:4px}}.navbar-header:before,.navbar-header:after{display:table;content:" "}.navbar-header:after{clear:both}.navbar-header:before,.navbar-header:after{display:table;content:" "}.navbar-header:after{clear:both}@media(min-width:768px){.navbar-header{float:left}}.navbar-collapse{max-height:340px;padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse:before,.navbar-collapse:after{display:table;content:" "}.navbar-collapse:after{clear:both}.navbar-collapse:before,.navbar-collapse:after{display:table;content:" "}.navbar-collapse:after{clear:both}.navbar-collapse.in{overflow-y:auto}@media(min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-right:0;padding-left:0}}.container>.navbar-header,.container>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media(min-width:768px){.container>.navbar-header,.container>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media(min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media(min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media(min-width:768px){.navbar>.container .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media(min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media(max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media(min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}.navbar-nav.navbar-right:last-child{margin-right:-15px}}@media(min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1)}@media(min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block}.navbar-form select.form-control{width:auto}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;padding-left:0;margin-top:0;margin-bottom:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{float:none;margin-left:0}}@media(max-width:767px){.navbar-form .form-group{margin-bottom:5px}}@media(min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-form.navbar-right:last-child{margin-right:-15px}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-nav.pull-right>li>.dropdown-menu,.navbar-nav>li>.dropdown-menu.pull-right{right:0;left:auto}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media(min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}.navbar-text.navbar-right:last-child{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#ccc}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:#e7e7e7}@media(max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#999}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .navbar-nav>li>a{color:#999}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{color:#fff;background-color:#080808}@media(max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#999}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#fff}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#999}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.428571429;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{background-color:#eee}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;cursor:default;background-color:#428bca;border-color:#428bca}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#999;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager:before,.pager:after{display:table;content:" "}.pager:after{clear:both}.pager:before,.pager:after{display:table;content:" "}.pager:after{clear:both}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label[href]:hover,.label[href]:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#999}.label-default[href]:hover,.label-default[href]:focus{background-color:#808080}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#999;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;font-size:21px;font-weight:200;line-height:2.1428571435;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{line-height:1;color:inherit}.jumbotron p{line-height:1.4}.container .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-right:60px;padding-left:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img,.thumbnail a>img{display:block;height:auto;max-width:100%;margin-right:auto;margin-left:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable{padding-right:35px}.alert-dismissable .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;background-color:#f5f5f5}a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}a.list-group-item.active .list-group-item-heading,a.list-group-item.active:hover .list-group-item-heading,a.list-group-item.active:focus .list-group-item-heading{color:inherit}a.list-group-item.active .list-group-item-text,a.list-group-item.active:hover .list-group-item-text,a.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-body:before,.panel-body:after{display:table;content:" "}.panel-body:after{clear:both}.panel-body:before,.panel-body:after{display:table;content:" "}.panel-body:after{clear:both}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0}.panel>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel>.list-group .list-group-item:last-child{border-bottom:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child th,.panel>.table>tbody:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:last-child>th,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:last-child>td,.panel>.table-responsive>.table-bordered>thead>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-group .panel{margin-bottom:0;overflow:hidden;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse .panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse .panel-body{border-top-color:#ddd}.panel-default>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse .panel-body{border-top-color:#428bca}.panel-primary>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse .panel-body{border-top-color:#d6e9c6}.panel-success>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d6e9c6}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse .panel-body{border-top-color:#faebcc}.panel-warning>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse .panel-body{border-top-color:#ebccd1}.panel-danger>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ebccd1}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse .panel-body{border-top-color:#bce8f1}.panel-info>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#bce8f1}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;display:none;overflow:auto;overflow-y:scroll}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.modal-dialog{position:relative;z-index:1050;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1030;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{min-height:16.428571429px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.428571429}.modal-body{position:relative;padding:20px}.modal-footer{padding:19px 20px 20px;margin-top:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer:before,.modal-footer:after{display:table;content:" "}.modal-footer:after{clear:both}.modal-footer:before,.modal-footer:after{display:table;content:" "}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}@media screen and (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}}.tooltip{position:absolute;z-index:1030;display:block;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0);visibility:visible}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.top-right .tooltip-arrow{right:5px;bottom:0;border-top-color:#000;border-width:5px 5px 0}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-right-color:#000;border-width:5px 5px 5px 0}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-left-color:#000;border-width:5px 0 5px 5px}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-bottom-color:#000;border-width:0 5px 5px}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-bottom-color:#000;border-width:0 5px 5px}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-bottom-color:#000;border-width:0 5px 5px}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;white-space:normal;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);background-clip:padding-box}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover .arrow{border-width:11px}.popover .arrow:after{border-width:10px;content:""}.popover.top .arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);border-bottom-width:0}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-top-color:#fff;border-bottom-width:0;content:" "}.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,0.25);border-left-width:0}.popover.right .arrow:after{bottom:-10px;left:1px;border-right-color:#fff;border-left-width:0;content:" "}.popover.bottom .arrow{top:-11px;left:50%;margin-left:-11px;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);border-top-width:0}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-bottom-color:#fff;border-top-width:0;content:" "}.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-left-color:#999;border-left-color:rgba(0,0,0,0.25);border-right-width:0}.popover.left .arrow:after{right:1px;bottom:-10px;border-left-color:#fff;border-right-width:0;content:" "}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;height:auto;max-width:100%;line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);opacity:.5;filter:alpha(opacity=50)}.carousel-control.left{background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.5) 0),color-stop(rgba(0,0,0,0.0001) 100%));background-image:linear-gradient(to right,rgba(0,0,0,0.5) 0,rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1)}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.0001) 0),color-stop(rgba(0,0,0,0.5) 100%));background-image:linear-gradient(to right,rgba(0,0,0,0.0001) 0,rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1)}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;outline:0;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicons-chevron-left,.carousel-control .glyphicons-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after{display:table;content:" "}.clearfix:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important;visibility:hidden!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,tr.visible-xs,th.visible-xs,td.visible-xs{display:none!important}@media(max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}th.visible-xs,td.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-xs.visible-sm{display:block!important}table.visible-xs.visible-sm{display:table}tr.visible-xs.visible-sm{display:table-row!important}th.visible-xs.visible-sm,td.visible-xs.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-xs.visible-md{display:block!important}table.visible-xs.visible-md{display:table}tr.visible-xs.visible-md{display:table-row!important}th.visible-xs.visible-md,td.visible-xs.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-xs.visible-lg{display:block!important}table.visible-xs.visible-lg{display:table}tr.visible-xs.visible-lg{display:table-row!important}th.visible-xs.visible-lg,td.visible-xs.visible-lg{display:table-cell!important}}.visible-sm,tr.visible-sm,th.visible-sm,td.visible-sm{display:none!important}@media(max-width:767px){.visible-sm.visible-xs{display:block!important}table.visible-sm.visible-xs{display:table}tr.visible-sm.visible-xs{display:table-row!important}th.visible-sm.visible-xs,td.visible-sm.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}th.visible-sm,td.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-sm.visible-md{display:block!important}table.visible-sm.visible-md{display:table}tr.visible-sm.visible-md{display:table-row!important}th.visible-sm.visible-md,td.visible-sm.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-sm.visible-lg{display:block!important}table.visible-sm.visible-lg{display:table}tr.visible-sm.visible-lg{display:table-row!important}th.visible-sm.visible-lg,td.visible-sm.visible-lg{display:table-cell!important}}.visible-md,tr.visible-md,th.visible-md,td.visible-md{display:none!important}@media(max-width:767px){.visible-md.visible-xs{display:block!important}table.visible-md.visible-xs{display:table}tr.visible-md.visible-xs{display:table-row!important}th.visible-md.visible-xs,td.visible-md.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-md.visible-sm{display:block!important}table.visible-md.visible-sm{display:table}tr.visible-md.visible-sm{display:table-row!important}th.visible-md.visible-sm,td.visible-md.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}th.visible-md,td.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-md.visible-lg{display:block!important}table.visible-md.visible-lg{display:table}tr.visible-md.visible-lg{display:table-row!important}th.visible-md.visible-lg,td.visible-md.visible-lg{display:table-cell!important}}.visible-lg,tr.visible-lg,th.visible-lg,td.visible-lg{display:none!important}@media(max-width:767px){.visible-lg.visible-xs{display:block!important}table.visible-lg.visible-xs{display:table}tr.visible-lg.visible-xs{display:table-row!important}th.visible-lg.visible-xs,td.visible-lg.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-lg.visible-sm{display:block!important}table.visible-lg.visible-sm{display:table}tr.visible-lg.visible-sm{display:table-row!important}th.visible-lg.visible-sm,td.visible-lg.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-lg.visible-md{display:block!important}table.visible-lg.visible-md{display:table}tr.visible-lg.visible-md{display:table-row!important}th.visible-lg.visible-md,td.visible-lg.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}th.visible-lg,td.visible-lg{display:table-cell!important}}.hidden-xs{display:block!important}table.hidden-xs{display:table}tr.hidden-xs{display:table-row!important}th.hidden-xs,td.hidden-xs{display:table-cell!important}@media(max-width:767px){.hidden-xs,tr.hidden-xs,th.hidden-xs,td.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-xs.hidden-sm,tr.hidden-xs.hidden-sm,th.hidden-xs.hidden-sm,td.hidden-xs.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-xs.hidden-md,tr.hidden-xs.hidden-md,th.hidden-xs.hidden-md,td.hidden-xs.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-xs.hidden-lg,tr.hidden-xs.hidden-lg,th.hidden-xs.hidden-lg,td.hidden-xs.hidden-lg{display:none!important}}.hidden-sm{display:block!important}table.hidden-sm{display:table}tr.hidden-sm{display:table-row!important}th.hidden-sm,td.hidden-sm{display:table-cell!important}@media(max-width:767px){.hidden-sm.hidden-xs,tr.hidden-sm.hidden-xs,th.hidden-sm.hidden-xs,td.hidden-sm.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-sm,tr.hidden-sm,th.hidden-sm,td.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-sm.hidden-md,tr.hidden-sm.hidden-md,th.hidden-sm.hidden-md,td.hidden-sm.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-sm.hidden-lg,tr.hidden-sm.hidden-lg,th.hidden-sm.hidden-lg,td.hidden-sm.hidden-lg{display:none!important}}.hidden-md{display:block!important}table.hidden-md{display:table}tr.hidden-md{display:table-row!important}th.hidden-md,td.hidden-md{display:table-cell!important}@media(max-width:767px){.hidden-md.hidden-xs,tr.hidden-md.hidden-xs,th.hidden-md.hidden-xs,td.hidden-md.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-md.hidden-sm,tr.hidden-md.hidden-sm,th.hidden-md.hidden-sm,td.hidden-md.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-md,tr.hidden-md,th.hidden-md,td.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-md.hidden-lg,tr.hidden-md.hidden-lg,th.hidden-md.hidden-lg,td.hidden-md.hidden-lg{display:none!important}}.hidden-lg{display:block!important}table.hidden-lg{display:table}tr.hidden-lg{display:table-row!important}th.hidden-lg,td.hidden-lg{display:table-cell!important}@media(max-width:767px){.hidden-lg.hidden-xs,tr.hidden-lg.hidden-xs,th.hidden-lg.hidden-xs,td.hidden-lg.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-lg.hidden-sm,tr.hidden-lg.hidden-sm,th.hidden-lg.hidden-sm,td.hidden-lg.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-lg.hidden-md,tr.hidden-lg.hidden-md,th.hidden-lg.hidden-md,td.hidden-lg.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-lg,tr.hidden-lg,th.hidden-lg,td.hidden-lg{display:none!important}}.visible-print,tr.visible-print,th.visible-print,td.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}th.visible-print,td.visible-print{display:table-cell!important}.hidden-print,tr.hidden-print,th.hidden-print,td.hidden-print{display:none!important}} \ No newline at end of file diff --git a/css/main.css b/css/main.css new file mode 100755 index 00000000..16ca36cb --- /dev/null +++ b/css/main.css @@ -0,0 +1,72 @@ +body { + background-color:#e6e6e6; +} +a { + color:#ef2e32; +} +a:hover { + color:#ef2e32; +} +.navbar>.container .navbar-brand { + margin-left: -15px; + color:#fff; +} +.navbar>.container .navbar-brand:hover { + margin-left: -15px; + color:#ef2e32; +} +.navbar-inverse .navbar-nav li a { + font-size:15px; + color: #fff; +} +.navbar-inverse .navbar-nav li a:hover { + background-color: #ef2e32; + color: #000; +} +.navbar-inverse .navbar-nav li a.current { + color: #ef2e32; +} +.navbar-inverse .navbar-nav li a.current:hover { + color: #000; +} +.jumbotron { + background-color:#333; + color:#fff; +} + +.row h2 { + color:#383838; +} +.btn-primary { + color: #fff; + background-color: #ef2e32; + border-color: #af2e30; +} +.btn-primary:hover { + color: #fff; + background-color: #ef2e32; + border-color: #af2e30; +} +.btn-default { + color: #fff; + background-color: #c5272b; + border-color: #e59092; +} +hr { + border-top:1px none #000; +} +footer { + text-align:center; + margin-top: 60px; +} +footer a { + color:#ef2e32; +} +footer p.copyright { + font-size:10px; + margin-top:5px; +} +.fixedheight { + + +} diff --git a/css/prism.css b/css/prism.css new file mode 100644 index 00000000..ee7d6b8d --- /dev/null +++ b/css/prism.css @@ -0,0 +1,213 @@ +/** + * prism.js default theme for JavaScript, CSS and HTML + * Based on dabblet (http://dabblet.com) + * @author Lea Verou + */ + +code[class*="language-"], +pre[class*="language-"] { + color: black; + text-shadow: 0 1px white; + font-family: Consolas, Monaco, 'Andale Mono', monospace; + direction: ltr; + text-align: left; + white-space: pre; + word-spacing: normal; + word-break: normal; + + + -moz-tab-size: 4; + -o-tab-size: 4; + tab-size: 4; + + -webkit-hyphens: none; + -moz-hyphens: none; + -ms-hyphens: none; + hyphens: none; +} + +pre[class*="language-"]::-moz-selection, pre[class*="language-"] ::-moz-selection, +code[class*="language-"]::-moz-selection, code[class*="language-"] ::-moz-selection { + text-shadow: none; + background: #b3d4fc; +} + +pre[class*="language-"]::selection, pre[class*="language-"] ::selection, +code[class*="language-"]::selection, code[class*="language-"] ::selection { + text-shadow: none; + background: #b3d4fc; +} + +@media print { + code[class*="language-"], + pre[class*="language-"] { + text-shadow: none; + } +} + +/* Code blocks */ +pre[class*="language-"] { + padding: 1em; + margin: .5em 0; + overflow: auto; +} + +:not(pre) > code[class*="language-"], +pre[class*="language-"] { + background: #f5f2f0; +} + +/* Inline code */ +:not(pre) > code[class*="language-"] { + padding: .1em; + border-radius: .3em; +} + +.token.comment, +.token.prolog, +.token.doctype, +.token.cdata { + color: slategray; +} + +.token.punctuation { + color: #999; +} + +.namespace { + opacity: .7; +} + +.token.property, +.token.tag, +.token.boolean, +.token.number, +.token.constant, +.token.symbol { + color: #905; +} + +.token.selector, +.token.attr-name, +.token.string, +.token.builtin { + color: #690; +} + +.token.operator, +.token.entity, +.token.url, +.language-css .token.string, +.style .token.string, +.token.variable { + color: #a67f59; + background: hsla(0,0%,100%,.5); +} + +.token.atrule, +.token.attr-value, +.token.keyword { + color: #07a; +} + + +.token.regex, +.token.important { + color: #e90; +} + +.token.important { + font-weight: bold; +} + +.token.entity { + cursor: help; +} + +pre[data-line] { + position: relative; + padding: 1em 0 1em 3em; +} + +.line-highlight { + position: absolute; + left: 0; + right: 0; + padding: inherit 0; + margin-top: 1em; /* Same as .prism’s padding-top */ + + background: hsla(24, 20%, 50%,.08); + background: -moz-linear-gradient(left, hsla(24, 20%, 50%,.1) 70%, hsla(24, 20%, 50%,0)); + background: -webkit-linear-gradient(left, hsla(24, 20%, 50%,.1) 70%, hsla(24, 20%, 50%,0)); + background: -o-linear-gradient(left, hsla(24, 20%, 50%,.1) 70%, hsla(24, 20%, 50%,0)); + background: linear-gradient(left, hsla(24, 20%, 50%,.1) 70%, hsla(24, 20%, 50%,0)); + + pointer-events: none; + + line-height: inherit; + white-space: pre; +} + + .line-highlight:before, + .line-highlight[data-end]:after { + content: attr(data-start); + position: absolute; + top: .4em; + left: .6em; + min-width: 1em; + padding: 0 .5em; + background-color: hsla(24, 20%, 50%,.4); + color: hsl(24, 20%, 95%); + font: bold 65%/1.5 sans-serif; + text-align: center; + vertical-align: .3em; + border-radius: 999px; + text-shadow: none; + box-shadow: 0 1px white; + } + + .line-highlight[data-end]:after { + content: attr(data-end); + top: auto; + bottom: .4em; + } +pre.line-numbers { + position: relative; + padding-left: 3.8em; + counter-reset: linenumber; +} + +pre.line-numbers > code { + position: relative; +} + +.line-numbers .line-numbers-rows { + position: absolute; + pointer-events: none; + top: 0; + font-size: 100%; + left: -3.8em; + width: 3em; /* works for line-numbers below 1000 lines */ + letter-spacing: -1px; + border-right: 1px solid #999; + + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + +} + + .line-numbers-rows > span { + pointer-events: none; + display: block; + counter-increment: linenumber; + } + + .line-numbers-rows > span:before { + content: counter(linenumber); + color: #999; + display: block; + padding-right: 0.8em; + text-align: right; + } diff --git a/css/syntax.css b/css/syntax.css new file mode 100644 index 00000000..2774b764 --- /dev/null +++ b/css/syntax.css @@ -0,0 +1,60 @@ +.highlight { background: #ffffff; } +.highlight .c { color: #999988; font-style: italic } /* Comment */ +.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ +.highlight .k { font-weight: bold } /* Keyword */ +.highlight .o { font-weight: bold } /* Operator */ +.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */ +.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */ +.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */ +.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */ +.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ +.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */ +.highlight .ge { font-style: italic } /* Generic.Emph */ +.highlight .gr { color: #aa0000 } /* Generic.Error */ +.highlight .gh { color: #999999 } /* Generic.Heading */ +.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ +.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */ +.highlight .go { color: #888888 } /* Generic.Output */ +.highlight .gp { color: #555555 } /* Generic.Prompt */ +.highlight .gs { font-weight: bold } /* Generic.Strong */ +.highlight .gu { color: #aaaaaa } /* Generic.Subheading */ +.highlight .gt { color: #aa0000 } /* Generic.Traceback */ +.highlight .kc { font-weight: bold } /* Keyword.Constant */ +.highlight .kd { font-weight: bold } /* Keyword.Declaration */ +.highlight .kp { font-weight: bold } /* Keyword.Pseudo */ +.highlight .kr { font-weight: bold } /* Keyword.Reserved */ +.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */ +.highlight .m { color: #009999 } /* Literal.Number */ +.highlight .s { color: #d14 } /* Literal.String */ +.highlight .na { color: #008080 } /* Name.Attribute */ +.highlight .nb { color: #0086B3 } /* Name.Builtin */ +.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */ +.highlight .no { color: #008080 } /* Name.Constant */ +.highlight .ni { color: #800080 } /* Name.Entity */ +.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */ +.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */ +.highlight .nn { color: #555555 } /* Name.Namespace */ +.highlight .nt { color: #000080 } /* Name.Tag */ +.highlight .nv { color: #008080 } /* Name.Variable */ +.highlight .ow { font-weight: bold } /* Operator.Word */ +.highlight .w { color: #bbbbbb } /* Text.Whitespace */ +.highlight .mf { color: #009999 } /* Literal.Number.Float */ +.highlight .mh { color: #009999 } /* Literal.Number.Hex */ +.highlight .mi { color: #009999 } /* Literal.Number.Integer */ +.highlight .mo { color: #009999 } /* Literal.Number.Oct */ +.highlight .sb { color: #d14 } /* Literal.String.Backtick */ +.highlight .sc { color: #d14 } /* Literal.String.Char */ +.highlight .sd { color: #d14 } /* Literal.String.Doc */ +.highlight .s2 { color: #d14 } /* Literal.String.Double */ +.highlight .se { color: #d14 } /* Literal.String.Escape */ +.highlight .sh { color: #d14 } /* Literal.String.Heredoc */ +.highlight .si { color: #d14 } /* Literal.String.Interpol */ +.highlight .sx { color: #d14 } /* Literal.String.Other */ +.highlight .sr { color: #009926 } /* Literal.String.Regex */ +.highlight .s1 { color: #d14 } /* Literal.String.Single */ +.highlight .ss { color: #990073 } /* Literal.String.Symbol */ +.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */ +.highlight .vc { color: #008080 } /* Name.Variable.Class */ +.highlight .vg { color: #008080 } /* Name.Variable.Global */ +.highlight .vi { color: #008080 } /* Name.Variable.Instance */ +.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */ diff --git a/css/topnav.css b/css/topnav.css new file mode 100644 index 00000000..c4d62217 --- /dev/null +++ b/css/topnav.css @@ -0,0 +1,5 @@ +body { + padding-top: 60px; + padding-bottom: 20px; + background-color:#efefef; +} diff --git a/documentation/allclasses-frame.html b/documentation/allclasses-frame.html new file mode 100644 index 00000000..9511408d --- /dev/null +++ b/documentation/allclasses-frame.html @@ -0,0 +1,284 @@ + + + + + + + +All Classes (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + +All Classes +
+ + + + + +
AbstractCartridgeQuery +
+AbstractOpenshiftConfiguration +
+AbstractOpenShiftConnectionFactory +
+AbstractOpenShiftResource +
+AbstractOpenShiftResource.Parameters +
+AbstractSSHKey +
+APIResource +
+ApplicationBuilder +
+ApplicationPortForwarding +
+ApplicationResource +
+ApplicationResource.SshStreams +
+ApplicationResourceDTO +
+ApplicationScale +
+Assert +
+Assert.AssertionFailedException +
+BadRequestException +
+Base64Coder +
+BaseCartridge +
+BaseResourceDTO +
+CartridgePropertyQuery +
+CartridgeResourceDTO +
+CartridgeResourceProperties +
+CartridgeResourceProperty +
+CartridgeType +
+CollectionUtils +
+DefaultConfiguration +
+DomainResource +
+DomainResourceDTO +
+EmbeddableCartridge +
+EmbeddedCartridgeResource +
+EncodingException +
+EnumDataType +
+EnvironmentVariableResource +
+EnvironmentVariableResourceDTO +
+Field +
+FormUrlEncodedMediaType +
+Gear +
+GearGroupResource +
+GearGroupResourceDTO +
+GearProfile +
+GearResourceDTO +
+GearState +
+HostUtils +
+HttpClientException +
+HttpMethod +
+IApplication +
+IApplicationPortForwarding +
+ICartridge +
+IDomain +
+IEmbeddableCartridge +
+IEmbeddedCartridge +
+IEnvironmentVariable +
+IField +
+IGear +
+IGearGroup +
+IGearProfile +
+IHttpClient +
+IMediaType +
+InternalServerErrorException +
+InvalidCredentialsOpenShiftException +
+InvalidNameOpenShiftException +
+IOpenShiftConfiguration +
+IOpenShiftConnection +
+IOpenShiftJsonConstants +
+IOpenShiftParameterConstants +
+IOpenShiftResource +
+IOpenShiftSSHKey +
+IRestResponseFactory +
+IRestService +
+ISeverity +
+ISSHPublicKey +
+IStandaloneCartridge +
+IUser +
+JsonMediaType +
+KeyResourceDTO +
+LatestEmbeddableCartridge +
+LatestStandaloneCartridge +
+LatestVersionOf +
+LatestVersionQuery +
+Link +
+LinkParameter +
+LinkParameterType +
+Message +
+Messages +
+NotFoundException +
+NotFoundOpenShiftException +
+OpenShiftApplicationNotAvailableException +
+OpenShiftConfiguration +
+OpenShiftConnectionFactory +
+OpenShiftEndpointException +
+OpenShiftException +
+OpenShiftJsonDTOFactory +
+OpenShiftRequestException +
+OpenShiftResourceUtils +
+OpenShiftSSHKeyException +
+OpenShiftSSHOperationException +
+OpenShiftTimeoutException +
+OpenShiftUnknonwSSHKeyTypeException +
+Parameter +
+ParameterValue +
+ParameterValueArray +
+ParameterValueMap +
+RestResponse +
+RestService +
+RestServiceProperties +
+RFC822DateUtils +
+Severity +
+SSHKeyPair +
+SSHKeyResource +
+SSHKeyType +
+SSHPublicKey +
+StandaloneCartridge +
+StreamUtils +
+StringParameter +
+StringPropertyQuery +
+StringUtils +
+StringValue +
+SystemConfiguration +
+SystemProperties +
+UnauthorizedException +
+UrlConnectionHttpClient +
+UrlConnectionHttpClientBuilder +
+UrlPropertyQuery +
+UrlUtils +
+UserConfiguration +
+UserResource +
+UserResourceDTO +
+
+ + + diff --git a/documentation/allclasses-noframe.html b/documentation/allclasses-noframe.html new file mode 100644 index 00000000..c553a5e6 --- /dev/null +++ b/documentation/allclasses-noframe.html @@ -0,0 +1,284 @@ + + + + + + + +All Classes (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + +All Classes +
+ + + + + +
AbstractCartridgeQuery +
+AbstractOpenshiftConfiguration +
+AbstractOpenShiftConnectionFactory +
+AbstractOpenShiftResource +
+AbstractOpenShiftResource.Parameters +
+AbstractSSHKey +
+APIResource +
+ApplicationBuilder +
+ApplicationPortForwarding +
+ApplicationResource +
+ApplicationResource.SshStreams +
+ApplicationResourceDTO +
+ApplicationScale +
+Assert +
+Assert.AssertionFailedException +
+BadRequestException +
+Base64Coder +
+BaseCartridge +
+BaseResourceDTO +
+CartridgePropertyQuery +
+CartridgeResourceDTO +
+CartridgeResourceProperties +
+CartridgeResourceProperty +
+CartridgeType +
+CollectionUtils +
+DefaultConfiguration +
+DomainResource +
+DomainResourceDTO +
+EmbeddableCartridge +
+EmbeddedCartridgeResource +
+EncodingException +
+EnumDataType +
+EnvironmentVariableResource +
+EnvironmentVariableResourceDTO +
+Field +
+FormUrlEncodedMediaType +
+Gear +
+GearGroupResource +
+GearGroupResourceDTO +
+GearProfile +
+GearResourceDTO +
+GearState +
+HostUtils +
+HttpClientException +
+HttpMethod +
+IApplication +
+IApplicationPortForwarding +
+ICartridge +
+IDomain +
+IEmbeddableCartridge +
+IEmbeddedCartridge +
+IEnvironmentVariable +
+IField +
+IGear +
+IGearGroup +
+IGearProfile +
+IHttpClient +
+IMediaType +
+InternalServerErrorException +
+InvalidCredentialsOpenShiftException +
+InvalidNameOpenShiftException +
+IOpenShiftConfiguration +
+IOpenShiftConnection +
+IOpenShiftJsonConstants +
+IOpenShiftParameterConstants +
+IOpenShiftResource +
+IOpenShiftSSHKey +
+IRestResponseFactory +
+IRestService +
+ISeverity +
+ISSHPublicKey +
+IStandaloneCartridge +
+IUser +
+JsonMediaType +
+KeyResourceDTO +
+LatestEmbeddableCartridge +
+LatestStandaloneCartridge +
+LatestVersionOf +
+LatestVersionQuery +
+Link +
+LinkParameter +
+LinkParameterType +
+Message +
+Messages +
+NotFoundException +
+NotFoundOpenShiftException +
+OpenShiftApplicationNotAvailableException +
+OpenShiftConfiguration +
+OpenShiftConnectionFactory +
+OpenShiftEndpointException +
+OpenShiftException +
+OpenShiftJsonDTOFactory +
+OpenShiftRequestException +
+OpenShiftResourceUtils +
+OpenShiftSSHKeyException +
+OpenShiftSSHOperationException +
+OpenShiftTimeoutException +
+OpenShiftUnknonwSSHKeyTypeException +
+Parameter +
+ParameterValue +
+ParameterValueArray +
+ParameterValueMap +
+RestResponse +
+RestService +
+RestServiceProperties +
+RFC822DateUtils +
+Severity +
+SSHKeyPair +
+SSHKeyResource +
+SSHKeyType +
+SSHPublicKey +
+StandaloneCartridge +
+StreamUtils +
+StringParameter +
+StringPropertyQuery +
+StringUtils +
+StringValue +
+SystemConfiguration +
+SystemProperties +
+UnauthorizedException +
+UrlConnectionHttpClient +
+UrlConnectionHttpClientBuilder +
+UrlPropertyQuery +
+UrlUtils +
+UserConfiguration +
+UserResource +
+UserResourceDTO +
+
+ + + diff --git a/documentation/com/openshift/client/ApplicationBuilder.CartridgeHolder.html b/documentation/com/openshift/client/ApplicationBuilder.CartridgeHolder.html new file mode 100644 index 00000000..fb44392c --- /dev/null +++ b/documentation/com/openshift/client/ApplicationBuilder.CartridgeHolder.html @@ -0,0 +1,256 @@ + + + + + + + +ApplicationBuilder.CartridgeHolder (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Class ApplicationBuilder.CartridgeHolder

+
+java.lang.Object
+  extended by com.openshift.client.ApplicationBuilder.CartridgeHolder
+
+
+
Enclosing class:
ApplicationBuilder
+
+
+
+
public class ApplicationBuilder.CartridgeHolder
extends Object
+ + +

+


+ +

+ + + + + + + + + + + +
+Constructor Summary
ApplicationBuilder.CartridgeHolder() + +
+           
+  + + + + + + + + + + + +
+Method Summary
+ ApplicationBuilder.NamedCartridgeHoldersetName(String name) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+ApplicationBuilder.CartridgeHolder

+
+public ApplicationBuilder.CartridgeHolder()
+
+
+ + + + + + + + +
+Method Detail
+ +

+setName

+
+public ApplicationBuilder.NamedCartridgeHolder setName(String name)
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/ApplicationBuilder.NamedCartridgeHolder.html b/documentation/com/openshift/client/ApplicationBuilder.NamedCartridgeHolder.html new file mode 100644 index 00000000..ecf59ce9 --- /dev/null +++ b/documentation/com/openshift/client/ApplicationBuilder.NamedCartridgeHolder.html @@ -0,0 +1,313 @@ + + + + + + + +ApplicationBuilder.NamedCartridgeHolder (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Class ApplicationBuilder.NamedCartridgeHolder

+
+java.lang.Object
+  extended by com.openshift.client.ApplicationBuilder.NamedCartridgeHolder
+
+
+
Enclosing class:
ApplicationBuilder
+
+
+
+
public class ApplicationBuilder.NamedCartridgeHolder
extends Object
+ + +

+


+ +

+ + + + + + + + + + + +
+Constructor Summary
ApplicationBuilder.NamedCartridgeHolder() + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ IApplicationbuild() + +
+           
+ ApplicationBuilder.NamedCartridgeHoldersetApplicationScale(ApplicationScale applicationScale) + +
+           
+ ApplicationBuilder.NamedCartridgeHoldersetGearProfile(IGearProfile gearProfile) + +
+           
+ ApplicationBuilder.NamedCartridgeHoldersetInitialGitUrl(String initialGitUrl) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+ApplicationBuilder.NamedCartridgeHolder

+
+public ApplicationBuilder.NamedCartridgeHolder()
+
+
+ + + + + + + + +
+Method Detail
+ +

+setGearProfile

+
+public ApplicationBuilder.NamedCartridgeHolder setGearProfile(IGearProfile gearProfile)
+
+
+
+
+
+
+ +

+setApplicationScale

+
+public ApplicationBuilder.NamedCartridgeHolder setApplicationScale(ApplicationScale applicationScale)
+
+
+
+
+
+
+ +

+setInitialGitUrl

+
+public ApplicationBuilder.NamedCartridgeHolder setInitialGitUrl(String initialGitUrl)
+
+
+
+
+
+
+ +

+build

+
+public IApplication build()
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/ApplicationBuilder.html b/documentation/com/openshift/client/ApplicationBuilder.html new file mode 100644 index 00000000..6eba0617 --- /dev/null +++ b/documentation/com/openshift/client/ApplicationBuilder.html @@ -0,0 +1,278 @@ + + + + + + + +ApplicationBuilder (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Class ApplicationBuilder

+
+java.lang.Object
+  extended by com.openshift.client.ApplicationBuilder
+
+
+
+
public class ApplicationBuilder
extends Object
+ + +

+


+ +

+ + + + + + + + + + + + + + + +
+Nested Class Summary
+ classApplicationBuilder.CartridgeHolder + +
+           
+ classApplicationBuilder.NamedCartridgeHolder + +
+           
+  + + + + + + + + + + +
+Constructor Summary
ApplicationBuilder(IDomain domain) + +
+           
+  + + + + + + + + + + + +
+Method Summary
+ ApplicationBuilder.CartridgeHoldersetCartridge(IStandaloneCartridge cartridge) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+ApplicationBuilder

+
+public ApplicationBuilder(IDomain domain)
+
+
+ + + + + + + + +
+Method Detail
+ +

+setCartridge

+
+public ApplicationBuilder.CartridgeHolder setCartridge(IStandaloneCartridge cartridge)
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/ApplicationScale.html b/documentation/com/openshift/client/ApplicationScale.html new file mode 100644 index 00000000..116456b6 --- /dev/null +++ b/documentation/com/openshift/client/ApplicationScale.html @@ -0,0 +1,369 @@ + + + + + + + +ApplicationScale (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Enum ApplicationScale

+
+java.lang.Object
+  extended by java.lang.Enum<ApplicationScale>
+      extended by com.openshift.client.ApplicationScale
+
+
+
All Implemented Interfaces:
Serializable, Comparable<ApplicationScale>
+
+
+
+
public enum ApplicationScale
extends Enum<ApplicationScale>
+ + +

+Enum to indicate the support for scalability when creating a new application +

+ +

+

+
Author:
+
Xavier Coulon
+
+
+ +

+ + + + + + + + + + + + + +
+Enum Constant Summary
NO_SCALE + +
+           
SCALE + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ StringgetValue() + +
+           
+static ApplicationScalesafeValueOf(String value) + +
+           
+static ApplicationScalevalueOf(String name) + +
+          Returns the enum constant of this type with the specified name.
+static ApplicationScale[]values() + +
+          Returns an array containing the constants of this enum type, in +the order they are declared.
+ + + + + + + +
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
+ + + + + + + +
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Enum Constant Detail
+ +

+SCALE

+
+public static final ApplicationScale SCALE
+
+
+
+
+
+ +

+NO_SCALE

+
+public static final ApplicationScale NO_SCALE
+
+
+
+
+ + + + + + + + +
+Method Detail
+ +

+values

+
+public static ApplicationScale[] values()
+
+
Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
+for (ApplicationScale c : ApplicationScale.values())
+    System.out.println(c);
+
+

+

+ +
Returns:
an array containing the constants of this enum type, in +the order they are declared
+
+
+
+ +

+valueOf

+
+public static ApplicationScale valueOf(String name)
+
+
Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.) +

+

+
Parameters:
name - the name of the enum constant to be returned. +
Returns:
the enum constant with the specified name +
Throws: +
IllegalArgumentException - if this enum type has no constant +with the specified name +
NullPointerException - if the argument is null
+
+
+
+ +

+safeValueOf

+
+public static ApplicationScale safeValueOf(String value)
+
+
+
+
+
+
+ +

+getValue

+
+public String getValue()
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/GearState.html b/documentation/com/openshift/client/GearState.html new file mode 100644 index 00000000..18384151 --- /dev/null +++ b/documentation/com/openshift/client/GearState.html @@ -0,0 +1,424 @@ + + + + + + + +GearState (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Enum GearState

+
+java.lang.Object
+  extended by java.lang.Enum<GearState>
+      extended by com.openshift.client.GearState
+
+
+
All Implemented Interfaces:
Serializable, Comparable<GearState>
+
+
+
+
public enum GearState
extends Enum<GearState>
+ + +

+


+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Enum Constant Summary
BUILDING + +
+           
DEPLOYING + +
+           
IDLE + +
+           
NEW + +
+           
STARTED + +
+           
STOPPED + +
+           
UNKNOWN + +
+           
+  + + + + + + + + + + + + + + + + + + + +
+Method Summary
+static GearStatesafeValueOf(String gearStateString) + +
+           
+static GearStatevalueOf(String name) + +
+          Returns the enum constant of this type with the specified name.
+static GearState[]values() + +
+          Returns an array containing the constants of this enum type, in +the order they are declared.
+ + + + + + + +
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
+ + + + + + + +
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Enum Constant Detail
+ +

+BUILDING

+
+public static final GearState BUILDING
+
+
+
See Also:
OpenShift + Origin Cartridge Developer’s Guide, 7.10.2. The status Action
+
+
+ +

+DEPLOYING

+
+public static final GearState DEPLOYING
+
+
+
+
+
+ +

+IDLE

+
+public static final GearState IDLE
+
+
+
+
+
+ +

+NEW

+
+public static final GearState NEW
+
+
+
+
+
+ +

+STARTED

+
+public static final GearState STARTED
+
+
+
+
+
+ +

+STOPPED

+
+public static final GearState STOPPED
+
+
+
+
+
+ +

+UNKNOWN

+
+public static final GearState UNKNOWN
+
+
+
+
+ + + + + + + + +
+Method Detail
+ +

+values

+
+public static GearState[] values()
+
+
Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
+for (GearState c : GearState.values())
+    System.out.println(c);
+
+

+

+ +
Returns:
an array containing the constants of this enum type, in +the order they are declared
+
+
+
+ +

+valueOf

+
+public static GearState valueOf(String name)
+
+
Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.) +

+

+
Parameters:
name - the name of the enum constant to be returned. +
Returns:
the enum constant with the specified name +
Throws: +
IllegalArgumentException - if this enum type has no constant +with the specified name +
NullPointerException - if the argument is null
+
+
+
+ +

+safeValueOf

+
+public static GearState safeValueOf(String gearStateString)
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/HttpMethod.html b/documentation/com/openshift/client/HttpMethod.html new file mode 100644 index 00000000..7932c561 --- /dev/null +++ b/documentation/com/openshift/client/HttpMethod.html @@ -0,0 +1,407 @@ + + + + + + + +HttpMethod (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Enum HttpMethod

+
+java.lang.Object
+  extended by java.lang.Enum<HttpMethod>
+      extended by com.openshift.client.HttpMethod
+
+
+
All Implemented Interfaces:
Serializable, Comparable<HttpMethod>
+
+
+
+
public enum HttpMethod
extends Enum<HttpMethod>
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Enum Constant Summary
DELETE + +
+           
GET + +
+           
HEAD + +
+           
OPTIONS + +
+           
PATCH + +
+           
POST + +
+           
PUT + +
+           
+  + + + + + + + + + + + + + + + +
+Method Summary
+static HttpMethodvalueOf(String name) + +
+          Returns the enum constant of this type with the specified name.
+static HttpMethod[]values() + +
+          Returns an array containing the constants of this enum type, in +the order they are declared.
+ + + + + + + +
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
+ + + + + + + +
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Enum Constant Detail
+ +

+GET

+
+public static final HttpMethod GET
+
+
+
+
+
+ +

+POST

+
+public static final HttpMethod POST
+
+
+
+
+
+ +

+PUT

+
+public static final HttpMethod PUT
+
+
+
+
+
+ +

+DELETE

+
+public static final HttpMethod DELETE
+
+
+
+
+
+ +

+PATCH

+
+public static final HttpMethod PATCH
+
+
+
+
+
+ +

+HEAD

+
+public static final HttpMethod HEAD
+
+
+
+
+
+ +

+OPTIONS

+
+public static final HttpMethod OPTIONS
+
+
+
+
+ + + + + + + + +
+Method Detail
+ +

+values

+
+public static HttpMethod[] values()
+
+
Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
+for (HttpMethod c : HttpMethod.values())
+    System.out.println(c);
+
+

+

+ +
Returns:
an array containing the constants of this enum type, in +the order they are declared
+
+
+
+ +

+valueOf

+
+public static HttpMethod valueOf(String name)
+
+
Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.) +

+

+
Parameters:
name - the name of the enum constant to be returned. +
Returns:
the enum constant with the specified name +
Throws: +
IllegalArgumentException - if this enum type has no constant +with the specified name +
NullPointerException - if the argument is null
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/IApplication.html b/documentation/com/openshift/client/IApplication.html new file mode 100644 index 00000000..b0a020a6 --- /dev/null +++ b/documentation/com/openshift/client/IApplication.html @@ -0,0 +1,1673 @@ + + + + + + + +IApplication (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Interface IApplication

+
+
All Superinterfaces:
IOpenShiftResource
+
+
+
All Known Implementing Classes:
ApplicationResource
+
+
+
+
public interface IApplication
extends IOpenShiftResource
+ + +

+

+
Author:
+
André Dietisheim, Syed Iqbal, Martes G Wigglesworth
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ voidaddAlias(String string) + +
+          Add application alias
+ IEmbeddedCartridgeaddEmbeddableCartridge(IEmbeddableCartridge cartridge) + +
+          Adds the given embeddable cartridge to this application.
+ List<IEmbeddedCartridge>addEmbeddableCartridges(Collection<IEmbeddableCartridge> cartridge) + +
+          Adds all given embedded cartridges from this app, given their names.
+ IEnvironmentVariableaddEnvironmentVariable(String name, + String value) + +
+          Adds an environment variable to this application.
+ Map<String,IEnvironmentVariable>addEnvironmentVariables(Map<String,String> environmentVariables) + +
+          Adds a map of environment variables to the application
+ booleancanGetEnvironmentVariables() + +
+          Used to determine if environment variables exist and are available to be retrieved
+ booleancanUpdateEnvironmentVariables() + +
+          Used to determine if the current instance is able to update environment variables.
+ voiddestroy() + +
+          Destroys this application (and removes it from the list of available + applications)
+ List<String>getAliases() + +
+          Retrieve all application aliases
+ ApplicationScalegetApplicationScale() + +
+          Returns true if scaling is enabled on this application (only set at + creation time).
+ StringgetApplicationUrl() + +
+          Returns the url at which this application may be reached at.
+ IStandaloneCartridgegetCartridge() + +
+          Returns the cartridge (application type) that this app is running on.
+ DategetCreationTime() + +
+          Returns the timestamp at which this app was created.
+ IDomaingetDomain() + +
+          Get the domain of the application.
+ IEmbeddedCartridgegetEmbeddedCartridge(IEmbeddableCartridge cartridge) + +
+          Returns the embedded cartridge in this application.
+ IEmbeddedCartridgegetEmbeddedCartridge(String cartridgeName) + +
+          Returns the embedded cartridge given its name.
+ List<IEmbeddedCartridge>getEmbeddedCartridges() + +
+          Returns all embedded cartridges.
+ List<String>getEnvironmentProperties() + +
+          Retrieves the list of environment properties.
+ IEnvironmentVariablegetEnvironmentVariable(String name) + +
+          Return the environment variable for the specified name
+ Map<String,IEnvironmentVariable>getEnvironmentVariables() + +
+          Retrieves the map of environment variables
+ List<IApplicationPortForwarding>getForwardablePorts() + +
+          Returns the list of forwardable ports on OpenShift for this application.
+ Collection<IGearGroup>getGearGroups() + +
+          Returns the gear groups for this application.
+ IGearProfilegetGearProfile() + +
+          Returns true if scaling is enabled on this application (only set at + creation time).
+ StringgetGitUrl() + +
+          Returns the uri at which the git repository of this application may be + reached at.
+ StringgetInitialGitUrl() + +
+          Returns the git url that the application will get its initial code and configuration from.
+ StringgetName() + +
+          Returns the name of this application.
+ com.jcraft.jsch.SessiongetSSHSession() + +
+          Returns the SSH session that this application uses to connect to + OpenShift.
+ StringgetSshUrl() + +
+          Returns the url to use to connect with ssh.
+ StringgetUUID() + +
+          Returns the uuid of this application.
+ booleanhasAlias(String name) + +
+           
+ booleanhasEmbeddedCartridge(IEmbeddableCartridge cartridge) + +
+          Returns true if this application has an embedded cartridge.
+ booleanhasEmbeddedCartridge(String cartridgeName) + +
+          Returns true if this application has an embedded cartridge.
+ booleanhasEnvironmentVariable(String name) + +
+          Checks if the environment variable is present in the application.
+ booleanhasSSHSession() + +
+          Returns true if the application was already provided with an SSH session, + and this session is still valid (connected).
+ booleanisPortFowardingStarted() + +
+          Returns true if the port-forwarding has been started, false otherwise.
+ voidrefresh() + +
+          Refresh the application but reloading its content from OpenShift.
+ List<IApplicationPortForwarding>refreshForwardablePorts() + +
+          Refreshes the list of port-forwarding.
+ voidremoveAlias(String alias) + +
+          Remove application alias
+ voidremoveEmbeddedCartridge(IEmbeddableCartridge cartridge) + +
+          Removes the given embedded cartridge that is equal to the given + embeddable cartridge.
+ voidremoveEmbeddedCartridges(Collection<IEmbeddableCartridge> cartridges) + +
+          Removes the given embedded cartridges in this application that are equal to the + given IEmbeddableCartridge.
+ voidremoveEnvironmentVariable(IEnvironmentVariable environmentVariable) + +
+          Removes the environment variables with the given name from this application.
+ voidremoveEnvironmentVariable(String name) + +
+          Removes the environment variables with the given name from this application.
+ voidrestart() + +
+          Restarts this application.
+ voidscaleDown() + +
+          Scale down application
+ voidscaleUp() + +
+          Scale up application
+ voidsetSSHSession(com.jcraft.jsch.Session session) + +
+          Sets the SSH session that this application will use to connect to + OpenShift to perform some operations.
+ voidstart() + +
+          Starts this application.
+ List<IApplicationPortForwarding>startPortForwarding() + +
+           
+ voidstop() + +
+          Stops this application.
+ voidstop(boolean force) + +
+          Stops this application
+ List<IApplicationPortForwarding>stopPortForwarding() + +
+          Stop the port-forwarding for all ports.
+ booleanwaitForAccessible(long timeout) + +
+          Waits for this application to become accessible on its public url.
+ Future<Boolean>waitForAccessibleAsync(long timeout) + +
+          Returns a Future that the caller can use to wait for the application to + become accessible on its public url.
+ + + + + + + +
Methods inherited from interface com.openshift.client.IOpenShiftResource
getCreationLog, getMessages, hasCreationLog
+  +

+ + + + + + + + +
+Method Detail
+ +

+getName

+
+String getName()
+
+
Returns the name of this application. +

+

+
+
+
+ +
Returns:
+
+
+
+ +

+getUUID

+
+String getUUID()
+
+
Returns the uuid of this application. +

+

+
+
+
+ +
Returns:
the uuid of this application.
+
+
+
+ +

+getGitUrl

+
+String getGitUrl()
+
+
Returns the uri at which the git repository of this application may be + reached at. +

+

+
+
+
+ +
Returns:
the uri of the git repo of this application.
+
+
+
+ +

+getSshUrl

+
+String getSshUrl()
+
+
Returns the url to use to connect with ssh. +

+

+
+
+
+ +
Returns:
the url to use to connect with ssh.
+
+
+
+ +

+getInitialGitUrl

+
+String getInitialGitUrl()
+
+
Returns the git url that the application will get its initial code and configuration from. +

+

+
+
+
+ +
Returns:
the initial git url
+
+
+
+ +

+getApplicationUrl

+
+String getApplicationUrl()
+
+
Returns the url at which this application may be reached at. +

+

+
+
+
+ +
Returns:
the url of this application.
+
+
+
+ +

+getApplicationScale

+
+ApplicationScale getApplicationScale()
+
+
Returns true if scaling is enabled on this application (only set at + creation time). +

+

+
+
+
+ +
Returns:
true if scaling is enabled on this application (only set at + creation time).
+
+
+
+ +

+getGearProfile

+
+IGearProfile getGearProfile()
+
+
Returns true if scaling is enabled on this application (only set at + creation time). +

+

+
+
+
+ +
Returns:
true if scaling is enabled on this application (only set at + creation time).
+
+
+
+ +

+getCartridge

+
+IStandaloneCartridge getCartridge()
+
+
Returns the cartridge (application type) that this app is running on. +

+

+
+
+
+ +
Returns:
the cartridge of this application
+
+
+
+ +

+addEmbeddableCartridge

+
+IEmbeddedCartridge addEmbeddableCartridge(IEmbeddableCartridge cartridge)
+                                          throws OpenShiftException
+
+
Adds the given embeddable cartridge to this application. +

+

+
+
+
+
Parameters:
cartridge - +
Throws: +
OpenShiftException
+
+
+
+ +

+addEmbeddableCartridges

+
+List<IEmbeddedCartridge> addEmbeddableCartridges(Collection<IEmbeddableCartridge> cartridge)
+                                                 throws OpenShiftException
+
+
Adds all given embedded cartridges from this app, given their names. +

+

+
+
+
+
Parameters:
embeddedCartridges - +
Throws: +
OpenShiftException
See Also:
#addEmbeddableCartridge(IEmbeddedCartridge), +#removeEmbeddedCartridge(IEmbeddedCartridge)
+
+
+
+ +

+getEmbeddedCartridges

+
+List<IEmbeddedCartridge> getEmbeddedCartridges()
+                                               throws OpenShiftException
+
+
Returns all embedded cartridges. +

+

+
+
+
+ +
Returns:
all embedded cartridges. +
Throws: +
OpenShiftException
See Also:
IEmbeddedCartridge, +#addEmbeddableCartridge(IEmbeddedCartridge), +#removeEmbeddedCartridge(IEmbeddedCartridge)
+
+
+
+ +

+hasEmbeddedCartridge

+
+boolean hasEmbeddedCartridge(IEmbeddableCartridge cartridge)
+                             throws OpenShiftException
+
+
Returns true if this application has an embedded cartridge. + Returns false otherwise. +

+

+
+
+
+
Parameters:
the - name of the cartridge to look for +
Returns:
true if there's an embedded cartridge with the given name +
Throws: +
OpenShiftException
See Also:
IEmbeddedCartridge, +#addEmbeddableCartridge(IEmbeddedCartridge), +#removeEmbeddedCartridge(IEmbeddedCartridge)
+
+
+
+ +

+hasEmbeddedCartridge

+
+boolean hasEmbeddedCartridge(String cartridgeName)
+                             throws OpenShiftException
+
+
Returns true if this application has an embedded cartridge. + Returns false otherwise. +

+

+
+
+
+
Parameters:
the - name of the cartridge to look for +
Returns:
true if there's an embedded cartridge with the given name +
Throws: +
OpenShiftException
See Also:
IEmbeddedCartridge, +#addEmbeddableCartridge(IEmbeddedCartridge), +#removeEmbeddedCartridge(IEmbeddedCartridge)
+
+
+
+ +

+getEmbeddedCartridge

+
+IEmbeddedCartridge getEmbeddedCartridge(String cartridgeName)
+                                        throws OpenShiftException
+
+
Returns the embedded cartridge given its name. Returns null + if none was found. +

+

+
+
+
+
Parameters:
cartridgeName - +
Returns:
the embedded cartridge with the given name +
Throws: +
OpenShiftException
+
+
+
+ +

+getEmbeddedCartridge

+
+IEmbeddedCartridge getEmbeddedCartridge(IEmbeddableCartridge cartridge)
+                                        throws OpenShiftException
+
+
Returns the embedded cartridge in this application. Returns null if none was + found. +

+

+
+
+
+
Parameters:
cartridge - +
Returns:
the embedded cartridge +
Throws: +
OpenShiftException
+
+
+
+ +

+removeEmbeddedCartridge

+
+void removeEmbeddedCartridge(IEmbeddableCartridge cartridge)
+                             throws OpenShiftException
+
+
Removes the given embedded cartridge that is equal to the given + embeddable cartridge. Does nothing if the cartridge is not present in + this application. +

+

+
+
+
+
Parameters:
cartridge - the cartridge that shall be removed +
Throws: +
OpenShiftException
+
+
+
+ +

+removeEmbeddedCartridges

+
+void removeEmbeddedCartridges(Collection<IEmbeddableCartridge> cartridges)
+                              throws OpenShiftException
+
+
Removes the given embedded cartridges in this application that are equal to the + given IEmbeddableCartridge. Does nothing if the cartridge is not present + in this application. +

+

+
+
+
+
Parameters:
cartridges - the cartridges that shall get removed +
Throws: +
OpenShiftException
+
+
+
+ +

+getGearGroups

+
+Collection<IGearGroup> getGearGroups()
+                                     throws OpenShiftException
+
+
Returns the gear groups for this application. + The collection is never cached, so each call will trigger a request to the OpenShift Broker. +

+

+
+
+
+ +
Returns:
the collection of IGearGroup for this application. +
Throws: +
OpenShiftException
+
+
+
+ +

+getCreationTime

+
+Date getCreationTime()
+
+
Returns the timestamp at which this app was created. +

+

+
+
+
+ +
Returns:
the creation time +
Throws: +
OpenShiftException
+
+
+
+ +

+destroy

+
+void destroy()
+             throws OpenShiftException
+
+
Destroys this application (and removes it from the list of available + applications) +

+

+
+
+
+ +
Throws: +
OpenShiftException
See Also:
IUser#getApplications()
+
+
+
+ +

+start

+
+void start()
+           throws OpenShiftException
+
+
Starts this application. Has no effect if this app is already running. +

+

+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+restart

+
+void restart()
+             throws OpenShiftException
+
+
Restarts this application. +

+

+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+stop

+
+void stop()
+          throws OpenShiftException
+
+
Stops this application. +

+

+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+stop

+
+void stop(boolean force)
+          throws OpenShiftException
+
+
Stops this application +

+

+
+
+
+
Parameters:
force - : true to force stop, false otherwise +
Throws: +
OpenShiftException
+
+
+
+ +

+waitForAccessible

+
+boolean waitForAccessible(long timeout)
+                          throws OpenShiftException
+
+
Waits for this application to become accessible on its public url. +

+

+
+
+
+
Parameters:
timeout - +
Returns:
+
Throws: +
OpenShiftException
See Also:
getApplicationUrl()
+
+
+
+ +

+waitForAccessibleAsync

+
+Future<Boolean> waitForAccessibleAsync(long timeout)
+                                       throws OpenShiftException
+
+
Returns a Future that the caller can use to wait for the application to + become accessible on its public url. +

+

+
+
+
+
Parameters:
timeout - +
Returns:
+
Throws: +
OpenShiftException
See Also:
getApplicationUrl(), +waitForAccessible(long), +IOpenShiftConnection.getExecutorService(), +Future
+
+
+
+ +

+getDomain

+
+IDomain getDomain()
+
+
Get the domain of the application. +

+

+
+
+
+ +
Returns:
the domain
+
+
+
+ +

+scaleDown

+
+void scaleDown()
+               throws OpenShiftException
+
+
Scale down application +

+

+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+scaleUp

+
+void scaleUp()
+             throws OpenShiftException
+
+
Scale up application +

+

+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+addAlias

+
+void addAlias(String string)
+              throws OpenShiftException
+
+
Add application alias +

+

+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getAliases

+
+List<String> getAliases()
+
+
Retrieve all application aliases +

+

+
+
+
+ +
Returns:
application aliases in an unmodifiable collection
+
+
+
+ +

+hasAlias

+
+boolean hasAlias(String name)
+
+
+
+
+
+
+
+
+
+ +

+removeAlias

+
+void removeAlias(String alias)
+                 throws OpenShiftException
+
+
Remove application alias +

+

+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+refresh

+
+void refresh()
+             throws OpenShiftException
+
+
Refresh the application but reloading its content from OpenShift. At the + same time, this operation automatically set the embedded cartridges back + to an 'unloaded' state. +

+

+
Specified by:
refresh in interface IOpenShiftResource
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+setSSHSession

+
+void setSSHSession(com.jcraft.jsch.Session session)
+
+
Sets the SSH session that this application will use to connect to + OpenShift to perform some operations. This SSH session must be + initialized out of the library, since the user's SSH settings may depend + on the runtime environment (Eclipse, etc.). +

+

+
+
+
+
Parameters:
session - the SSH session
+
+
+
+ +

+getSSHSession

+
+com.jcraft.jsch.Session getSSHSession()
+
+
Returns the SSH session that this application uses to connect to + OpenShift. +

+

+
+
+
+ +
Returns:
the SSH session that this application uses to connect to + OpenShift.
+
+
+
+ +

+hasSSHSession

+
+boolean hasSSHSession()
+
+
Returns true if the application was already provided with an SSH session, + and this session is still valid (connected). +

+

+
+
+
+ +
Returns:
true if the application was already provided with an SSH session, + and this session is still valid (connected).
+
+
+
+ +

+isPortFowardingStarted

+
+boolean isPortFowardingStarted()
+                               throws OpenShiftSSHOperationException
+
+
Returns true if the port-forwarding has been started, false otherwise. +

+

+
+
+
+ +
Returns:
true if the port-forwarding has been started, false otherwise. +
Throws: +
OpenShiftSSHOperationException
+
+
+
+ +

+getForwardablePorts

+
+List<IApplicationPortForwarding> getForwardablePorts()
+                                                     throws OpenShiftSSHOperationException
+
+
Returns the list of forwardable ports on OpenShift for this application. +

+

+
+
+
+ +
Returns:
the list of forwardable ports on OpenShift for this application. +
Throws: +
OpenShiftSSHOperationException
+
+
+
+ +

+startPortForwarding

+
+List<IApplicationPortForwarding> startPortForwarding()
+                                                     throws OpenShiftSSHOperationException
+
+
+
+
+
+ +
Returns:
the list of forwardable ports on OpenShift for this application. +
Throws: +
com.jcraft.jsch.JSchException +
OpenShiftSSHOperationException
+
+
+
+ +

+stopPortForwarding

+
+List<IApplicationPortForwarding> stopPortForwarding()
+                                                    throws OpenShiftSSHOperationException
+
+
Stop the port-forwarding for all ports. +

+

+
+
+
+ +
Returns:
the list of forwardable ports on OpenShift for this application. +
Throws: +
OpenShiftSSHOperationException
+
+
+
+ +

+refreshForwardablePorts

+
+List<IApplicationPortForwarding> refreshForwardablePorts()
+                                                         throws OpenShiftSSHOperationException
+
+
Refreshes the list of port-forwarding. Started ones are kept as-is. +

+

+
+
+
+ +
Returns:
the list of forwardable ports on OpenShift for this application. +
Throws: +
OpenShiftSSHOperationException
+
+
+
+ +

+getEnvironmentProperties

+
+List<String> getEnvironmentProperties()
+                                      throws OpenShiftSSHOperationException
+
+
Retrieves the list of environment properties. +

+

+
+
+
+ +
Returns:
the list of environment properties. +
Throws: +
OpenShiftSSHOperationException
+
+
+
+ +

+getEnvironmentVariables

+
+Map<String,IEnvironmentVariable> getEnvironmentVariables()
+                                                         throws OpenShiftSSHOperationException
+
+
Retrieves the map of environment variables +

+

+
+
+
+ +
Returns:
the Map of environment variables +
Throws: +
OpenShiftSSHOperationException
+
+
+
+ +

+hasEnvironmentVariable

+
+boolean hasEnvironmentVariable(String name)
+                               throws OpenShiftException
+
+
Checks if the environment variable is present in the application. +

+

+
+
+
+
Parameters:
name - Name of the environment variable +
Returns:
true if the current instance has IEnvironmentVariables to return
+ false if the current instance has no IEnvironmentVariables to return +
Throws: +
OpenShiftSSHOperationException +
OpenShiftException
+
+
+
+ +

+addEnvironmentVariable

+
+IEnvironmentVariable addEnvironmentVariable(String name,
+                                            String value)
+                                            throws OpenShiftException
+
+
Adds an environment variable to this application. +

+

+
+
+
+
Parameters:
name - key associated with the variable to add
value - value of the new variable +
Throws: +
OpenShiftSSHOperationException - - if the variable already exists +
OpenShiftException
+
+
+
+ +

+addEnvironmentVariables

+
+Map<String,IEnvironmentVariable> addEnvironmentVariables(Map<String,String> environmentVariables)
+                                                         throws OpenShiftException
+
+
Adds a map of environment variables to the application +

+

+
+
+
+
Parameters:
environmentVariables - Map of environment variables +
Throws: +
OpenShiftSSHOperationException +
OpenShiftException
+
+
+
+ +

+getEnvironmentVariable

+
+IEnvironmentVariable getEnvironmentVariable(String name)
+                                            throws OpenShiftException
+
+
Return the environment variable for the specified name +

+

+
+
+
+
Parameters:
name - key to be used to locate the environment variable +
Returns:
IEnvironmentVariable associated with the provided key +
Throws: +
OpenShiftSSHOperationException - - thrown if the key does not exist +
OpenShiftException
+
+
+
+ +

+removeEnvironmentVariable

+
+void removeEnvironmentVariable(String name)
+                               throws OpenShiftException
+
+
Removes the environment variables with the given name from this application. +

+

+
+
+
+
Parameters:
name - key associated with the IEnvironmentVariable to be removed +
Throws: +
OpenShiftException - - thrown if there is no IEnvironmentVariable associated with the explicit parameter.
+
+
+
+ +

+removeEnvironmentVariable

+
+void removeEnvironmentVariable(IEnvironmentVariable environmentVariable)
+
+
Removes the environment variables with the given name from this application. +

+

+
+
+
+
Parameters:
environmentVariable - IEnvironmentVariable instance which should be removed +
Throws: +
OpenShiftException - - thrown if there is no instance of IEnvironmentVariable available to be removed
+
+
+
+ +

+canGetEnvironmentVariables

+
+boolean canGetEnvironmentVariables()
+
+
Used to determine if environment variables exist and are available to be retrieved +

+

+
+
+
+ +
Returns:
Returns true if this application can list its environment variables.
+ Returns false if it cannot. Internally this translates to the presence of the link to list environment variables.
See Also:
#getEnvironmentVariablesMap(), +getEnvironmentVariable(String), +ApplicationResource.LINK_LIST_ENVIRONMENT_VARIABLES
+
+
+
+ +

+canUpdateEnvironmentVariables

+
+boolean canUpdateEnvironmentVariables()
+
+
Used to determine if the current instance is able to update environment variables. +

+

+
+
+
+ +
Returns:
Returns true if this application can augment its environment variables.
+ Returns false if it cannot.
See Also:
addEnvironmentVariable(String, String), +addEnvironmentVariables(Map), +ApplicationResource.LINK_SET_UNSET_ENVIRONMENT_VARIABLES
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/IApplicationPortForwarding.html b/documentation/com/openshift/client/IApplicationPortForwarding.html new file mode 100644 index 00000000..d03079a3 --- /dev/null +++ b/documentation/com/openshift/client/IApplicationPortForwarding.html @@ -0,0 +1,400 @@ + + + + + + + +IApplicationPortForwarding (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Interface IApplicationPortForwarding

+
+
All Known Implementing Classes:
ApplicationPortForwarding
+
+
+
+
public interface IApplicationPortForwarding
+ + +

+


+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ StringgetLocalAddress() + +
+           
+ intgetLocalPort() + +
+           
+ StringgetName() + +
+           
+ StringgetRemoteAddress() + +
+           
+ intgetRemotePort() + +
+           
+ booleanisStarted(com.jcraft.jsch.Session session) + +
+           
+ voidsetLocalAddress(String localAddress) + +
+           
+ voidsetLocalPort(int localPort) + +
+           
+ voidstart(com.jcraft.jsch.Session session) + +
+          Start the binding, ie, open a SSH tunnel between local address:port and remote address:port.
+ voidstop(com.jcraft.jsch.Session session) + +
+          Stop the SSH tunnel.
+  +

+ + + + + + + + +
+Method Detail
+ +

+start

+
+void start(com.jcraft.jsch.Session session)
+           throws OpenShiftSSHOperationException
+
+
Start the binding, ie, open a SSH tunnel between local address:port and remote address:port. +

+

+ +
Throws: +
OpenShiftSSHOperationException
+
+
+
+ +

+stop

+
+void stop(com.jcraft.jsch.Session session)
+          throws OpenShiftSSHOperationException
+
+
Stop the SSH tunnel. +

+

+ +
Throws: +
OpenShiftSSHOperationException
+
+
+
+ +

+isStarted

+
+boolean isStarted(com.jcraft.jsch.Session session)
+                  throws OpenShiftSSHOperationException
+
+
+ +
Returns:
true if the SSH tunnel is open, false otherwise. +
Throws: +
OpenShiftSSHOperationException
+
+
+
+ +

+getName

+
+String getName()
+
+
+ +
Returns:
the name
+
+
+
+ +

+getLocalAddress

+
+String getLocalAddress()
+
+
+ +
Returns:
the localAddress
+
+
+
+ +

+setLocalAddress

+
+void setLocalAddress(String localAddress)
+
+
+
Parameters:
localAddress - the localAddress to set
+
+
+
+ +

+getLocalPort

+
+int getLocalPort()
+
+
+ +
Returns:
the localPort
+
+
+
+ +

+setLocalPort

+
+void setLocalPort(int localPort)
+
+
+
Parameters:
localPort - the localPort to set
+
+
+
+ +

+getRemoteAddress

+
+String getRemoteAddress()
+
+
+ +
Returns:
the remoteIp
+
+
+
+ +

+getRemotePort

+
+int getRemotePort()
+
+
+ +
Returns:
the remotePort
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/IDomain.html b/documentation/com/openshift/client/IDomain.html new file mode 100644 index 00000000..aa5b9ba3 --- /dev/null +++ b/documentation/com/openshift/client/IDomain.html @@ -0,0 +1,862 @@ + + + + + + + +IDomain (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Interface IDomain

+
+
All Superinterfaces:
IOpenShiftResource
+
+
+
All Known Implementing Classes:
DomainResource
+
+
+
+
public interface IDomain
extends IOpenShiftResource
+ + +

+

+
Author:
+
André Dietisheim, Nicolas Spano, Syed Iqbal
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ booleancanCreateApplicationWithEnvironmentVariables() + +
+          Returns true if this domain can create application with environment variables.
+ IApplicationcreateApplication(String name, + IStandaloneCartridge cartridge) + +
+           
+ IApplicationcreateApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale) + +
+           
+ IApplicationcreateApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile) + +
+           
+ IApplicationcreateApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl) + +
+          Creates a new application with the given name and the given + cartridge/framework.
+ IApplicationcreateApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + IEmbeddableCartridge... cartridges) + +
+          Creates a new application with the given name and the given + cartridge/framework.
+ IApplicationcreateApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + Map<String,String> environmentVariable, + IEmbeddableCartridge... cartridges) + +
+          Creates a new application with the given name and the given + cartridge/framework.
+ IApplicationcreateApplication(String name, + IStandaloneCartridge cartridge, + IGearProfile gearProfile) + +
+           
+ IApplicationcreateApplication(String name, + IStandaloneCartridge cartridge, + String initialGitUrl) + +
+           
+ voiddestroy() + +
+          Destroys the current domain.
+ voiddestroy(boolean force) + +
+          Destroys the current domain, using the 'force' parameter to also destroy the domain applications.
+ IApplicationgetApplicationByName(String name) + +
+          Returns the application identified by the given name.
+ List<IApplication>getApplications() + +
+           
+ List<IApplication>getApplicationsByCartridge(IStandaloneCartridge cartridge) + +
+           
+ List<String>getAvailableCartridgeNames() + +
+          Returns the list of cartridges that can be used to create a new application.
+ List<IGearProfile>getAvailableGearProfiles() + +
+          Returns the list of available gear size that the user can choose when creating a new application (application's gear size can't be changed after creation).
+ StringgetId() + +
+           
+ StringgetSuffix() + +
+          The domain suffix is the host part eg: 'rhcloud.com')
+ IUsergetUser() + +
+          Returns the currently connected user that manages this domain.
+ booleanhasApplicationByCartridge(IStandaloneCartridge cartridge) + +
+           
+ booleanhasApplicationByName(String name) + +
+          Returns true if the application identified by the given name exists in the domain.
+ voidrename(String id) + +
+          Rename the current domain with the given id....
+ + + + + + + +
Methods inherited from interface com.openshift.client.IOpenShiftResource
getCreationLog, getMessages, hasCreationLog, refresh
+  +

+ + + + + + + + +
+Method Detail
+ +

+getId

+
+String getId()
+
+
+
+
+
+ +
Returns:
the domain id (formerly known as 'namespace'). A unique litteral identifier on OpenShift.
+
+
+
+ +

+getSuffix

+
+String getSuffix()
+
+
The domain suffix is the host part eg: 'rhcloud.com') +

+

+
+
+
+ +
Returns:
+
+
+
+ +

+rename

+
+void rename(String id)
+            throws OpenShiftException
+
+
Rename the current domain with the given id.... +

+

+
+
+
+
Parameters:
id - +
Throws: +
OpenShiftException
+
+
+
+ +

+getUser

+
+IUser getUser()
+              throws OpenShiftException
+
+
Returns the currently connected user that manages this domain. +

+

+
+
+
+ +
Returns:
+
Throws: +
OpenShiftException
+
+
+
+ +

+destroy

+
+void destroy()
+             throws OpenShiftException
+
+
Destroys the current domain. This method works only if it has not application. +

+

+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+destroy

+
+void destroy(boolean force)
+             throws OpenShiftException
+
+
Destroys the current domain, using the 'force' parameter to also destroy the domain applications. The domain cannot + be destroyed without setting 'force-true' if it still contains applications. +

+

+
+
+
+
Parameters:
force - +
Throws: +
OpenShiftException
+
+
+
+ +

+canCreateApplicationWithEnvironmentVariables

+
+boolean canCreateApplicationWithEnvironmentVariables()
+
+
Returns true if this domain can create application with environment variables. Returns false otherwise. +

+

+
+
+
+ +
Returns:
true if can create an application with environment variables
See Also:
IApplication.getEnvironmentVariables()
+
+
+
+ +

+createApplication

+
+IApplication createApplication(String name,
+                               IStandaloneCartridge cartridge)
+                               throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+createApplication

+
+IApplication createApplication(String name,
+                               IStandaloneCartridge cartridge,
+                               String initialGitUrl)
+                               throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+createApplication

+
+IApplication createApplication(String name,
+                               IStandaloneCartridge cartridge,
+                               ApplicationScale scale)
+                               throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+createApplication

+
+IApplication createApplication(String name,
+                               IStandaloneCartridge cartridge,
+                               IGearProfile gearProfile)
+                               throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+createApplication

+
+IApplication createApplication(String name,
+                               IStandaloneCartridge cartridge,
+                               ApplicationScale scale,
+                               IGearProfile gearProfile)
+                               throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+createApplication

+
+IApplication createApplication(String name,
+                               IStandaloneCartridge cartridge,
+                               ApplicationScale scale,
+                               IGearProfile gearProfile,
+                               String initialGitUrl)
+                               throws OpenShiftException
+
+
Creates a new application with the given name and the given + cartridge/framework. Optionally, adds scalability and a specific gear + profile and a git url to use for the initial template. +

+

+
+
+
+
Parameters:
name - the name of the application
cartridge - the cartridge (the application type, ex. jbossas-7, + jbossews-2, php.5.2, etc.
scale - or null (will use default on openshift, ie, false)
gearProfile - ("small", "micro", "medium", "large", "exlarge", "jumbo") or + null (will use default on openshift, ie, 'small')
initialGitUrl - the git url for the initial template app to be used +
Returns:
+
Throws: +
OpenShiftException
+
+
+
+ +

+createApplication

+
+IApplication createApplication(String name,
+                               IStandaloneCartridge cartridge,
+                               ApplicationScale scale,
+                               IGearProfile gearProfile,
+                               String initialGitUrl,
+                               int timeout,
+                               IEmbeddableCartridge... cartridges)
+                               throws OpenShiftException
+
+
Creates a new application with the given name and the given + cartridge/framework. Optionally, adds scalability, a specific gear + profile, a git url to use for the initial template, the timeout value and + the embeddable (add-on) cartridges for it. +

+

+
+
+
+
Parameters:
name - the name of the application
cartridge - the cartridge (the application type, ex. jbossas-7, + jbossews-2, php.5.2, etc.
scale - or null (will use default on openshift, ie, false)
gearProfile - ("small", "micro", "medium", "large", "exlarge", "jumbo") or + null (will use default on openshift, ie, 'small')
initialGitUrl - the git url for the initial template app to be used
timeout - the timeout value in milliseconds
cartridges - the embeddable cartridges that shall get added to the new + application (the add-on cartridges mysql, mongodb, postgresql, + etc.) +
Returns:
IApplication created +
Throws: +
OpenShiftException
+
+
+
+ +

+createApplication

+
+IApplication createApplication(String name,
+                               IStandaloneCartridge cartridge,
+                               ApplicationScale scale,
+                               IGearProfile gearProfile,
+                               String initialGitUrl,
+                               int timeout,
+                               Map<String,String> environmentVariable,
+                               IEmbeddableCartridge... cartridges)
+                               throws OpenShiftException
+
+
Creates a new application with the given name and the given + cartridge/framework. Optionally, adds scalability, a specific gear + profile, a git url to use for the initial template, the timeout value, + environment variables and + the embeddable (add-on) cartridges for it. +

+

+
+
+
+
Parameters:
name - the name of the application
cartridge - the cartridge (the application type, ex. jbossas-7, + jbossews-2, php.5.2, etc.
scale - or null (will use default on openshift, ie, false)
gearProfile - ("small", "micro", "medium", "large", "exlarge", "jumbo") or + null (will use default on openshift, ie, 'small')
initialGitUrl - the git url for the initial template app to be used
timeout - the timeout value in milliseconds
environmentVariable - the environment variables to be added to the application
cartridges - the embeddable cartridges that shall get added to the new + application (the add-on cartridges mysql, mongodb, postgresql, + etc.) +
Returns:
IApplication created +
Throws: +
OpenShiftException
+
+
+
+ +

+getApplications

+
+List<IApplication> getApplications()
+                                   throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getAvailableCartridgeNames

+
+List<String> getAvailableCartridgeNames()
+                                        throws OpenShiftException
+
+
Returns the list of cartridges that can be used to create a new application. +

+

+
+
+
+ +
Returns:
the list of cartridges that can be used to create a new application. +
Throws: +
OpenShiftException
+
+
+
+ +

+getApplicationByName

+
+IApplication getApplicationByName(String name)
+                                  throws OpenShiftException
+
+
Returns the application identified by the given name. +

+

+
+
+
+
Parameters:
name - +
Returns:
+
Throws: +
OpenShiftException
+
+
+
+ +

+hasApplicationByName

+
+boolean hasApplicationByName(String name)
+                             throws OpenShiftException
+
+
Returns true if the application identified by the given name exists in the domain. +

+

+
+
+
+
Parameters:
name - +
Returns:
+
Throws: +
OpenShiftException
+
+
+
+ +

+getApplicationsByCartridge

+
+List<IApplication> getApplicationsByCartridge(IStandaloneCartridge cartridge)
+                                              throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+hasApplicationByCartridge

+
+boolean hasApplicationByCartridge(IStandaloneCartridge cartridge)
+                                  throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getAvailableGearProfiles

+
+List<IGearProfile> getAvailableGearProfiles()
+                                            throws OpenShiftException
+
+
Returns the list of available gear size that the user can choose when creating a new application (application's gear size can't be changed after creation). +

+

+
+
+
+ +
Returns:
+
Throws: +
OpenShiftException
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/IEnvironmentVariable.html b/documentation/com/openshift/client/IEnvironmentVariable.html new file mode 100644 index 00000000..368a913b --- /dev/null +++ b/documentation/com/openshift/client/IEnvironmentVariable.html @@ -0,0 +1,332 @@ + + + + + + + +IEnvironmentVariable (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Interface IEnvironmentVariable

+
+
All Superinterfaces:
IOpenShiftResource
+
+
+
All Known Implementing Classes:
EnvironmentVariableResource
+
+
+
+
public interface IEnvironmentVariable
extends IOpenShiftResource
+ + +

+

+
Author:
+
Syed Iqbal
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ voiddestroy() + +
+          Destroys this environment variable
+ IApplicationgetApplication() + +
+          Returns the application for this environment variable
+ StringgetName() + +
+           
+ StringgetValue() + +
+           
+ voidupdate(String value) + +
+          Updates this environment variable to the given value.
+ + + + + + + +
Methods inherited from interface com.openshift.client.IOpenShiftResource
getCreationLog, getMessages, hasCreationLog, refresh
+  +

+ + + + + + + + +
+Method Detail
+ +

+getName

+
+String getName()
+
+
+
+
+
+ +
Returns:
Name of the environment variable
+
+
+
+ +

+getValue

+
+String getValue()
+
+
+
+
+
+ +
Returns:
Value of the environment variable
+
+
+
+ +

+update

+
+void update(String value)
+            throws OpenShiftException
+
+
Updates this environment variable to the given value. +

+

+
+
+
+
Parameters:
value - new value for this environment variable +
Throws: +
OpenShiftException
+
+
+
+ +

+destroy

+
+void destroy()
+             throws OpenShiftException
+
+
Destroys this environment variable +

+

+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getApplication

+
+IApplication getApplication()
+
+
Returns the application for this environment variable +

+

+
+
+
+ +
Returns:
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/IField.html b/documentation/com/openshift/client/IField.html new file mode 100644 index 00000000..d1dce6be --- /dev/null +++ b/documentation/com/openshift/client/IField.html @@ -0,0 +1,286 @@ + + + + + + + +IField (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Interface IField

+
+
All Known Implementing Classes:
Field
+
+
+
+
public interface IField
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + + + + + +
+Field Summary
+static IFieldAPPINFO + +
+           
+static IFieldDEFAULT + +
+           
+static IFieldRESULT + +
+           
+  + + + + + + + + + + + +
+Method Summary
+ StringgetValue() + +
+           
+  +

+ + + + + + + + +
+Field Detail
+ +

+DEFAULT

+
+static final IField DEFAULT
+
+
+
+
+
+ +

+RESULT

+
+static final IField RESULT
+
+
+
+
+
+ +

+APPINFO

+
+static final IField APPINFO
+
+
+
+
+ + + + + + + + +
+Method Detail
+ +

+getValue

+
+String getValue()
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/IGear.html b/documentation/com/openshift/client/IGear.html new file mode 100644 index 00000000..8ecf9f70 --- /dev/null +++ b/documentation/com/openshift/client/IGear.html @@ -0,0 +1,259 @@ + + + + + + + +IGear (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Interface IGear

+
+
All Known Implementing Classes:
Gear
+
+
+
+
public interface IGear
+ + +

+


+ +

+ + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ StringgetId() + +
+          Returns the id of this gear.
+ StringgetSshUrl() + +
+          The URL to use when connecting with SSH in the following form: + ssh://<username>@<host>
+ GearStategetState() + +
+          Returns the state of this gear
+  +

+ + + + + + + + +
+Method Detail
+ +

+getId

+
+String getId()
+
+
Returns the id of this gear. +

+

+ +
Returns:
the id
+
+
+
+ +

+getState

+
+GearState getState()
+
+
Returns the state of this gear +

+

+ +
Returns:
the state
+
+
+
+ +

+getSshUrl

+
+String getSshUrl()
+
+
The URL to use when connecting with SSH in the following form: + ssh://<username>@<host> +

+

+ +
Returns:
the SSH URL
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/IGearGroup.html b/documentation/com/openshift/client/IGearGroup.html new file mode 100644 index 00000000..f7262728 --- /dev/null +++ b/documentation/com/openshift/client/IGearGroup.html @@ -0,0 +1,279 @@ + + + + + + + +IGearGroup (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Interface IGearGroup

+
+
All Known Implementing Classes:
GearGroupResource
+
+
+
+
public interface IGearGroup
+ + +

+


+ +

+ + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ Collection<ICartridge>getCartridges() + +
+          Returns the cartridges in this gear group resource
+ Collection<IGear>getGears() + +
+          Returns the gears in this gear group resource
+ StringgetName() + +
+          Returns the name of this gear groups
+ StringgetUUID() + +
+          Returns the uuid of this gear groups.
+  +

+ + + + + + + + +
+Method Detail
+ +

+getUUID

+
+String getUUID()
+
+
Returns the uuid of this gear groups. +

+

+ +
Returns:
the uuid
+
+
+
+ +

+getName

+
+String getName()
+
+
Returns the name of this gear groups +

+

+ +
Returns:
the name
+
+
+
+ +

+getGears

+
+Collection<IGear> getGears()
+
+
Returns the gears in this gear group resource +

+

+ +
Returns:
the gears
+
+
+
+ +

+getCartridges

+
+Collection<ICartridge> getCartridges()
+
+
Returns the cartridges in this gear group resource +

+

+ +
Returns:
the gears
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/IGearProfile.html b/documentation/com/openshift/client/IGearProfile.html new file mode 100644 index 00000000..da845536 --- /dev/null +++ b/documentation/com/openshift/client/IGearProfile.html @@ -0,0 +1,340 @@ + + + + + + + +IGearProfile (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Interface IGearProfile

+
+
All Known Implementing Classes:
GearProfile
+
+
+
+
public interface IGearProfile
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Field Summary
+static IGearProfileEXLARGE + +
+           
+static IGearProfileJUMBO + +
+           
+static IGearProfileLARGE + +
+           
+static IGearProfileMEDIUM + +
+           
+static IGearProfileMICRO + +
+           
+static IGearProfileSMALL + +
+           
+  + + + + + + + + + + + +
+Method Summary
+ StringgetName() + +
+           
+  +

+ + + + + + + + +
+Field Detail
+ +

+JUMBO

+
+static final IGearProfile JUMBO
+
+
+
+
+
+ +

+EXLARGE

+
+static final IGearProfile EXLARGE
+
+
+
+
+
+ +

+LARGE

+
+static final IGearProfile LARGE
+
+
+
+
+
+ +

+MEDIUM

+
+static final IGearProfile MEDIUM
+
+
+
+
+
+ +

+MICRO

+
+static final IGearProfile MICRO
+
+
+
+
+
+ +

+SMALL

+
+static final IGearProfile SMALL
+
+
+
+
+ + + + + + + + +
+Method Detail
+ +

+getName

+
+String getName()
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/IHttpClient.html b/documentation/com/openshift/client/IHttpClient.html new file mode 100644 index 00000000..d99d1879 --- /dev/null +++ b/documentation/com/openshift/client/IHttpClient.html @@ -0,0 +1,1054 @@ + + + + + + + +IHttpClient (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Interface IHttpClient

+
+
All Known Implementing Classes:
UrlConnectionHttpClient
+
+
+
+
public interface IHttpClient
+ + +

+

+
Author:
+
André Dietisheim, Nicolas Spano
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Field Summary
+static charAMPERSAND + +
+           
+static StringAUTHORIZATION_BASIC + +
+           
+static charCOLON + +
+           
+static charCOMMA + +
+           
+static intDEFAULT_CONNECT_TIMEOUT + +
+           
+static intDEFAULT_READ_TIMEOUT + +
+           
+static charEQUALS + +
+           
+static StringHTTP + +
+           
+static StringMEDIATYPE_APPLICATION_FORMURLENCODED + +
+           
+static StringMEDIATYPE_APPLICATION_JSON + +
+           
+static StringMEDIATYPE_APPLICATION_XML + +
+           
+static intNO_TIMEOUT + +
+           
+static StringPROPERTY_ACCEPT + +
+           
+static StringPROPERTY_AUTHIV + +
+           
+static StringPROPERTY_AUTHKEY + +
+           
+static StringPROPERTY_AUTHORIZATION + +
+           
+static StringPROPERTY_CONTENT_TYPE + +
+           
+static StringPROPERTY_USER_AGENT + +
+           
+static charQUESTION_MARK + +
+           
+static charSEMICOLON + +
+           
+static charSLASH + +
+           
+static charSPACE + +
+           
+static intSTATUS_BAD_REQUEST + +
+           
+static intSTATUS_INTERNAL_SERVER_ERROR + +
+           
+static intSTATUS_NOT_FOUND + +
+           
+static intSTATUS_OK + +
+           
+static intSTATUS_UNAUTHORIZED + +
+           
+static StringSYSPROP_DEFAULT_CONNECT_TIMEOUT + +
+           
+static StringSYSPROP_DEFAULT_READ_TIMEOUT + +
+           
+static StringSYSPROP_OPENSHIFT_CONNECT_TIMEOUT + +
+           
+static StringSYSPROP_OPENSHIFT_READ_TIMEOUT + +
+           
+static StringVERSION + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ Stringdelete(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ Stringdelete(URL url, + int timeout) + +
+           
+ Stringget(URL url, + int timeout) + +
+           
+ Stringhead(URL url, + int timeout) + +
+           
+ Stringpatch(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ Stringpost(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ Stringput(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ voidsetAcceptedMediaType(String acceptedMediaType) + +
+           
+ voidsetAcceptVersion(String version) + +
+           
+ voidsetUserAgent(String userAgent) + +
+           
+  +

+ + + + + + + + +
+Field Detail
+ +

+HTTP

+
+static final String HTTP
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_CONTENT_TYPE

+
+static final String PROPERTY_CONTENT_TYPE
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_AUTHORIZATION

+
+static final String PROPERTY_AUTHORIZATION
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_ACCEPT

+
+static final String PROPERTY_ACCEPT
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_USER_AGENT

+
+static final String PROPERTY_USER_AGENT
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_AUTHKEY

+
+static final String PROPERTY_AUTHKEY
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_AUTHIV

+
+static final String PROPERTY_AUTHIV
+
+
+
See Also:
Constant Field Values
+
+
+ +

+MEDIATYPE_APPLICATION_JSON

+
+static final String MEDIATYPE_APPLICATION_JSON
+
+
+
See Also:
Constant Field Values
+
+
+ +

+MEDIATYPE_APPLICATION_XML

+
+static final String MEDIATYPE_APPLICATION_XML
+
+
+
See Also:
Constant Field Values
+
+
+ +

+MEDIATYPE_APPLICATION_FORMURLENCODED

+
+static final String MEDIATYPE_APPLICATION_FORMURLENCODED
+
+
+
See Also:
Constant Field Values
+
+
+ +

+AUTHORIZATION_BASIC

+
+static final String AUTHORIZATION_BASIC
+
+
+
See Also:
Constant Field Values
+
+
+ +

+STATUS_OK

+
+static final int STATUS_OK
+
+
+
See Also:
Constant Field Values
+
+
+ +

+STATUS_INTERNAL_SERVER_ERROR

+
+static final int STATUS_INTERNAL_SERVER_ERROR
+
+
+
See Also:
Constant Field Values
+
+
+ +

+STATUS_BAD_REQUEST

+
+static final int STATUS_BAD_REQUEST
+
+
+
See Also:
Constant Field Values
+
+
+ +

+STATUS_UNAUTHORIZED

+
+static final int STATUS_UNAUTHORIZED
+
+
+
See Also:
Constant Field Values
+
+
+ +

+STATUS_NOT_FOUND

+
+static final int STATUS_NOT_FOUND
+
+
+
See Also:
Constant Field Values
+
+
+ +

+SPACE

+
+static final char SPACE
+
+
+
See Also:
Constant Field Values
+
+
+ +

+COLON

+
+static final char COLON
+
+
+
See Also:
Constant Field Values
+
+
+ +

+COMMA

+
+static final char COMMA
+
+
+
See Also:
Constant Field Values
+
+
+ +

+SEMICOLON

+
+static final char SEMICOLON
+
+
+
See Also:
Constant Field Values
+
+
+ +

+AMPERSAND

+
+static final char AMPERSAND
+
+
+
See Also:
Constant Field Values
+
+
+ +

+EQUALS

+
+static final char EQUALS
+
+
+
See Also:
Constant Field Values
+
+
+ +

+SLASH

+
+static final char SLASH
+
+
+
See Also:
Constant Field Values
+
+
+ +

+QUESTION_MARK

+
+static final char QUESTION_MARK
+
+
+
See Also:
Constant Field Values
+
+
+ +

+VERSION

+
+static final String VERSION
+
+
+
See Also:
Constant Field Values
+
+
+ +

+SYSPROP_OPENSHIFT_CONNECT_TIMEOUT

+
+static final String SYSPROP_OPENSHIFT_CONNECT_TIMEOUT
+
+
+
See Also:
Constant Field Values
+
+
+ +

+SYSPROP_OPENSHIFT_READ_TIMEOUT

+
+static final String SYSPROP_OPENSHIFT_READ_TIMEOUT
+
+
+
See Also:
Constant Field Values
+
+
+ +

+SYSPROP_DEFAULT_CONNECT_TIMEOUT

+
+static final String SYSPROP_DEFAULT_CONNECT_TIMEOUT
+
+
+
See Also:
Constant Field Values
+
+
+ +

+SYSPROP_DEFAULT_READ_TIMEOUT

+
+static final String SYSPROP_DEFAULT_READ_TIMEOUT
+
+
+
See Also:
Constant Field Values
+
+
+ +

+DEFAULT_CONNECT_TIMEOUT

+
+static final int DEFAULT_CONNECT_TIMEOUT
+
+
+
See Also:
Constant Field Values
+
+
+ +

+DEFAULT_READ_TIMEOUT

+
+static final int DEFAULT_READ_TIMEOUT
+
+
+
See Also:
Constant Field Values
+
+
+ +

+NO_TIMEOUT

+
+static final int NO_TIMEOUT
+
+
+
See Also:
Constant Field Values
+
+ + + + + + + + +
+Method Detail
+ +

+get

+
+String get(URL url,
+           int timeout)
+           throws HttpClientException,
+                  SocketTimeoutException
+
+
+ +
Throws: +
HttpClientException +
SocketTimeoutException
+
+
+
+ +

+head

+
+String head(URL url,
+            int timeout)
+            throws HttpClientException,
+                   SocketTimeoutException
+
+
+ +
Throws: +
HttpClientException +
SocketTimeoutException
+
+
+
+ +

+post

+
+String post(URL url,
+            IMediaType mediaType,
+            int timeout,
+            Parameter... parameters)
+            throws HttpClientException,
+                   SocketTimeoutException,
+                   EncodingException
+
+
+ +
Throws: +
HttpClientException +
SocketTimeoutException +
EncodingException
+
+
+
+ +

+put

+
+String put(URL url,
+           IMediaType mediaType,
+           int timeout,
+           Parameter... parameters)
+           throws HttpClientException,
+                  SocketTimeoutException,
+                  EncodingException
+
+
+ +
Throws: +
HttpClientException +
SocketTimeoutException +
EncodingException
+
+
+
+ +

+patch

+
+String patch(URL url,
+             IMediaType mediaType,
+             int timeout,
+             Parameter... parameters)
+             throws HttpClientException,
+                    SocketTimeoutException,
+                    EncodingException
+
+
+ +
Throws: +
HttpClientException +
SocketTimeoutException +
EncodingException
+
+
+
+ +

+delete

+
+String delete(URL url,
+              IMediaType mediaType,
+              int timeout,
+              Parameter... parameters)
+              throws HttpClientException,
+                     SocketTimeoutException,
+                     EncodingException
+
+
+ +
Throws: +
HttpClientException +
SocketTimeoutException +
EncodingException
+
+
+
+ +

+delete

+
+String delete(URL url,
+              int timeout)
+              throws HttpClientException,
+                     SocketTimeoutException,
+                     EncodingException
+
+
+ +
Throws: +
HttpClientException +
SocketTimeoutException +
EncodingException
+
+
+
+ +

+setUserAgent

+
+void setUserAgent(String userAgent)
+
+
+
+
+
+
+ +

+setAcceptVersion

+
+void setAcceptVersion(String version)
+
+
+
+
+
+
+ +

+setAcceptedMediaType

+
+void setAcceptedMediaType(String acceptedMediaType)
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/IOpenShiftConnection.html b/documentation/com/openshift/client/IOpenShiftConnection.html new file mode 100644 index 00000000..65da650a --- /dev/null +++ b/documentation/com/openshift/client/IOpenShiftConnection.html @@ -0,0 +1,431 @@ + + + + + + + +IOpenShiftConnection (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Interface IOpenShiftConnection

+
+
All Known Implementing Classes:
APIResource
+
+
+
+
public interface IOpenShiftConnection
+ + +

+

+
Author:
+
Xavier Coulon, Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ List<IDomain>getDomains() + +
+          Returns the domains associated with the current OpenShift connection.
+ List<IEmbeddableCartridge>getEmbeddableCartridges() + +
+          Returns the available embeddable cartridges associated with the current + OpenShift connection.
+ ExecutorServicegetExecutorService() + +
+          Returns the executor service instance that's available in this + connection.
+ StringgetServer() + +
+          Returns the server this connection is bound to.
+ List<IStandaloneCartridge>getStandaloneCartridges() + +
+          Returns the available standalone cartridges associated with the current + OpenShift connection.
+ IUsergetUser() + +
+          Returns the user associated with the current OpenShift connection.
+ voidsetEnableSSLCertChecks(boolean doSSLChecks) + +
+          Sets flag for enabling SSL certificate checks (i.e.
+ voidsetProxyHost(String proxyHost) + +
+          Sets the HTTP proxy hostname
+ voidsetProxyPort(String proxyPort) + +
+          Sets the HTTP proxy port
+ voidsetProxySet(boolean proxySet) + +
+          Sets flag for using an HTTP proxy
+  +

+ + + + + + + + +
+Method Detail
+ +

+getServer

+
+String getServer()
+
+
Returns the server this connection is bound to. +

+

+ +
Returns:
the server
+
+
+
+ +

+getUser

+
+IUser getUser()
+              throws OpenShiftException
+
+
Returns the user associated with the current OpenShift connection. +

+

+ +
Returns:
the user +
Throws: +
OpenShiftException
+
+
+
+ +

+getDomains

+
+List<IDomain> getDomains()
+                         throws OpenShiftException
+
+
Returns the domains associated with the current OpenShift connection. +

+

+ +
Returns:
the domains +
Throws: +
OpenShiftException
+
+
+
+ +

+getStandaloneCartridges

+
+List<IStandaloneCartridge> getStandaloneCartridges()
+                                                   throws OpenShiftException
+
+
Returns the available standalone cartridges associated with the current + OpenShift connection. +

+

+ +
Returns:
the available standalone cartridges +
Throws: +
OpenShiftException
+
+
+
+ +

+getEmbeddableCartridges

+
+List<IEmbeddableCartridge> getEmbeddableCartridges()
+                                                   throws OpenShiftException
+
+
Returns the available embeddable cartridges associated with the current + OpenShift connection. +

+

+ +
Returns:
the available embeddable cartridges +
Throws: +
OpenShiftException
+
+
+
+ +

+setEnableSSLCertChecks

+
+void setEnableSSLCertChecks(boolean doSSLChecks)
+
+
Sets flag for enabling SSL certificate checks (i.e. self-signed SSL + certificates) +

+

+
Parameters:
doSSLChecks -
+
+
+
+ +

+setProxySet

+
+void setProxySet(boolean proxySet)
+
+
Sets flag for using an HTTP proxy +

+

+
Parameters:
proxySet -
+
+
+
+ +

+setProxyHost

+
+void setProxyHost(String proxyHost)
+
+
Sets the HTTP proxy hostname +

+

+
Parameters:
proxyHost -
+
+
+
+ +

+setProxyPort

+
+void setProxyPort(String proxyPort)
+
+
Sets the HTTP proxy port +

+

+
Parameters:
proxyPort -
+
+
+
+ +

+getExecutorService

+
+ExecutorService getExecutorService()
+
+
Returns the executor service instance that's available in this + connection. +

+

+ +
Returns:
the executor service instance for this connection
See Also:
ExecutorService, +Executors
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/IOpenShiftResource.html b/documentation/com/openshift/client/IOpenShiftResource.html new file mode 100644 index 00000000..e746f387 --- /dev/null +++ b/documentation/com/openshift/client/IOpenShiftResource.html @@ -0,0 +1,292 @@ + + + + + + + +IOpenShiftResource (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Interface IOpenShiftResource

+
+
All Known Subinterfaces:
IApplication, IDomain, IEmbeddedCartridge, IEnvironmentVariable, IUser
+
+
+
All Known Implementing Classes:
AbstractOpenShiftResource, APIResource, ApplicationResource, DomainResource, EmbeddedCartridgeResource, EnvironmentVariableResource, GearGroupResource, SSHKeyResource, UserResource
+
+
+
+
public interface IOpenShiftResource
+ + +

+


+ +

+ + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ StringgetCreationLog() + +
+          Returns the log that was created when the resource was created.
+ MessagesgetMessages() + +
+          Returns all the (creation log) messages.
+ booleanhasCreationLog() + +
+          Returns + true if there is log about the creation of this resource.
+ voidrefresh() + +
+          Refresh the resource and its list of children resources that were + previously loaded
+  +

+ + + + + + + + +
+Method Detail
+ +

+hasCreationLog

+
+boolean hasCreationLog()
+
+
Returns + true if there is log about the creation of this resource. + Creation logs are only available at creation time. So resources that were retrieved + while they already existed wont have a creation log. +

+

+ +
Returns:
true if there's cretion log for this resource
+
+
+
+ +

+getCreationLog

+
+String getCreationLog()
+
+
Returns the log that was created when the resource was created. +

+

+ +
Returns:
the log which reported the creation of this resource
+
+
+
+ +

+getMessages

+
+Messages getMessages()
+
+
Returns all the (creation log) messages. These messages only exist at + creation time. Existing cartridges, that were added in a prior session + dont have any messages any more. +

+

+ +
Returns:
all messages by field
See Also:
getCreationLog()
+
+
+
+ +

+refresh

+
+void refresh()
+             throws OpenShiftException
+
+
Refresh the resource and its list of children resources that were + previously loaded +

+

+ +
Throws: +
OpenShiftException
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/IOpenShiftSSHKey.html b/documentation/com/openshift/client/IOpenShiftSSHKey.html new file mode 100644 index 00000000..63200b06 --- /dev/null +++ b/documentation/com/openshift/client/IOpenShiftSSHKey.html @@ -0,0 +1,313 @@ + + + + + + + +IOpenShiftSSHKey (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Interface IOpenShiftSSHKey

+
+
All Superinterfaces:
ISSHPublicKey
+
+
+
All Known Implementing Classes:
SSHKeyResource
+
+
+
+
public interface IOpenShiftSSHKey
extends ISSHPublicKey
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ voiddestroy() + +
+           
+ StringgetName() + +
+          Returns the name that is used to store this key on OpenShift.
+ voidsetKeyType(SSHKeyType type, + String publicKey) + +
+          Sets the new type and public key of this ssh key to the OpenShift PaaS
+ voidsetPublicKey(String publicKey) + +
+          Sets the public key portion of this ssh key to the OpenShift PaaS.
+ + + + + + + +
Methods inherited from interface com.openshift.client.ISSHPublicKey
getKeyType, getPublicKey
+  +

+ + + + + + + + +
+Method Detail
+ +

+getName

+
+String getName()
+
+
Returns the name that is used to store this key on OpenShift. +

+

+
+
+
+ +
Returns:
+
+
+
+ +

+setPublicKey

+
+void setPublicKey(String publicKey)
+                  throws OpenShiftException
+
+
Sets the public key portion of this ssh key to the OpenShift PaaS. +

+

+
+
+
+
Parameters:
publicKey - the new public key porition of this key +
Throws: +
OpenShiftException
+
+
+
+ +

+setKeyType

+
+void setKeyType(SSHKeyType type,
+                String publicKey)
+                throws OpenShiftException
+
+
Sets the new type and public key of this ssh key to the OpenShift PaaS +

+

+
+
+
+
Parameters:
type - +
Throws: +
OpenShiftException
+
+
+
+ +

+destroy

+
+void destroy()
+             throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/ISSHPublicKey.html b/documentation/com/openshift/client/ISSHPublicKey.html new file mode 100644 index 00000000..73fbe967 --- /dev/null +++ b/documentation/com/openshift/client/ISSHPublicKey.html @@ -0,0 +1,249 @@ + + + + + + + +ISSHPublicKey (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Interface ISSHPublicKey

+
+
All Known Subinterfaces:
IOpenShiftSSHKey
+
+
+
All Known Implementing Classes:
AbstractSSHKey, SSHKeyPair, SSHKeyResource, SSHPublicKey
+
+
+
+
public interface ISSHPublicKey
+ + +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + + +
+Method Summary
+ SSHKeyTypegetKeyType() + +
+          Returns the type of the key (ssh-rsa or ssh-dss)
+ StringgetPublicKey() + +
+          Returns the content of the public key (key content without ssh-rsa + identifier nor comment) of the ssh key
+  +

+ + + + + + + + +
+Method Detail
+ +

+getPublicKey

+
+String getPublicKey()
+
+
Returns the content of the public key (key content without ssh-rsa + identifier nor comment) of the ssh key +

+

+ +
Returns:
the content of the public key (without signature, without + comment) +
Throws: +
OpenShiftException
+
+
+
+ +

+getKeyType

+
+SSHKeyType getKeyType()
+
+
Returns the type of the key (ssh-rsa or ssh-dss) +

+

+ +
Returns:
the type of key, either ssh-rsa or ssh-dss +
Throws: +
OpenShiftException
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/ISeverity.html b/documentation/com/openshift/client/ISeverity.html new file mode 100644 index 00000000..65fa750d --- /dev/null +++ b/documentation/com/openshift/client/ISeverity.html @@ -0,0 +1,304 @@ + + + + + + + +ISeverity (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Interface ISeverity

+
+
All Known Implementing Classes:
Severity
+
+
+
+
public interface ISeverity
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + +
+Field Summary
+static ISeverityDEBUG + +
+           
+static ISeverityERROR + +
+           
+static ISeverityINFO + +
+           
+static ISeverityRESULT + +
+           
+  + + + + + + + + + + + +
+Method Summary
+ StringgetValue() + +
+           
+  +

+ + + + + + + + +
+Field Detail
+ +

+INFO

+
+static final ISeverity INFO
+
+
+
+
+
+ +

+DEBUG

+
+static final ISeverity DEBUG
+
+
+
+
+
+ +

+ERROR

+
+static final ISeverity ERROR
+
+
+
+
+
+ +

+RESULT

+
+static final ISeverity RESULT
+
+
+
+
+ + + + + + + + +
+Method Detail
+ +

+getValue

+
+String getValue()
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/IUser.html b/documentation/com/openshift/client/IUser.html new file mode 100644 index 00000000..11f60ded --- /dev/null +++ b/documentation/com/openshift/client/IUser.html @@ -0,0 +1,707 @@ + + + + + + + +IUser (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Interface IUser

+
+
All Superinterfaces:
IOpenShiftResource
+
+
+
All Known Implementing Classes:
UserResource
+
+
+
+
public interface IUser
extends IOpenShiftResource
+ + +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + + + + + +
+Field Summary
+static StringID + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ IDomaincreateDomain(String id) + +
+           
+ voiddeleteKey(String name) + +
+           
+ IOpenShiftConnectiongetConnection() + +
+           
+ intgetConsumedGears() + +
+           
+ IDomaingetDefaultDomain() + +
+           
+ IDomaingetDomain(String id) + +
+           
+ List<IDomain>getDomains() + +
+           
+ intgetMaxGears() + +
+           
+ StringgetPassword() + +
+           
+ StringgetRhlogin() + +
+           
+ StringgetServer() + +
+           
+ IOpenShiftSSHKeygetSSHKeyByName(String name) + +
+           
+ IOpenShiftSSHKeygetSSHKeyByPublicKey(String publicKey) + +
+           
+ List<IOpenShiftSSHKey>getSSHKeys() + +
+           
+ booleanhasDomain() + +
+           
+ booleanhasDomain(String id) + +
+           
+ booleanhasSSHKeyName(String name) + +
+           
+ booleanhasSSHPublicKey(String publicKey) + +
+           
+ IOpenShiftSSHKeyputSSHKey(String name, + ISSHPublicKey key) + +
+           
+ + + + + + + +
Methods inherited from interface com.openshift.client.IOpenShiftResource
getCreationLog, getMessages, hasCreationLog, refresh
+  +

+ + + + + + + + +
+Field Detail
+ +

+ID

+
+static final String ID
+
+
+
See Also:
Constant Field Values
+
+ + + + + + + + +
+Method Detail
+ +

+getRhlogin

+
+String getRhlogin()
+
+
+
+
+
+
+
+
+
+ +

+getPassword

+
+String getPassword()
+
+
+
+
+
+
+
+
+
+ +

+getServer

+
+String getServer()
+
+
+
+
+
+
+
+
+
+ +

+getConnection

+
+IOpenShiftConnection getConnection()
+
+
+
+
+
+
+
+
+
+ +

+createDomain

+
+IDomain createDomain(String id)
+                     throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getDomains

+
+List<IDomain> getDomains()
+                         throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getDefaultDomain

+
+IDomain getDefaultDomain()
+                         throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getDomain

+
+IDomain getDomain(String id)
+                  throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+hasDomain

+
+boolean hasDomain()
+                  throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+hasDomain

+
+boolean hasDomain(String id)
+                  throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getSSHKeys

+
+List<IOpenShiftSSHKey> getSSHKeys()
+                                  throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+putSSHKey

+
+IOpenShiftSSHKey putSSHKey(String name,
+                           ISSHPublicKey key)
+                           throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getSSHKeyByName

+
+IOpenShiftSSHKey getSSHKeyByName(String name)
+                                 throws OpenShiftUnknonwSSHKeyTypeException,
+                                        OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftUnknonwSSHKeyTypeException +
OpenShiftException
+
+
+
+ +

+getSSHKeyByPublicKey

+
+IOpenShiftSSHKey getSSHKeyByPublicKey(String publicKey)
+                                      throws OpenShiftUnknonwSSHKeyTypeException,
+                                             OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftUnknonwSSHKeyTypeException +
OpenShiftException
+
+
+
+ +

+hasSSHKeyName

+
+boolean hasSSHKeyName(String name)
+                      throws OpenShiftUnknonwSSHKeyTypeException,
+                             OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftUnknonwSSHKeyTypeException +
OpenShiftException
+
+
+
+ +

+hasSSHPublicKey

+
+boolean hasSSHPublicKey(String publicKey)
+                        throws OpenShiftUnknonwSSHKeyTypeException,
+                               OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftUnknonwSSHKeyTypeException +
OpenShiftException
+
+
+
+ +

+deleteKey

+
+void deleteKey(String name)
+
+
+
+
+
+
+
+
+
+ +

+getMaxGears

+
+int getMaxGears()
+
+
+
+
+
+
+
+
+
+ +

+getConsumedGears

+
+int getConsumedGears()
+
+
+
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/InvalidCredentialsOpenShiftException.html b/documentation/com/openshift/client/InvalidCredentialsOpenShiftException.html new file mode 100644 index 00000000..48730a43 --- /dev/null +++ b/documentation/com/openshift/client/InvalidCredentialsOpenShiftException.html @@ -0,0 +1,264 @@ + + + + + + + +InvalidCredentialsOpenShiftException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Class InvalidCredentialsOpenShiftException

+
+java.lang.Object
+  extended by java.lang.Throwable
+      extended by java.lang.Exception
+          extended by java.lang.RuntimeException
+              extended by com.openshift.client.OpenShiftException
+                  extended by com.openshift.client.OpenShiftEndpointException
+                      extended by com.openshift.client.InvalidCredentialsOpenShiftException
+
+
+
All Implemented Interfaces:
Serializable
+
+
+
+
public class InvalidCredentialsOpenShiftException
extends OpenShiftEndpointException
+ + +

+

+
Author:
+
André Dietisheim
+
See Also:
Serialized Form
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
InvalidCredentialsOpenShiftException(String url, + HttpClientException cause, + RestResponse restResponse) + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class com.openshift.client.OpenShiftEndpointException
getRestResponse, getRestResponseMessage, getRestResponseMessages, getUrl
+ + + + + + + +
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+InvalidCredentialsOpenShiftException

+
+public InvalidCredentialsOpenShiftException(String url,
+                                            HttpClientException cause,
+                                            RestResponse restResponse)
+                                     throws OpenShiftException
+
+
+ +
Throws: +
OpenShiftException
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/InvalidNameOpenShiftException.html b/documentation/com/openshift/client/InvalidNameOpenShiftException.html new file mode 100644 index 00000000..d463e78b --- /dev/null +++ b/documentation/com/openshift/client/InvalidNameOpenShiftException.html @@ -0,0 +1,247 @@ + + + + + + + +InvalidNameOpenShiftException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Class InvalidNameOpenShiftException

+
+java.lang.Object
+  extended by java.lang.Throwable
+      extended by java.lang.Exception
+          extended by java.lang.RuntimeException
+              extended by com.openshift.client.OpenShiftException
+                  extended by com.openshift.client.InvalidNameOpenShiftException
+
+
+
All Implemented Interfaces:
Serializable
+
+
+
+
public class InvalidNameOpenShiftException
extends OpenShiftException
+ + +

+

+
Author:
+
Andre Dietisheim
+
See Also:
Serialized Form
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
InvalidNameOpenShiftException(String message, + Object... arguments) + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+InvalidNameOpenShiftException

+
+public InvalidNameOpenShiftException(String message,
+                                     Object... arguments)
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/Message.html b/documentation/com/openshift/client/Message.html new file mode 100644 index 00000000..c2b4df59 --- /dev/null +++ b/documentation/com/openshift/client/Message.html @@ -0,0 +1,342 @@ + + + + + + + +Message (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Class Message

+
+java.lang.Object
+  extended by com.openshift.client.Message
+
+
+
+
public class Message
extends Object
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
Message(String text, + String field, + String severity, + int exitCode) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ intgetExitCode() + +
+           
+ IFieldgetField() + +
+           
+ ISeveritygetSeverity() + +
+           
+ StringgetText() + +
+           
+ StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+Message

+
+public Message(String text,
+               String field,
+               String severity,
+               int exitCode)
+
+
+ + + + + + + + +
+Method Detail
+ +

+getField

+
+public IField getField()
+
+
+
+
+
+
+ +

+getText

+
+public String getText()
+
+
+
+
+
+
+ +

+getSeverity

+
+public ISeverity getSeverity()
+
+
+
+
+
+
+ +

+getExitCode

+
+public int getExitCode()
+
+
+
+
+
+
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/Messages.html b/documentation/com/openshift/client/Messages.html new file mode 100644 index 00000000..55e5f582 --- /dev/null +++ b/documentation/com/openshift/client/Messages.html @@ -0,0 +1,423 @@ + + + + + + + +Messages (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Class Messages

+
+java.lang.Object
+  extended by com.openshift.client.Messages
+
+
+
+
public class Messages
extends Object
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
Messages(Map<IField,List<Message>> messages) + +
+          Instantiates a new abstract open shift resource.
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ List<Message>getAll() + +
+           
+ List<Message>getBy(IField field) + +
+          Returns all the message of the given field type.
+ List<Message>getBy(IField field, + ISeverity severity) + +
+          Returns the messages of the given field type and severity.
+ MessagegetFirstBy(IField field) + +
+          Returns the first message of the given field type.
+ MessagegetFirstBy(IField field, + ISeverity severity) + +
+          Returns the first message of the given field type and severity.
+ booleanhasMessages() + +
+           
+ intsize() + +
+           
+ StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+Messages

+
+public Messages(Map<IField,List<Message>> messages)
+
+
Instantiates a new abstract open shift resource. +

+

+
Parameters:
service - the service
links - the links
+
+ + + + + + + + +
+Method Detail
+ +

+getAll

+
+public List<Message> getAll()
+
+
+
+
+
+
+ +

+getFirstBy

+
+public Message getFirstBy(IField field,
+                          ISeverity severity)
+
+
Returns the first message of the given field type and severity. The messages only exist + at creation time. See #getCreationLog() for further details. +

+

+
Parameters:
field - the field type
severity - the severity +
Returns:
See Also:
Message#FIELD_APPINFO, +Message#FIELD_RESULT, +ISeverity
+
+
+
+ +

+getBy

+
+public List<Message> getBy(IField field,
+                           ISeverity severity)
+
+
Returns the messages of the given field type and severity. These messages only exist + at creation time. See #getCreationLog() for further details. +

+

+
Parameters:
field - the field type
severity - the severity +
Returns:
See Also:
Message#FIELD_APPINFO, +Message#FIELD_RESULT, +ISeverity
+
+
+
+ +

+getFirstBy

+
+public Message getFirstBy(IField field)
+
+
Returns the first message of the given field type. The messages only exist + at creation time. See #getCreationLog() for further details. +

+

+
Parameters:
field - the field type +
Returns:
See Also:
Message#FIELD_APPINFO, +Message#FIELD_RESULT
+
+
+
+ +

+getBy

+
+public List<Message> getBy(IField field)
+
+
Returns all the message of the given field type. The messages only exist + at creation time. See #getCreationLog() for further details. +

+

+
Parameters:
field - the field type +
Returns:
See Also:
Message#FIELD_APPINFO, +Message#FIELD_RESULT
+
+
+
+ +

+hasMessages

+
+public boolean hasMessages()
+
+
+
+
+
+
+ +

+size

+
+public int size()
+
+
+
+
+
+
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/NotFoundOpenShiftException.html b/documentation/com/openshift/client/NotFoundOpenShiftException.html new file mode 100644 index 00000000..3e115b2d --- /dev/null +++ b/documentation/com/openshift/client/NotFoundOpenShiftException.html @@ -0,0 +1,264 @@ + + + + + + + +NotFoundOpenShiftException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Class NotFoundOpenShiftException

+
+java.lang.Object
+  extended by java.lang.Throwable
+      extended by java.lang.Exception
+          extended by java.lang.RuntimeException
+              extended by com.openshift.client.OpenShiftException
+                  extended by com.openshift.client.OpenShiftEndpointException
+                      extended by com.openshift.client.NotFoundOpenShiftException
+
+
+
All Implemented Interfaces:
Serializable
+
+
+
+
public class NotFoundOpenShiftException
extends OpenShiftEndpointException
+ + +

+

+
Author:
+
André Dietisheim
+
See Also:
Serialized Form
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
NotFoundOpenShiftException(String url, + HttpClientException e, + RestResponse restResponse) + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class com.openshift.client.OpenShiftEndpointException
getRestResponse, getRestResponseMessage, getRestResponseMessages, getUrl
+ + + + + + + +
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+NotFoundOpenShiftException

+
+public NotFoundOpenShiftException(String url,
+                                  HttpClientException e,
+                                  RestResponse restResponse)
+                           throws OpenShiftException
+
+
+ +
Throws: +
OpenShiftException
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/OpenShiftApplicationNotAvailableException.html b/documentation/com/openshift/client/OpenShiftApplicationNotAvailableException.html new file mode 100644 index 00000000..b1b2880e --- /dev/null +++ b/documentation/com/openshift/client/OpenShiftApplicationNotAvailableException.html @@ -0,0 +1,245 @@ + + + + + + + +OpenShiftApplicationNotAvailableException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Class OpenShiftApplicationNotAvailableException

+
+java.lang.Object
+  extended by java.lang.Throwable
+      extended by java.lang.Exception
+          extended by java.lang.RuntimeException
+              extended by com.openshift.client.OpenShiftException
+                  extended by com.openshift.client.OpenShiftApplicationNotAvailableException
+
+
+
All Implemented Interfaces:
Serializable
+
+
+
+
public class OpenShiftApplicationNotAvailableException
extends OpenShiftException
+ + +

+

+
Author:
+
Xavier Coulon
+
See Also:
Serialized Form
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
OpenShiftApplicationNotAvailableException(String message) + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+OpenShiftApplicationNotAvailableException

+
+public OpenShiftApplicationNotAvailableException(String message)
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/OpenShiftConnectionFactory.html b/documentation/com/openshift/client/OpenShiftConnectionFactory.html new file mode 100644 index 00000000..a22beb99 --- /dev/null +++ b/documentation/com/openshift/client/OpenShiftConnectionFactory.html @@ -0,0 +1,423 @@ + + + + + + + +OpenShiftConnectionFactory (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Class OpenShiftConnectionFactory

+
+java.lang.Object
+  extended by com.openshift.internal.client.AbstractOpenShiftConnectionFactory
+      extended by com.openshift.client.OpenShiftConnectionFactory
+
+
+
+
public class OpenShiftConnectionFactory
extends AbstractOpenShiftConnectionFactory
+ + +

+Connection Factory, used to establish a connection and retrieve a user. +

+ +

+

+
Author:
+
Xavier Coulon, Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
OpenShiftConnectionFactory() + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ IOpenShiftConnectiongetConnection(String clientId, + String password) + +
+          Establish a connection with the clientId along with user's password.
+ IOpenShiftConnectiongetConnection(String clientId, + String username, + String password) + +
+          Establish a connection with the clientId along with user's login and + password.
+ IOpenShiftConnectiongetConnection(String clientId, + String username, + String password, + String serverUrl) + +
+          Establish a connection with the clientId along with user's login and + password.
+protected  IOpenShiftConnectiongetConnection(String clientId, + String username, + String password, + String serverUrl, + IHttpClient httpClient) + +
+           
+ IOpenShiftConnectiongetConnection(String clientId, + String username, + String password, + String authKey, + String authIV, + String serverUrl) + +
+          Establish a connection with the clientId along with user's login and + password.
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.AbstractOpenShiftConnectionFactory
getConnection
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+OpenShiftConnectionFactory

+
+public OpenShiftConnectionFactory()
+
+
+ + + + + + + + +
+Method Detail
+ +

+getConnection

+
+public IOpenShiftConnection getConnection(String clientId,
+                                          String password)
+                                   throws OpenShiftException
+
+
Establish a connection with the clientId along with user's password. + User's login and Server URL are retrieved from the local configuration + file (in see $USER_HOME/.openshift/express.conf) +

+

+
Parameters:
clientId - http client id
password - user's password +
Returns:
a valid connection +
Throws: +
FileNotFoundException +
IOException +
OpenShiftException
+
+
+
+ +

+getConnection

+
+public IOpenShiftConnection getConnection(String clientId,
+                                          String username,
+                                          String password)
+                                   throws OpenShiftException
+
+
Establish a connection with the clientId along with user's login and + password. Server URL is retrieved from the local configuration file (in + see $USER_HOME/.openshift/express.conf) +

+

+
Parameters:
clientId - http client id
username - user's login
password - user's password +
Returns:
a valid connection +
Throws: +
FileNotFoundException +
IOException +
OpenShiftException
+
+
+
+ +

+getConnection

+
+public IOpenShiftConnection getConnection(String clientId,
+                                          String username,
+                                          String password,
+                                          String serverUrl)
+                                   throws OpenShiftException
+
+
Establish a connection with the clientId along with user's login and + password. +

+

+
Parameters:
clientId - http client id
username - user's login.
password - user's password.
serverUrl - the server url. +
Returns:
a valid connection +
Throws: +
FileNotFoundException +
IOException +
OpenShiftException
+
+
+
+ +

+getConnection

+
+public IOpenShiftConnection getConnection(String clientId,
+                                          String username,
+                                          String password,
+                                          String authKey,
+                                          String authIV,
+                                          String serverUrl)
+                                   throws OpenShiftException
+
+
Establish a connection with the clientId along with user's login and + password. +

+

+
Parameters:
clientId - http client id
username - user's login.
password - user's password.
serverUrl - the server url. +
Returns:
a valid connection +
Throws: +
FileNotFoundException +
IOException +
OpenShiftException
+
+
+
+ +

+getConnection

+
+protected IOpenShiftConnection getConnection(String clientId,
+                                             String username,
+                                             String password,
+                                             String serverUrl,
+                                             IHttpClient httpClient)
+                                      throws OpenShiftException,
+                                             IOException
+
+
+ +
Throws: +
OpenShiftException +
IOException
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/OpenShiftEndpointException.html b/documentation/com/openshift/client/OpenShiftEndpointException.html new file mode 100644 index 00000000..33a0beb4 --- /dev/null +++ b/documentation/com/openshift/client/OpenShiftEndpointException.html @@ -0,0 +1,351 @@ + + + + + + + +OpenShiftEndpointException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Class OpenShiftEndpointException

+
+java.lang.Object
+  extended by java.lang.Throwable
+      extended by java.lang.Exception
+          extended by java.lang.RuntimeException
+              extended by com.openshift.client.OpenShiftException
+                  extended by com.openshift.client.OpenShiftEndpointException
+
+
+
All Implemented Interfaces:
Serializable
+
+
+
Direct Known Subclasses:
InvalidCredentialsOpenShiftException, NotFoundOpenShiftException, OpenShiftTimeoutException
+
+
+
+
public class OpenShiftEndpointException
extends OpenShiftException
+ + +

+

+
Author:
+
André Dietisheim
+
See Also:
Serialized Form
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
OpenShiftEndpointException(String url, + Throwable cause, + RestResponse response, + String message, + Object... arguments) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ RestResponsegetRestResponse() + +
+           
+ List<Message>getRestResponseMessage(IField field) + +
+          Returns the message for the given field.
+ MessagesgetRestResponseMessages() + +
+           
+protected  StringgetUrl() + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+OpenShiftEndpointException

+
+public OpenShiftEndpointException(String url,
+                                  Throwable cause,
+                                  RestResponse response,
+                                  String message,
+                                  Object... arguments)
+
+
+ + + + + + + + +
+Method Detail
+ +

+getRestResponse

+
+public RestResponse getRestResponse()
+                             throws OpenShiftException
+
+
+ +
Returns:
the server response after converting it into a RestResponse. +
Throws: +
OpenShiftException - if the unmarshalling fails
+
+
+
+ +

+getRestResponseMessages

+
+public Messages getRestResponseMessages()
+
+
+ +
Returns:
the server response messages after converting the response into a RestResponse. If the unmarshalling fails, the returned list is null.
+
+
+
+ +

+getRestResponseMessage

+
+public List<Message> getRestResponseMessage(IField field)
+
+
Returns the message for the given field. Returns null otherwise. +

+

+
Parameters:
field - +
Returns:
the message for the given field
See Also:
Message#FIELD_DEFAULT, +Message#FIELD_APPINFO, +Message#FIELD_RESULT
+
+
+
+ +

+getUrl

+
+protected String getUrl()
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/OpenShiftException.html b/documentation/com/openshift/client/OpenShiftException.html new file mode 100644 index 00000000..7b4c625b --- /dev/null +++ b/documentation/com/openshift/client/OpenShiftException.html @@ -0,0 +1,267 @@ + + + + + + + +OpenShiftException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Class OpenShiftException

+
+java.lang.Object
+  extended by java.lang.Throwable
+      extended by java.lang.Exception
+          extended by java.lang.RuntimeException
+              extended by com.openshift.client.OpenShiftException
+
+
+
All Implemented Interfaces:
Serializable
+
+
+
Direct Known Subclasses:
InvalidNameOpenShiftException, OpenShiftApplicationNotAvailableException, OpenShiftEndpointException, OpenShiftRequestException, OpenShiftSSHKeyException, OpenShiftSSHOperationException, OpenShiftUnknonwSSHKeyTypeException
+
+
+
+
public class OpenShiftException
extends RuntimeException
+ + +

+

+
Author:
+
André Dietisheim
+
See Also:
Serialized Form
+
+ +

+ + + + + + + + + + + + + + +
+Constructor Summary
OpenShiftException(String message, + Object... arguments) + +
+           
OpenShiftException(Throwable cause, + String message, + Object... arguments) + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+OpenShiftException

+
+public OpenShiftException(Throwable cause,
+                          String message,
+                          Object... arguments)
+
+
+
+ +

+OpenShiftException

+
+public OpenShiftException(String message,
+                          Object... arguments)
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/OpenShiftRequestException.html b/documentation/com/openshift/client/OpenShiftRequestException.html new file mode 100644 index 00000000..f4ddd6c1 --- /dev/null +++ b/documentation/com/openshift/client/OpenShiftRequestException.html @@ -0,0 +1,247 @@ + + + + + + + +OpenShiftRequestException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Class OpenShiftRequestException

+
+java.lang.Object
+  extended by java.lang.Throwable
+      extended by java.lang.Exception
+          extended by java.lang.RuntimeException
+              extended by com.openshift.client.OpenShiftException
+                  extended by com.openshift.client.OpenShiftRequestException
+
+
+
All Implemented Interfaces:
Serializable
+
+
+
+
public class OpenShiftRequestException
extends OpenShiftException
+ + +

+

+
Author:
+
Andre Dietisheim
+
See Also:
Serialized Form
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
OpenShiftRequestException(String message, + Object... arguments) + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+OpenShiftRequestException

+
+public OpenShiftRequestException(String message,
+                                 Object... arguments)
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/OpenShiftSSHKeyException.html b/documentation/com/openshift/client/OpenShiftSSHKeyException.html new file mode 100644 index 00000000..7d89a67d --- /dev/null +++ b/documentation/com/openshift/client/OpenShiftSSHKeyException.html @@ -0,0 +1,247 @@ + + + + + + + +OpenShiftSSHKeyException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Class OpenShiftSSHKeyException

+
+java.lang.Object
+  extended by java.lang.Throwable
+      extended by java.lang.Exception
+          extended by java.lang.RuntimeException
+              extended by com.openshift.client.OpenShiftException
+                  extended by com.openshift.client.OpenShiftSSHKeyException
+
+
+
All Implemented Interfaces:
Serializable
+
+
+
+
public class OpenShiftSSHKeyException
extends OpenShiftException
+ + +

+

+
Author:
+
Andre Dietisheim
+
See Also:
Serialized Form
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
OpenShiftSSHKeyException(String message, + Object... arguments) + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+OpenShiftSSHKeyException

+
+public OpenShiftSSHKeyException(String message,
+                                Object... arguments)
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/OpenShiftSSHOperationException.html b/documentation/com/openshift/client/OpenShiftSSHOperationException.html new file mode 100644 index 00000000..7d046e4f --- /dev/null +++ b/documentation/com/openshift/client/OpenShiftSSHOperationException.html @@ -0,0 +1,269 @@ + + + + + + + +OpenShiftSSHOperationException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Class OpenShiftSSHOperationException

+
+java.lang.Object
+  extended by java.lang.Throwable
+      extended by java.lang.Exception
+          extended by java.lang.RuntimeException
+              extended by com.openshift.client.OpenShiftException
+                  extended by com.openshift.client.OpenShiftSSHOperationException
+
+
+
All Implemented Interfaces:
Serializable
+
+
+
+
public class OpenShiftSSHOperationException
extends OpenShiftException
+ + +

+OpenShift Exception that encapsulates an underlying exception that occurred during an SSH operation. +

+ +

+

+
Author:
+
Xavier Coulon
+
See Also:
Serialized Form
+
+ +

+ + + + + + + + + + + + + + +
+Constructor Summary
OpenShiftSSHOperationException(String message, + Object... arguments) + +
+           
OpenShiftSSHOperationException(Throwable cause, + String message, + Object... arguments) + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+OpenShiftSSHOperationException

+
+public OpenShiftSSHOperationException(Throwable cause,
+                                      String message,
+                                      Object... arguments)
+
+
+
+ +

+OpenShiftSSHOperationException

+
+public OpenShiftSSHOperationException(String message,
+                                      Object... arguments)
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/OpenShiftTimeoutException.html b/documentation/com/openshift/client/OpenShiftTimeoutException.html new file mode 100644 index 00000000..46bb8f59 --- /dev/null +++ b/documentation/com/openshift/client/OpenShiftTimeoutException.html @@ -0,0 +1,261 @@ + + + + + + + +OpenShiftTimeoutException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Class OpenShiftTimeoutException

+
+java.lang.Object
+  extended by java.lang.Throwable
+      extended by java.lang.Exception
+          extended by java.lang.RuntimeException
+              extended by com.openshift.client.OpenShiftException
+                  extended by com.openshift.client.OpenShiftEndpointException
+                      extended by com.openshift.client.OpenShiftTimeoutException
+
+
+
All Implemented Interfaces:
Serializable
+
+
+
+
public class OpenShiftTimeoutException
extends OpenShiftEndpointException
+ + +

+

+
Author:
+
Andre Dietisheim
+
See Also:
Serialized Form
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
OpenShiftTimeoutException(String url, + Throwable e, + String message, + Object... arguments) + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class com.openshift.client.OpenShiftEndpointException
getRestResponse, getRestResponseMessage, getRestResponseMessages, getUrl
+ + + + + + + +
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+OpenShiftTimeoutException

+
+public OpenShiftTimeoutException(String url,
+                                 Throwable e,
+                                 String message,
+                                 Object... arguments)
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/OpenShiftUnknonwSSHKeyTypeException.html b/documentation/com/openshift/client/OpenShiftUnknonwSSHKeyTypeException.html new file mode 100644 index 00000000..a3fe091a --- /dev/null +++ b/documentation/com/openshift/client/OpenShiftUnknonwSSHKeyTypeException.html @@ -0,0 +1,247 @@ + + + + + + + +OpenShiftUnknonwSSHKeyTypeException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Class OpenShiftUnknonwSSHKeyTypeException

+
+java.lang.Object
+  extended by java.lang.Throwable
+      extended by java.lang.Exception
+          extended by java.lang.RuntimeException
+              extended by com.openshift.client.OpenShiftException
+                  extended by com.openshift.client.OpenShiftUnknonwSSHKeyTypeException
+
+
+
All Implemented Interfaces:
Serializable
+
+
+
+
public class OpenShiftUnknonwSSHKeyTypeException
extends OpenShiftException
+ + +

+

+
Author:
+
Andre Dietisheim
+
See Also:
Serialized Form
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
OpenShiftUnknonwSSHKeyTypeException(String message, + Object... arguments) + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+OpenShiftUnknonwSSHKeyTypeException

+
+public OpenShiftUnknonwSSHKeyTypeException(String message,
+                                           Object... arguments)
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/SSHKeyPair.html b/documentation/com/openshift/client/SSHKeyPair.html new file mode 100644 index 00000000..4e2e8a1a --- /dev/null +++ b/documentation/com/openshift/client/SSHKeyPair.html @@ -0,0 +1,368 @@ + + + + + + + +SSHKeyPair (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Class SSHKeyPair

+
+java.lang.Object
+  extended by com.openshift.internal.client.ssh.AbstractSSHKey
+      extended by com.openshift.client.SSHKeyPair
+
+
+
All Implemented Interfaces:
ISSHPublicKey
+
+
+
+
public class SSHKeyPair
extends AbstractSSHKey
+ + +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+static SSHKeyPaircreate(SSHKeyType type, + String passPhrase, + String privateKeyPath, + String publicKeyPath) + +
+          Creates private and public ssh-rsa keys and stores them to the given + paths.
+static SSHKeyPaircreate(String passPhrase, + String privateKeyPath, + String publicKeyPath) + +
+           
+ StringgetPrivateKeyPath() + +
+           
+ StringgetPublicKey() + +
+          Returns the content of the public key (key content without ssh-rsa + identifier nor comment) of the ssh key
+ StringgetPublicKeyPath() + +
+           
+static SSHKeyPairload(String privateKeyPath, + String publicKeyPath) + +
+          Loads existing private and public ssh key from the given paths.
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.ssh.AbstractSSHKey
equals, getKeyType, hashCode, setKeyType, setKeyType, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Method Detail
+ +

+create

+
+public static SSHKeyPair create(String passPhrase,
+                                String privateKeyPath,
+                                String publicKeyPath)
+                         throws OpenShiftException
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+create

+
+public static SSHKeyPair create(SSHKeyType type,
+                                String passPhrase,
+                                String privateKeyPath,
+                                String publicKeyPath)
+                         throws OpenShiftException
+
+
Creates private and public ssh-rsa keys and stores them to the given + paths. The key is created while using the given pass phrase. +

+

+
Parameters:
passPhrase - the pass phrase to set to the new key
privateKeyPath - the path where the new private key gets stored
publicKeyPath - the path where the new public key gets stored +
Returns:
+
Throws: +
OpenShiftException - if the key could not be created
+
+
+
+ +

+load

+
+public static SSHKeyPair load(String privateKeyPath,
+                              String publicKeyPath)
+                       throws OpenShiftException
+
+
Loads existing private and public ssh key from the given paths. +

+

+
Parameters:
privateKeyPath - the path to the private key
publicKeyPath - the path to the public key +
Returns:
+
Throws: +
OpenShiftException
+
+
+
+ +

+getPublicKey

+
+public String getPublicKey()
+
+
Description copied from interface: ISSHPublicKey
+
Returns the content of the public key (key content without ssh-rsa + identifier nor comment) of the ssh key +

+

+ +
Returns:
the content of the public key (without signature, without + comment)
+
+
+
+ +

+getPrivateKeyPath

+
+public String getPrivateKeyPath()
+
+
+
+
+
+
+ +

+getPublicKeyPath

+
+public String getPublicKeyPath()
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/SSHKeyType.html b/documentation/com/openshift/client/SSHKeyType.html new file mode 100644 index 00000000..0e68f9db --- /dev/null +++ b/documentation/com/openshift/client/SSHKeyType.html @@ -0,0 +1,435 @@ + + + + + + + +SSHKeyType (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Enum SSHKeyType

+
+java.lang.Object
+  extended by java.lang.Enum<SSHKeyType>
+      extended by com.openshift.client.SSHKeyType
+
+
+
All Implemented Interfaces:
Serializable, Comparable<SSHKeyType>
+
+
+
+
public enum SSHKeyType
extends Enum<SSHKeyType>
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + + + +
+Enum Constant Summary
SSH_DSA + +
+           
SSH_RSA + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+static SSHKeyTypegetByJSchKeyType(int jschKeyType) + +
+           
+static SSHKeyTypegetByJSchKeyType(com.jcraft.jsch.KeyPair keyPair) + +
+           
+static SSHKeyTypegetByTypeId(String keyTypeId) + +
+           
+ StringgetTypeId() + +
+           
+ inttoJSchKeyType() + +
+          Returns the JSch key pair constant for a given SSHKeyType.
+static SSHKeyTypevalueOf(String name) + +
+          Returns the enum constant of this type with the specified name.
+static SSHKeyType[]values() + +
+          Returns an array containing the constants of this enum type, in +the order they are declared.
+ + + + + + + +
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
+ + + + + + + +
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Enum Constant Detail
+ +

+SSH_RSA

+
+public static final SSHKeyType SSH_RSA
+
+
+
+
+
+ +

+SSH_DSA

+
+public static final SSHKeyType SSH_DSA
+
+
+
+
+ + + + + + + + +
+Method Detail
+ +

+values

+
+public static SSHKeyType[] values()
+
+
Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
+for (SSHKeyType c : SSHKeyType.values())
+    System.out.println(c);
+
+

+

+ +
Returns:
an array containing the constants of this enum type, in +the order they are declared
+
+
+
+ +

+valueOf

+
+public static SSHKeyType valueOf(String name)
+
+
Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.) +

+

+
Parameters:
name - the name of the enum constant to be returned. +
Returns:
the enum constant with the specified name +
Throws: +
IllegalArgumentException - if this enum type has no constant +with the specified name +
NullPointerException - if the argument is null
+
+
+
+ +

+getTypeId

+
+public String getTypeId()
+
+
+
+
+
+
+ +

+toJSchKeyType

+
+public int toJSchKeyType()
+
+
Returns the JSch key pair constant for a given SSHKeyType. +

+

+
Parameters:
type - the SSHKeyType that the JSch KeyPair constant will get + returned for +
Returns:
+
+
+
+ +

+getByTypeId

+
+public static SSHKeyType getByTypeId(String keyTypeId)
+                              throws OpenShiftUnknonwSSHKeyTypeException
+
+
+ +
Throws: +
OpenShiftUnknonwSSHKeyTypeException
+
+
+
+ +

+getByJSchKeyType

+
+public static SSHKeyType getByJSchKeyType(com.jcraft.jsch.KeyPair keyPair)
+                                   throws OpenShiftUnknonwSSHKeyTypeException
+
+
+ +
Throws: +
OpenShiftUnknonwSSHKeyTypeException
+
+
+
+ +

+getByJSchKeyType

+
+public static SSHKeyType getByJSchKeyType(int jschKeyType)
+                                   throws OpenShiftUnknonwSSHKeyTypeException
+
+
+ +
Throws: +
OpenShiftUnknonwSSHKeyTypeException
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/SSHPublicKey.html b/documentation/com/openshift/client/SSHPublicKey.html new file mode 100644 index 00000000..fc75021e --- /dev/null +++ b/documentation/com/openshift/client/SSHPublicKey.html @@ -0,0 +1,309 @@ + + + + + + + +SSHPublicKey (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client +
+Class SSHPublicKey

+
+java.lang.Object
+  extended by com.openshift.internal.client.ssh.AbstractSSHKey
+      extended by com.openshift.client.SSHPublicKey
+
+
+
All Implemented Interfaces:
ISSHPublicKey
+
+
+
+
public class SSHPublicKey
extends AbstractSSHKey
+ + +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + +
+Constructor Summary
SSHPublicKey(File publicKeyFile) + +
+           
SSHPublicKey(String publicKeyFilePath) + +
+           
+  + + + + + + + + + + + +
+Method Summary
+ StringgetPublicKey() + +
+          Returns the content of the public key (key content without ssh-rsa + identifier nor comment) of the ssh key
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.ssh.AbstractSSHKey
equals, getKeyType, hashCode, setKeyType, setKeyType, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+SSHPublicKey

+
+public SSHPublicKey(String publicKeyFilePath)
+             throws FileNotFoundException,
+                    OpenShiftException,
+                    IOException
+
+
+ +
Throws: +
FileNotFoundException +
OpenShiftException +
IOException
+
+
+ +

+SSHPublicKey

+
+public SSHPublicKey(File publicKeyFile)
+             throws FileNotFoundException,
+                    OpenShiftException,
+                    IOException
+
+
+ +
Throws: +
FileNotFoundException +
OpenShiftException +
IOException
+
+ + + + + + + + +
+Method Detail
+ +

+getPublicKey

+
+public String getPublicKey()
+
+
Description copied from interface: ISSHPublicKey
+
Returns the content of the public key (key content without ssh-rsa + identifier nor comment) of the ssh key +

+

+ +
Returns:
the content of the public key (without signature, without + comment)
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/EmbeddableCartridge.html b/documentation/com/openshift/client/cartridge/EmbeddableCartridge.html new file mode 100644 index 00000000..149eb4b8 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/EmbeddableCartridge.html @@ -0,0 +1,367 @@ + + + + + + + +EmbeddableCartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.cartridge +
+Class EmbeddableCartridge

+
+java.lang.Object
+  extended by com.openshift.internal.client.cartridge.BaseCartridge
+      extended by com.openshift.client.cartridge.EmbeddableCartridge
+
+
+
All Implemented Interfaces:
ICartridge, IEmbeddableCartridge
+
+
+
+
public class EmbeddableCartridge
extends BaseCartridge
implements IEmbeddableCartridge
+ + +

+An cartridge that may be embedded (added) into an application. Add-on + cartridge is an equivalent name for embedded cartridge. +

+ +

+

+
Author:
+
Xavier Coulon
+
See Also:
for cartridges that have already been added and + configured to an application.
+
+ +

+ + + + + + + +
+Field Summary
+ + + + + + + +
Fields inherited from interface com.openshift.client.cartridge.IEmbeddableCartridge
NAME_10GEN_MMS_AGENT, NAME_CRON, NAME_HAPROXY, NAME_JENKINS_CLIENT, NAME_METRICS, NAME_MONGODB, NAME_MYSQL, NAME_PHPMYADMIN, NAME_POSTGRESQL, NAME_ROCKMONGO, NAME_SWITCHYARD
+ + + + + + + +
Fields inherited from interface com.openshift.client.cartridge.ICartridge
NAME_VERSION_DELIMITER
+  + + + + + + + + + + + + + + + + + + + +
+Constructor Summary
EmbeddableCartridge(String name) + +
+           
EmbeddableCartridge(String name, + String displayName, + String description) + +
+          Constructor used when available cartridges are loaded from OpenShift
EmbeddableCartridge(String name, + URL url) + +
+           
EmbeddableCartridge(URL url) + +
+           
+  + + + + + + + + + + + +
+Method Summary
+ booleanequals(Object obj) + +
+           
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.cartridge.BaseCartridge
getDescription, getDisplayName, getName, getUrl, hashCode, isDownloadable, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
+ + + + + + + +
Methods inherited from interface com.openshift.client.cartridge.ICartridge
getDescription, getDisplayName, getName, getUrl, isDownloadable
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+EmbeddableCartridge

+
+public EmbeddableCartridge(String name)
+
+
+
+ +

+EmbeddableCartridge

+
+public EmbeddableCartridge(URL url)
+
+
+
+ +

+EmbeddableCartridge

+
+public EmbeddableCartridge(String name,
+                           URL url)
+
+
+
+ +

+EmbeddableCartridge

+
+public EmbeddableCartridge(String name,
+                           String displayName,
+                           String description)
+
+
Constructor used when available cartridges are loaded from OpenShift +

+

+
See Also:
APIResource.getEmbeddableCartridges()
+
+ + + + + + + + +
+Method Detail
+ +

+equals

+
+public boolean equals(Object obj)
+
+
+
Overrides:
equals in class BaseCartridge
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/ICartridge.html b/documentation/com/openshift/client/cartridge/ICartridge.html new file mode 100644 index 00000000..a1f7378c --- /dev/null +++ b/documentation/com/openshift/client/cartridge/ICartridge.html @@ -0,0 +1,355 @@ + + + + + + + +ICartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.cartridge +
+Interface ICartridge

+
+
All Known Subinterfaces:
IEmbeddableCartridge, IEmbeddedCartridge, IStandaloneCartridge
+
+
+
All Known Implementing Classes:
BaseCartridge, EmbeddableCartridge, EmbeddedCartridgeResource, StandaloneCartridge
+
+
+
+
public interface ICartridge
+ + +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + + + + + +
+Field Summary
+static charNAME_VERSION_DELIMITER + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ StringgetDescription() + +
+          Returns a description for this cartridge
+ StringgetDisplayName() + +
+          Returns a (human readable, nice) display name for this cartridge
+ StringgetName() + +
+          Returns the name of this cartridge
+ URLgetUrl() + +
+          Returns the url at which the code for this cartridge may get downloaded.
+ booleanisDownloadable() + +
+          Returns true if this is a downloadable cartridge whose code + may be downloaded at the url returned by getUrl() (cartridge + code will get downloaded upon creation).
+  +

+ + + + + + + + +
+Field Detail
+ +

+NAME_VERSION_DELIMITER

+
+static final char NAME_VERSION_DELIMITER
+
+
+
See Also:
Constant Field Values
+
+ + + + + + + + +
+Method Detail
+ +

+getName

+
+String getName()
+
+
Returns the name of this cartridge +

+

+ +
Returns:
the name
+
+
+
+ +

+getDisplayName

+
+String getDisplayName()
+
+
Returns a (human readable, nice) display name for this cartridge +

+

+ +
Returns:
the display name
+
+
+
+ +

+getDescription

+
+String getDescription()
+
+
Returns a description for this cartridge +

+

+ +
Returns:
the description
+
+
+
+ +

+isDownloadable

+
+boolean isDownloadable()
+
+
Returns true if this is a downloadable cartridge whose code + may be downloaded at the url returned by getUrl() (cartridge + code will get downloaded upon creation). + Examples: +
    +
  • go standalone cartridge (https://github.com/smarterclayton/openshift-go-cart)
  • +
  • redis embedded cartridge (https://github.com/smarterclayton/openshift-redis-cart)
  • +
  • foreman embedded cartridge (https://github.com/ncdc/openshift-foreman-cartridge)
  • +
+

+

+ +
Returns:
true if this is a downloadable cartridge
See Also:
getUrl()
+
+
+
+ +

+getUrl

+
+URL getUrl()
+
+
Returns the url at which the code for this cartridge may get downloaded. + Returns null if this is not a downloadable cartridge. +

+

+ +
Returns:
the url if downloadable cartridge or null
See Also:
isDownloadable()
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/IEmbeddableCartridge.html b/documentation/com/openshift/client/cartridge/IEmbeddableCartridge.html new file mode 100644 index 00000000..cfe8eca9 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/IEmbeddableCartridge.html @@ -0,0 +1,426 @@ + + + + + + + +IEmbeddableCartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.cartridge +
+Interface IEmbeddableCartridge

+
+
All Superinterfaces:
ICartridge
+
+
+
All Known Subinterfaces:
IEmbeddedCartridge
+
+
+
All Known Implementing Classes:
EmbeddableCartridge, EmbeddedCartridgeResource
+
+
+
+
public interface IEmbeddableCartridge
extends ICartridge
+ + +

+

+
Author:
+
Xavier Coulon, Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Field Summary
+static StringNAME_10GEN_MMS_AGENT + +
+           
+static StringNAME_CRON + +
+           
+static StringNAME_HAPROXY + +
+           
+static StringNAME_JENKINS_CLIENT + +
+           
+static StringNAME_METRICS + +
+           
+static StringNAME_MONGODB + +
+           
+static StringNAME_MYSQL + +
+           
+static StringNAME_PHPMYADMIN + +
+           
+static StringNAME_POSTGRESQL + +
+           
+static StringNAME_ROCKMONGO + +
+           
+static StringNAME_SWITCHYARD + +
+           
+ + + + + + + +
Fields inherited from interface com.openshift.client.cartridge.ICartridge
NAME_VERSION_DELIMITER
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from interface com.openshift.client.cartridge.ICartridge
getDescription, getDisplayName, getName, getUrl, isDownloadable
+  +

+ + + + + + + + +
+Field Detail
+ +

+NAME_10GEN_MMS_AGENT

+
+static final String NAME_10GEN_MMS_AGENT
+
+
+
See Also:
Constant Field Values
+
+
+ +

+NAME_CRON

+
+static final String NAME_CRON
+
+
+
See Also:
Constant Field Values
+
+
+ +

+NAME_HAPROXY

+
+static final String NAME_HAPROXY
+
+
+
See Also:
Constant Field Values
+
+
+ +

+NAME_JENKINS_CLIENT

+
+static final String NAME_JENKINS_CLIENT
+
+
+
See Also:
Constant Field Values
+
+
+ +

+NAME_METRICS

+
+static final String NAME_METRICS
+
+
+
See Also:
Constant Field Values
+
+
+ +

+NAME_MONGODB

+
+static final String NAME_MONGODB
+
+
+
See Also:
Constant Field Values
+
+
+ +

+NAME_PHPMYADMIN

+
+static final String NAME_PHPMYADMIN
+
+
+
See Also:
Constant Field Values
+
+
+ +

+NAME_POSTGRESQL

+
+static final String NAME_POSTGRESQL
+
+
+
See Also:
Constant Field Values
+
+
+ +

+NAME_MYSQL

+
+static final String NAME_MYSQL
+
+
+
See Also:
Constant Field Values
+
+
+ +

+NAME_ROCKMONGO

+
+static final String NAME_ROCKMONGO
+
+
+
See Also:
Constant Field Values
+
+
+ +

+NAME_SWITCHYARD

+
+static final String NAME_SWITCHYARD
+
+
+
See Also:
Constant Field Values
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/IEmbeddedCartridge.html b/documentation/com/openshift/client/cartridge/IEmbeddedCartridge.html new file mode 100644 index 00000000..5ae9be4a --- /dev/null +++ b/documentation/com/openshift/client/cartridge/IEmbeddedCartridge.html @@ -0,0 +1,352 @@ + + + + + + + +IEmbeddedCartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.cartridge +
+Interface IEmbeddedCartridge

+
+
All Superinterfaces:
ICartridge, IEmbeddableCartridge, IOpenShiftResource
+
+
+
All Known Implementing Classes:
EmbeddedCartridgeResource
+
+
+
+
public interface IEmbeddedCartridge
extends IOpenShiftResource, IEmbeddableCartridge
+ + +

+Interface to designate a cartridge that has been added and configured +

+ +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + +
+Field Summary
+ + + + + + + +
Fields inherited from interface com.openshift.client.cartridge.IEmbeddableCartridge
NAME_10GEN_MMS_AGENT, NAME_CRON, NAME_HAPROXY, NAME_JENKINS_CLIENT, NAME_METRICS, NAME_MONGODB, NAME_MYSQL, NAME_PHPMYADMIN, NAME_POSTGRESQL, NAME_ROCKMONGO, NAME_SWITCHYARD
+ + + + + + + +
Fields inherited from interface com.openshift.client.cartridge.ICartridge
NAME_VERSION_DELIMITER
+  + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ voiddestroy() + +
+          Destroys this cartridge (and removes it from the list of existing cartridges)
+ IApplicationgetApplication() + +
+          Returns the application this cartridge is embedded into.
+ CartridgeResourcePropertiesgetProperties() + +
+          Returns the properties for this embedded cartridge
+ URLgetUrl() + +
+          The url at which this cartridge may be reached
+ + + + + + + +
Methods inherited from interface com.openshift.client.IOpenShiftResource
getCreationLog, getMessages, hasCreationLog, refresh
+ + + + + + + +
Methods inherited from interface com.openshift.client.cartridge.ICartridge
getDescription, getDisplayName, getName, isDownloadable
+  +

+ + + + + + + + +
+Method Detail
+ +

+getUrl

+
+URL getUrl()
+           throws OpenShiftException
+
+
The url at which this cartridge may be reached +

+

+
Specified by:
getUrl in interface ICartridge
+
+
+ +
Returns:
the url for this cartridge +
Throws: +
OpenShiftException
See Also:
ICartridge.isDownloadable()
+
+
+
+ +

+destroy

+
+void destroy()
+             throws OpenShiftException
+
+
Destroys this cartridge (and removes it from the list of existing cartridges) +

+

+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getApplication

+
+IApplication getApplication()
+
+
Returns the application this cartridge is embedded into. +

+

+
+
+
+ +
Returns:
application this is embedded into
+
+
+
+ +

+getProperties

+
+CartridgeResourceProperties getProperties()
+
+
Returns the properties for this embedded cartridge +

+

+
+
+
+ +
Returns:
the resource properties
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/IStandaloneCartridge.html b/documentation/com/openshift/client/cartridge/IStandaloneCartridge.html new file mode 100644 index 00000000..7deed486 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/IStandaloneCartridge.html @@ -0,0 +1,387 @@ + + + + + + + +IStandaloneCartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.cartridge +
+Interface IStandaloneCartridge

+
+
All Superinterfaces:
ICartridge
+
+
+
All Known Implementing Classes:
StandaloneCartridge
+
+
+
+
public interface IStandaloneCartridge
extends ICartridge
+ + +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Field Summary
+static StringNAME_JBOSSAS + +
+           
+static StringNAME_JBOSSEAP + +
+           
+static StringNAME_JBOSSEWS + +
+           
+static StringNAME_JENKINS + +
+           
+static StringNAME_PERL + +
+           
+static StringNAME_PHP + +
+           
+static StringNAME_PYTHON + +
+           
+static StringNAME_RUBY + +
+           
+static StringNAME_ZEND + +
+           
+ + + + + + + +
Fields inherited from interface com.openshift.client.cartridge.ICartridge
NAME_VERSION_DELIMITER
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from interface com.openshift.client.cartridge.ICartridge
getDescription, getDisplayName, getName, getUrl, isDownloadable
+  +

+ + + + + + + + +
+Field Detail
+ +

+NAME_JBOSSEWS

+
+static final String NAME_JBOSSEWS
+
+
+
See Also:
Constant Field Values
+
+
+ +

+NAME_JBOSSAS

+
+static final String NAME_JBOSSAS
+
+
+
See Also:
Constant Field Values
+
+
+ +

+NAME_JBOSSEAP

+
+static final String NAME_JBOSSEAP
+
+
+
See Also:
Constant Field Values
+
+
+ +

+NAME_JENKINS

+
+static final String NAME_JENKINS
+
+
+
See Also:
Constant Field Values
+
+
+ +

+NAME_PERL

+
+static final String NAME_PERL
+
+
+
See Also:
Constant Field Values
+
+
+ +

+NAME_PHP

+
+static final String NAME_PHP
+
+
+
See Also:
Constant Field Values
+
+
+ +

+NAME_PYTHON

+
+static final String NAME_PYTHON
+
+
+
See Also:
Constant Field Values
+
+
+ +

+NAME_RUBY

+
+static final String NAME_RUBY
+
+
+
See Also:
Constant Field Values
+
+
+ +

+NAME_ZEND

+
+static final String NAME_ZEND
+
+
+
See Also:
Constant Field Values
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/StandaloneCartridge.html b/documentation/com/openshift/client/cartridge/StandaloneCartridge.html new file mode 100644 index 00000000..ef0093c7 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/StandaloneCartridge.html @@ -0,0 +1,351 @@ + + + + + + + +StandaloneCartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.cartridge +
+Class StandaloneCartridge

+
+java.lang.Object
+  extended by com.openshift.internal.client.cartridge.BaseCartridge
+      extended by com.openshift.client.cartridge.StandaloneCartridge
+
+
+
All Implemented Interfaces:
ICartridge, IStandaloneCartridge
+
+
+
+
public class StandaloneCartridge
extends BaseCartridge
implements IStandaloneCartridge
+ + +

+A cartridge that is available on the openshift server. This class is no enum + since we dont know all available types and they may change at any time. +

+ +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + +
+Field Summary
+ + + + + + + +
Fields inherited from interface com.openshift.client.cartridge.IStandaloneCartridge
NAME_JBOSSAS, NAME_JBOSSEAP, NAME_JBOSSEWS, NAME_JENKINS, NAME_PERL, NAME_PHP, NAME_PYTHON, NAME_RUBY, NAME_ZEND
+ + + + + + + +
Fields inherited from interface com.openshift.client.cartridge.ICartridge
NAME_VERSION_DELIMITER
+  + + + + + + + + + + + + + + + + + + + + + + +
+Constructor Summary
StandaloneCartridge(String name) + +
+           
StandaloneCartridge(String name, + String displayName, + String description) + +
+           
StandaloneCartridge(String name, + URL url) + +
+           
StandaloneCartridge(String name, + URL url, + String displayName, + String description) + +
+           
StandaloneCartridge(URL url) + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.cartridge.BaseCartridge
equals, getDescription, getDisplayName, getName, getUrl, hashCode, isDownloadable, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
+ + + + + + + +
Methods inherited from interface com.openshift.client.cartridge.ICartridge
getDescription, getDisplayName, getName, getUrl, isDownloadable
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+StandaloneCartridge

+
+public StandaloneCartridge(String name)
+
+
+
+ +

+StandaloneCartridge

+
+public StandaloneCartridge(URL url)
+
+
+
+ +

+StandaloneCartridge

+
+public StandaloneCartridge(String name,
+                           URL url)
+
+
+
+ +

+StandaloneCartridge

+
+public StandaloneCartridge(String name,
+                           String displayName,
+                           String description)
+
+
+
+ +

+StandaloneCartridge

+
+public StandaloneCartridge(String name,
+                           URL url,
+                           String displayName,
+                           String description)
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/class-use/EmbeddableCartridge.html b/documentation/com/openshift/client/cartridge/class-use/EmbeddableCartridge.html new file mode 100644 index 00000000..846f7251 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/class-use/EmbeddableCartridge.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.client.cartridge.EmbeddableCartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.cartridge.EmbeddableCartridge

+
+No usage of com.openshift.client.cartridge.EmbeddableCartridge +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/class-use/ICartridge.html b/documentation/com/openshift/client/cartridge/class-use/ICartridge.html new file mode 100644 index 00000000..5d160a0f --- /dev/null +++ b/documentation/com/openshift/client/cartridge/class-use/ICartridge.html @@ -0,0 +1,552 @@ + + + + + + + +Uses of Interface com.openshift.client.cartridge.ICartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Interface
com.openshift.client.cartridge.ICartridge

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Packages that use ICartridge
com.openshift.client  
com.openshift.client.cartridge  
com.openshift.client.cartridge.selector  
com.openshift.client.utils  
com.openshift.internal.client  
com.openshift.internal.client.cartridge  
+  +

+ + + + + +
+Uses of ICartridge in com.openshift.client
+  +

+ + + + + + + + + +
Methods in com.openshift.client that return types with arguments of type ICartridge
+ Collection<ICartridge>IGearGroup.getCartridges() + +
+          Returns the cartridges in this gear group resource
+  +

+ + + + + +
+Uses of ICartridge in com.openshift.client.cartridge
+  +

+ + + + + + + + + + + + + + + + + +
Subinterfaces of ICartridge in com.openshift.client.cartridge
+ interfaceIEmbeddableCartridge + +
+           
+ interfaceIEmbeddedCartridge + +
+          Interface to designate a cartridge that has been added and configured
+ interfaceIStandaloneCartridge + +
+           
+  +

+ + + + + + + + + + + + + +
Classes in com.openshift.client.cartridge that implement ICartridge
+ classEmbeddableCartridge + +
+          An cartridge that may be embedded (added) into an application.
+ classStandaloneCartridge + +
+          A cartridge that is available on the openshift server.
+  +

+ + + + + +
+Uses of ICartridge in com.openshift.client.cartridge.selector
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client.cartridge.selector with type parameters of type ICartridge
+ + + + + +
+<C extends ICartridge> +
+C
+
LatestVersionQuery.get(Collection<C> cartridges) + +
+           
+ + + + + +
+<C extends ICartridge> +
+Collection<C>
+
LatestVersionQuery.getAll(Collection<C> cartridges) + +
+           
+protected + + + + +
+<C extends ICartridge> +
+C
+
LatestVersionQuery.getLatest(Collection<C> matchingCartridges) + +
+           
+protected abstract + + + + +
+<C extends ICartridge> +
+String
+
StringPropertyQuery.getProperty(C cartridge) + +
+           
+ + + + + +
+<C extends ICartridge> +
+boolean
+
StringPropertyQuery.matches(C cartridge) + +
+           
+ + + + + +
+<C extends ICartridge> +
+boolean
+
LatestVersionQuery.matches(C cartridge) + +
+           
+  +

+ + + + + +
+Uses of ICartridge in com.openshift.client.utils
+  +

+ + + + + + + + + +
Methods in com.openshift.client.utils with parameters of type ICartridge
+static List<String>OpenShiftResourceUtils.toNames(ICartridge... cartridges) + +
+           
+  +

+ + + + + +
+Uses of ICartridge in com.openshift.internal.client
+  +

+ + + + + + + + + +
Classes in com.openshift.internal.client that implement ICartridge
+ classEmbeddedCartridgeResource + +
+          A cartridge that is embedded into an application.
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client that return ICartridge
+protected  ICartridgeApplicationResource.getCartridge(String cartridgeName) + +
+          Returns the main (standalone) cartrige or one of the embedded cartridges + whose name matches the given param.
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client that return types with arguments of type ICartridge
+ Collection<ICartridge>GearGroupResource.getCartridges() + +
+           
+  +

+ + + + + +
+Uses of ICartridge in com.openshift.internal.client.cartridge
+  +

+ + + + + + + + + +
Classes in com.openshift.internal.client.cartridge that implement ICartridge
+ classBaseCartridge + +
+          A (base) cartridge for an OpenShift application.
+  +

+ + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client.cartridge with type parameters of type ICartridge
+ + + + + +
+<C extends ICartridge> +
+C
+
AbstractCartridgeQuery.get(Collection<C> cartridges) + +
+           
+ + + + + +
+<C extends ICartridge> +
+Collection<C>
+
AbstractCartridgeQuery.getAll(Collection<C> cartridges) + +
+           
+abstract + + + + +
+<C extends ICartridge> +
+boolean
+
AbstractCartridgeQuery.matches(C cartridge) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/class-use/IEmbeddableCartridge.html b/documentation/com/openshift/client/cartridge/class-use/IEmbeddableCartridge.html new file mode 100644 index 00000000..bedc222d --- /dev/null +++ b/documentation/com/openshift/client/cartridge/class-use/IEmbeddableCartridge.html @@ -0,0 +1,516 @@ + + + + + + + +Uses of Interface com.openshift.client.cartridge.IEmbeddableCartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Interface
com.openshift.client.cartridge.IEmbeddableCartridge

+
+ + + + + + + + + + + + + + + + + + + + + +
+Packages that use IEmbeddableCartridge
com.openshift.client  
com.openshift.client.cartridge  
com.openshift.client.cartridge.selector  
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of IEmbeddableCartridge in com.openshift.client
+  +

+ + + + + + + + + +
Methods in com.openshift.client that return types with arguments of type IEmbeddableCartridge
+ List<IEmbeddableCartridge>IOpenShiftConnection.getEmbeddableCartridges() + +
+          Returns the available embeddable cartridges associated with the current + OpenShift connection.
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client with parameters of type IEmbeddableCartridge
+ IEmbeddedCartridgeIApplication.addEmbeddableCartridge(IEmbeddableCartridge cartridge) + +
+          Adds the given embeddable cartridge to this application.
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + IEmbeddableCartridge... cartridges) + +
+          Creates a new application with the given name and the given + cartridge/framework.
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + Map<String,String> environmentVariable, + IEmbeddableCartridge... cartridges) + +
+          Creates a new application with the given name and the given + cartridge/framework.
+ IEmbeddedCartridgeIApplication.getEmbeddedCartridge(IEmbeddableCartridge cartridge) + +
+          Returns the embedded cartridge in this application.
+ booleanIApplication.hasEmbeddedCartridge(IEmbeddableCartridge cartridge) + +
+          Returns true if this application has an embedded cartridge.
+ voidIApplication.removeEmbeddedCartridge(IEmbeddableCartridge cartridge) + +
+          Removes the given embedded cartridge that is equal to the given + embeddable cartridge.
+  +

+ + + + + + + + + + + + + +
Method parameters in com.openshift.client with type arguments of type IEmbeddableCartridge
+ List<IEmbeddedCartridge>IApplication.addEmbeddableCartridges(Collection<IEmbeddableCartridge> cartridge) + +
+          Adds all given embedded cartridges from this app, given their names.
+ voidIApplication.removeEmbeddedCartridges(Collection<IEmbeddableCartridge> cartridges) + +
+          Removes the given embedded cartridges in this application that are equal to the + given IEmbeddableCartridge.
+  +

+ + + + + +
+Uses of IEmbeddableCartridge in com.openshift.client.cartridge
+  +

+ + + + + + + + + +
Subinterfaces of IEmbeddableCartridge in com.openshift.client.cartridge
+ interfaceIEmbeddedCartridge + +
+          Interface to designate a cartridge that has been added and configured
+  +

+ + + + + + + + + +
Classes in com.openshift.client.cartridge that implement IEmbeddableCartridge
+ classEmbeddableCartridge + +
+          An cartridge that may be embedded (added) into an application.
+  +

+ + + + + +
+Uses of IEmbeddableCartridge in com.openshift.client.cartridge.selector
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.client.cartridge.selector that return IEmbeddableCartridge
+ IEmbeddableCartridgeLatestEmbeddableCartridge.get(IApplication application) + +
+           
+ IEmbeddableCartridgeLatestEmbeddableCartridge.get(IUser user) + +
+           
+  +

+ + + + + +
+Uses of IEmbeddableCartridge in com.openshift.internal.client
+  +

+ + + + + + + + + +
Classes in com.openshift.internal.client that implement IEmbeddableCartridge
+ classEmbeddedCartridgeResource + +
+          A cartridge that is embedded into an application.
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client that return types with arguments of type IEmbeddableCartridge
+ List<IEmbeddableCartridge>APIResource.getEmbeddableCartridges() + +
+           
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client with parameters of type IEmbeddableCartridge
+protected  AbstractOpenShiftResource.ParametersAbstractOpenShiftResource.Parameters.addCartridge(IEmbeddableCartridge embeddable) + +
+           
+protected  AbstractOpenShiftResource.ParametersAbstractOpenShiftResource.Parameters.addCartridges(IStandaloneCartridge standalone, + IEmbeddableCartridge[] embeddables) + +
+           
+ IEmbeddedCartridgeApplicationResource.addEmbeddableCartridge(IEmbeddableCartridge cartridge) + +
+          Adds the given embedded cartridge to this application.
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + IEmbeddableCartridge... cartridges) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + Map<String,String> environmentVariables, + IEmbeddableCartridge... cartridges) + +
+           
+ IEmbeddedCartridgeApplicationResource.getEmbeddedCartridge(IEmbeddableCartridge cartridge) + +
+           
+ booleanApplicationResource.hasEmbeddedCartridge(IEmbeddableCartridge cartridge) + +
+           
+ voidApplicationResource.removeEmbeddedCartridge(IEmbeddableCartridge cartridge) + +
+           
+  +

+ + + + + + + + + + + + + +
Method parameters in com.openshift.internal.client with type arguments of type IEmbeddableCartridge
+ List<IEmbeddedCartridge>ApplicationResource.addEmbeddableCartridges(Collection<IEmbeddableCartridge> cartridges) + +
+           
+ voidApplicationResource.removeEmbeddedCartridges(Collection<IEmbeddableCartridge> cartridges) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/class-use/IEmbeddedCartridge.html b/documentation/com/openshift/client/cartridge/class-use/IEmbeddedCartridge.html new file mode 100644 index 00000000..21afcc05 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/class-use/IEmbeddedCartridge.html @@ -0,0 +1,359 @@ + + + + + + + +Uses of Interface com.openshift.client.cartridge.IEmbeddedCartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Interface
com.openshift.client.cartridge.IEmbeddedCartridge

+
+ + + + + + + + + + + + + + + + + +
+Packages that use IEmbeddedCartridge
com.openshift.client  
com.openshift.client.cartridge.selector  
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of IEmbeddedCartridge in com.openshift.client
+  +

+ + + + + + + + + + + + + + + + + +
Methods in com.openshift.client that return IEmbeddedCartridge
+ IEmbeddedCartridgeIApplication.addEmbeddableCartridge(IEmbeddableCartridge cartridge) + +
+          Adds the given embeddable cartridge to this application.
+ IEmbeddedCartridgeIApplication.getEmbeddedCartridge(IEmbeddableCartridge cartridge) + +
+          Returns the embedded cartridge in this application.
+ IEmbeddedCartridgeIApplication.getEmbeddedCartridge(String cartridgeName) + +
+          Returns the embedded cartridge given its name.
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.client that return types with arguments of type IEmbeddedCartridge
+ List<IEmbeddedCartridge>IApplication.addEmbeddableCartridges(Collection<IEmbeddableCartridge> cartridge) + +
+          Adds all given embedded cartridges from this app, given their names.
+ List<IEmbeddedCartridge>IApplication.getEmbeddedCartridges() + +
+          Returns all embedded cartridges.
+  +

+ + + + + +
+Uses of IEmbeddedCartridge in com.openshift.client.cartridge.selector
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.client.cartridge.selector with parameters of type IEmbeddedCartridge
+ CartridgeResourcePropertyUrlPropertyQuery.getMatchingProperty(IEmbeddedCartridge embeddedCartridge) + +
+           
+abstract  CartridgeResourcePropertyCartridgePropertyQuery.getMatchingProperty(IEmbeddedCartridge embeddedCartridge) + +
+           
+  +

+ + + + + +
+Uses of IEmbeddedCartridge in com.openshift.internal.client
+  +

+ + + + + + + + + +
Classes in com.openshift.internal.client that implement IEmbeddedCartridge
+ classEmbeddedCartridgeResource + +
+          A cartridge that is embedded into an application.
+  +

+ + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client that return IEmbeddedCartridge
+ IEmbeddedCartridgeApplicationResource.addEmbeddableCartridge(IEmbeddableCartridge cartridge) + +
+          Adds the given embedded cartridge to this application.
+ IEmbeddedCartridgeApplicationResource.getEmbeddedCartridge(IEmbeddableCartridge cartridge) + +
+           
+ IEmbeddedCartridgeApplicationResource.getEmbeddedCartridge(String cartridgeName) + +
+           
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.internal.client that return types with arguments of type IEmbeddedCartridge
+ List<IEmbeddedCartridge>ApplicationResource.addEmbeddableCartridges(Collection<IEmbeddableCartridge> cartridges) + +
+           
+ List<IEmbeddedCartridge>ApplicationResource.getEmbeddedCartridges() + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client with parameters of type IEmbeddedCartridge
+protected  voidApplicationResource.removeEmbeddedCartridge(IEmbeddedCartridge embeddedCartridge) + +
+          "callback" from the embeddedCartridge once it has been destroyed.
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/class-use/IStandaloneCartridge.html b/documentation/com/openshift/client/cartridge/class-use/IStandaloneCartridge.html new file mode 100644 index 00000000..68a2e776 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/class-use/IStandaloneCartridge.html @@ -0,0 +1,597 @@ + + + + + + + +Uses of Interface com.openshift.client.cartridge.IStandaloneCartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Interface
com.openshift.client.cartridge.IStandaloneCartridge

+
+ + + + + + + + + + + + + + + + + + + + + +
+Packages that use IStandaloneCartridge
com.openshift.client  
com.openshift.client.cartridge  
com.openshift.client.cartridge.selector  
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of IStandaloneCartridge in com.openshift.client
+  +

+ + + + + + + + + +
Methods in com.openshift.client that return IStandaloneCartridge
+ IStandaloneCartridgeIApplication.getCartridge() + +
+          Returns the cartridge (application type) that this app is running on.
+  +

+ + + + + + + + + +
Methods in com.openshift.client that return types with arguments of type IStandaloneCartridge
+ List<IStandaloneCartridge>IOpenShiftConnection.getStandaloneCartridges() + +
+          Returns the available standalone cartridges associated with the current + OpenShift connection.
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client with parameters of type IStandaloneCartridge
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge) + +
+           
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale) + +
+           
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile) + +
+           
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl) + +
+          Creates a new application with the given name and the given + cartridge/framework.
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + IEmbeddableCartridge... cartridges) + +
+          Creates a new application with the given name and the given + cartridge/framework.
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + Map<String,String> environmentVariable, + IEmbeddableCartridge... cartridges) + +
+          Creates a new application with the given name and the given + cartridge/framework.
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + IGearProfile gearProfile) + +
+           
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + String initialGitUrl) + +
+           
+ List<IApplication>IDomain.getApplicationsByCartridge(IStandaloneCartridge cartridge) + +
+           
+ booleanIDomain.hasApplicationByCartridge(IStandaloneCartridge cartridge) + +
+           
+ ApplicationBuilder.CartridgeHolderApplicationBuilder.setCartridge(IStandaloneCartridge cartridge) + +
+           
+  +

+ + + + + +
+Uses of IStandaloneCartridge in com.openshift.client.cartridge
+  +

+ + + + + + + + + +
Classes in com.openshift.client.cartridge that implement IStandaloneCartridge
+ classStandaloneCartridge + +
+          A cartridge that is available on the openshift server.
+  +

+ + + + + +
+Uses of IStandaloneCartridge in com.openshift.client.cartridge.selector
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.client.cartridge.selector that return IStandaloneCartridge
+ IStandaloneCartridgeLatestStandaloneCartridge.get(IApplication application) + +
+           
+ IStandaloneCartridgeLatestStandaloneCartridge.get(IUser user) + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.client.cartridge.selector that return types with arguments of type IStandaloneCartridge
+ Collection<IStandaloneCartridge>LatestVersionQuery.allStandaloneCartridges(IApplication application) + +
+           
+  +

+ + + + + +
+Uses of IStandaloneCartridge in com.openshift.internal.client
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client that return IStandaloneCartridge
+ IStandaloneCartridgeApplicationResource.getCartridge() + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client that return types with arguments of type IStandaloneCartridge
+ List<IStandaloneCartridge>APIResource.getStandaloneCartridges() + +
+           
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client with parameters of type IStandaloneCartridge
+protected  AbstractOpenShiftResource.ParametersAbstractOpenShiftResource.Parameters.addCartridges(IStandaloneCartridge standalone, + IEmbeddableCartridge[] embeddables) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + IEmbeddableCartridge... cartridges) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + Map<String,String> environmentVariables, + IEmbeddableCartridge... cartridges) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + String initialGitUrl) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + IGearProfile gearProfile) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + IGearProfile gearProfile, + String initialGitUrl) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + String initialGitUrl) + +
+           
+ List<IApplication>DomainResource.getApplicationsByCartridge(IStandaloneCartridge cartridge) + +
+           
+ booleanDomainResource.hasApplicationByCartridge(IStandaloneCartridge cartridge) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/class-use/StandaloneCartridge.html b/documentation/com/openshift/client/cartridge/class-use/StandaloneCartridge.html new file mode 100644 index 00000000..aa072e75 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/class-use/StandaloneCartridge.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.client.cartridge.StandaloneCartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.cartridge.StandaloneCartridge

+
+No usage of com.openshift.client.cartridge.StandaloneCartridge +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/package-frame.html b/documentation/com/openshift/client/cartridge/package-frame.html new file mode 100644 index 00000000..c93d2d3e --- /dev/null +++ b/documentation/com/openshift/client/cartridge/package-frame.html @@ -0,0 +1,52 @@ + + + + + + + +com.openshift.client.cartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + +com.openshift.client.cartridge + + + + +
+Interfaces  + +
+ICartridge +
+IEmbeddableCartridge +
+IEmbeddedCartridge +
+IStandaloneCartridge
+ + + + + + +
+Classes  + +
+EmbeddableCartridge +
+StandaloneCartridge
+ + + + diff --git a/documentation/com/openshift/client/cartridge/package-summary.html b/documentation/com/openshift/client/cartridge/package-summary.html new file mode 100644 index 00000000..76678ebe --- /dev/null +++ b/documentation/com/openshift/client/cartridge/package-summary.html @@ -0,0 +1,188 @@ + + + + + + + +com.openshift.client.cartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+

+Package com.openshift.client.cartridge +

+ + + + + + + + + + + + + + + + + + + + + +
+Interface Summary
ICartridge 
IEmbeddableCartridge 
IEmbeddedCartridgeInterface to designate a cartridge that has been added and configured
IStandaloneCartridge 
+  + +

+ + + + + + + + + + + + + +
+Class Summary
EmbeddableCartridgeAn cartridge that may be embedded (added) into an application.
StandaloneCartridgeA cartridge that is available on the openshift server.
+  + +

+

+
+
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/package-tree.html b/documentation/com/openshift/client/cartridge/package-tree.html new file mode 100644 index 00000000..16aeff97 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/package-tree.html @@ -0,0 +1,172 @@ + + + + + + + +com.openshift.client.cartridge Class Hierarchy (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Hierarchy For Package com.openshift.client.cartridge +

+
+
+
Package Hierarchies:
All Packages
+
+

+Class Hierarchy +

+ +

+Interface Hierarchy +

+ +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/package-use.html b/documentation/com/openshift/client/cartridge/package-use.html new file mode 100644 index 00000000..e2844a87 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/package-use.html @@ -0,0 +1,332 @@ + + + + + + + +Uses of Package com.openshift.client.cartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Package
com.openshift.client.cartridge

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Packages that use com.openshift.client.cartridge
com.openshift.client  
com.openshift.client.cartridge  
com.openshift.client.cartridge.selector  
com.openshift.client.utils  
com.openshift.internal.client  
com.openshift.internal.client.cartridge  
+  +

+ + + + + + + + + + + + + + + + + +
+Classes in com.openshift.client.cartridge used by com.openshift.client
ICartridge + +
+           
IEmbeddableCartridge + +
+           
IEmbeddedCartridge + +
+          Interface to designate a cartridge that has been added and configured
IStandaloneCartridge + +
+           
+  +

+ + + + + + + + + + + + + + +
+Classes in com.openshift.client.cartridge used by com.openshift.client.cartridge
ICartridge + +
+           
IEmbeddableCartridge + +
+           
IStandaloneCartridge + +
+           
+  +

+ + + + + + + + + + + + + + + + + +
+Classes in com.openshift.client.cartridge used by com.openshift.client.cartridge.selector
ICartridge + +
+           
IEmbeddableCartridge + +
+           
IEmbeddedCartridge + +
+          Interface to designate a cartridge that has been added and configured
IStandaloneCartridge + +
+           
+  +

+ + + + + + + + +
+Classes in com.openshift.client.cartridge used by com.openshift.client.utils
ICartridge + +
+           
+  +

+ + + + + + + + + + + + + + + + + +
+Classes in com.openshift.client.cartridge used by com.openshift.internal.client
ICartridge + +
+           
IEmbeddableCartridge + +
+           
IEmbeddedCartridge + +
+          Interface to designate a cartridge that has been added and configured
IStandaloneCartridge + +
+           
+  +

+ + + + + + + + +
+Classes in com.openshift.client.cartridge used by com.openshift.internal.client.cartridge
ICartridge + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/selector/CartridgePropertyQuery.html b/documentation/com/openshift/client/cartridge/selector/CartridgePropertyQuery.html new file mode 100644 index 00000000..168f2e77 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/selector/CartridgePropertyQuery.html @@ -0,0 +1,260 @@ + + + + + + + +CartridgePropertyQuery (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.cartridge.selector +
+Class CartridgePropertyQuery

+
+java.lang.Object
+  extended by com.openshift.client.cartridge.selector.CartridgePropertyQuery
+
+
+
Direct Known Subclasses:
UrlPropertyQuery
+
+
+
+
public abstract class CartridgePropertyQuery
extends Object
+ + +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
CartridgePropertyQuery() + +
+           
+  + + + + + + + + + + + +
+Method Summary
+abstract  CartridgeResourcePropertygetMatchingProperty(IEmbeddedCartridge embeddedCartridge) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+CartridgePropertyQuery

+
+public CartridgePropertyQuery()
+
+
+ + + + + + + + +
+Method Detail
+ +

+getMatchingProperty

+
+public abstract CartridgeResourceProperty getMatchingProperty(IEmbeddedCartridge embeddedCartridge)
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/selector/LatestEmbeddableCartridge.html b/documentation/com/openshift/client/cartridge/selector/LatestEmbeddableCartridge.html new file mode 100644 index 00000000..9f877eac --- /dev/null +++ b/documentation/com/openshift/client/cartridge/selector/LatestEmbeddableCartridge.html @@ -0,0 +1,319 @@ + + + + + + + +LatestEmbeddableCartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.cartridge.selector +
+Class LatestEmbeddableCartridge

+
+java.lang.Object
+  extended by com.openshift.internal.client.cartridge.AbstractCartridgeQuery
+      extended by com.openshift.client.cartridge.selector.LatestVersionQuery
+          extended by com.openshift.client.cartridge.selector.LatestEmbeddableCartridge
+
+
+
+
public class LatestEmbeddableCartridge
extends LatestVersionQuery
+ + +

+A selector that shall select the latest version of an embedded cartidge that's given by name. +

+ +

+

+
Author:
+
Andre Dietisheim
+
See Also:
IEmbeddableCartridge
+
+ +

+ + + + + + + +
+Nested Class Summary
+ + + + + + + +
Nested classes/interfaces inherited from class com.openshift.client.cartridge.selector.LatestVersionQuery
LatestVersionQuery.VersionedName
+  + + + + + + + + + + + +
+Constructor Summary
LatestEmbeddableCartridge(String name) + +
+           
+  + + + + + + + + + + + + + + + +
+Method Summary
+ IEmbeddableCartridgeget(IApplication application) + +
+           
+ IEmbeddableCartridgeget(IUser user) + +
+           
+ + + + + + + +
Methods inherited from class com.openshift.client.cartridge.selector.LatestVersionQuery
allStandaloneCartridges, equals, get, getAll, getLatest, getNameConstraint, hashCode, matches
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.cartridge.AbstractCartridgeQuery
getConnection, getConnection
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+LatestEmbeddableCartridge

+
+public LatestEmbeddableCartridge(String name)
+
+
+ + + + + + + + +
+Method Detail
+ +

+get

+
+public IEmbeddableCartridge get(IApplication application)
+
+
+
+
+
+
+ +

+get

+
+public IEmbeddableCartridge get(IUser user)
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/selector/LatestStandaloneCartridge.html b/documentation/com/openshift/client/cartridge/selector/LatestStandaloneCartridge.html new file mode 100644 index 00000000..ee972a90 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/selector/LatestStandaloneCartridge.html @@ -0,0 +1,319 @@ + + + + + + + +LatestStandaloneCartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.cartridge.selector +
+Class LatestStandaloneCartridge

+
+java.lang.Object
+  extended by com.openshift.internal.client.cartridge.AbstractCartridgeQuery
+      extended by com.openshift.client.cartridge.selector.LatestVersionQuery
+          extended by com.openshift.client.cartridge.selector.LatestStandaloneCartridge
+
+
+
+
public class LatestStandaloneCartridge
extends LatestVersionQuery
+ + +

+A selector that shall select the latest version of a standalone cartidge that's given by name. +

+ +

+

+
Author:
+
Andre Dietisheim
+
See Also:
IStandaloneCartridge
+
+ +

+ + + + + + + +
+Nested Class Summary
+ + + + + + + +
Nested classes/interfaces inherited from class com.openshift.client.cartridge.selector.LatestVersionQuery
LatestVersionQuery.VersionedName
+  + + + + + + + + + + + +
+Constructor Summary
LatestStandaloneCartridge(String name) + +
+           
+  + + + + + + + + + + + + + + + +
+Method Summary
+ IStandaloneCartridgeget(IApplication application) + +
+           
+ IStandaloneCartridgeget(IUser user) + +
+           
+ + + + + + + +
Methods inherited from class com.openshift.client.cartridge.selector.LatestVersionQuery
allStandaloneCartridges, equals, get, getAll, getLatest, getNameConstraint, hashCode, matches
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.cartridge.AbstractCartridgeQuery
getConnection, getConnection
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+LatestStandaloneCartridge

+
+public LatestStandaloneCartridge(String name)
+
+
+ + + + + + + + +
+Method Detail
+ +

+get

+
+public IStandaloneCartridge get(IApplication application)
+
+
+
+
+
+
+ +

+get

+
+public IStandaloneCartridge get(IUser user)
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/selector/LatestVersionOf.html b/documentation/com/openshift/client/cartridge/selector/LatestVersionOf.html new file mode 100644 index 00000000..60618756 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/selector/LatestVersionOf.html @@ -0,0 +1,618 @@ + + + + + + + +LatestVersionOf (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.cartridge.selector +
+Class LatestVersionOf

+
+java.lang.Object
+  extended by com.openshift.client.cartridge.selector.LatestVersionOf
+
+
+
+
public class LatestVersionOf
extends Object
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
LatestVersionOf() + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+static LatestEmbeddableCartridgecron() + +
+           
+static LatestEmbeddableCartridgehaProxy() + +
+           
+static LatestStandaloneCartridgejbossAs() + +
+           
+static LatestStandaloneCartridgejbossEap() + +
+           
+static LatestStandaloneCartridgejbossEws() + +
+           
+static LatestStandaloneCartridgejenkins() + +
+           
+static LatestEmbeddableCartridgejenkinsClient() + +
+           
+static LatestEmbeddableCartridgemetrics() + +
+           
+static LatestEmbeddableCartridgemmsAgent() + +
+           
+static LatestEmbeddableCartridgemongoDB() + +
+           
+static LatestEmbeddableCartridgemySQL() + +
+           
+static LatestStandaloneCartridgeperl() + +
+           
+static LatestStandaloneCartridgephp() + +
+           
+static LatestEmbeddableCartridgephpMyAdmin() + +
+           
+static LatestEmbeddableCartridgepostgreSQL() + +
+           
+static LatestStandaloneCartridgepython() + +
+           
+static LatestEmbeddableCartridgerockMongo() + +
+           
+static LatestStandaloneCartridgeruby() + +
+           
+static LatestEmbeddableCartridgeswitchyard() + +
+           
+static LatestStandaloneCartridgezend() + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+LatestVersionOf

+
+public LatestVersionOf()
+
+
+ + + + + + + + +
+Method Detail
+ +

+mmsAgent

+
+public static LatestEmbeddableCartridge mmsAgent()
+
+
+
+
+
+
+ +

+cron

+
+public static LatestEmbeddableCartridge cron()
+
+
+
+
+
+
+ +

+haProxy

+
+public static LatestEmbeddableCartridge haProxy()
+
+
+
+
+
+
+ +

+jenkinsClient

+
+public static LatestEmbeddableCartridge jenkinsClient()
+
+
+
+
+
+
+ +

+metrics

+
+public static LatestEmbeddableCartridge metrics()
+
+
+
+
+
+
+ +

+mongoDB

+
+public static LatestEmbeddableCartridge mongoDB()
+
+
+
+
+
+
+ +

+phpMyAdmin

+
+public static LatestEmbeddableCartridge phpMyAdmin()
+
+
+
+
+
+
+ +

+postgreSQL

+
+public static LatestEmbeddableCartridge postgreSQL()
+
+
+
+
+
+
+ +

+mySQL

+
+public static LatestEmbeddableCartridge mySQL()
+
+
+
+
+
+
+ +

+rockMongo

+
+public static LatestEmbeddableCartridge rockMongo()
+
+
+
+
+
+
+ +

+switchyard

+
+public static LatestEmbeddableCartridge switchyard()
+
+
+
+
+
+
+ +

+jbossEws

+
+public static LatestStandaloneCartridge jbossEws()
+
+
+
+
+
+
+ +

+jbossEap

+
+public static LatestStandaloneCartridge jbossEap()
+
+
+
+
+
+
+ +

+jbossAs

+
+public static LatestStandaloneCartridge jbossAs()
+
+
+
+
+
+
+ +

+jenkins

+
+public static LatestStandaloneCartridge jenkins()
+
+
+
+
+
+
+ +

+perl

+
+public static LatestStandaloneCartridge perl()
+
+
+
+
+
+
+ +

+php

+
+public static LatestStandaloneCartridge php()
+
+
+
+
+
+
+ +

+python

+
+public static LatestStandaloneCartridge python()
+
+
+
+
+
+
+ +

+ruby

+
+public static LatestStandaloneCartridge ruby()
+
+
+
+
+
+
+ +

+zend

+
+public static LatestStandaloneCartridge zend()
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/selector/LatestVersionQuery.VersionedName.html b/documentation/com/openshift/client/cartridge/selector/LatestVersionQuery.VersionedName.html new file mode 100644 index 00000000..69d5d853 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/selector/LatestVersionQuery.VersionedName.html @@ -0,0 +1,352 @@ + + + + + + + +LatestVersionQuery.VersionedName (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.cartridge.selector +
+Class LatestVersionQuery.VersionedName

+
+java.lang.Object
+  extended by com.openshift.client.cartridge.selector.LatestVersionQuery.VersionedName
+
+
+
All Implemented Interfaces:
Comparable<LatestVersionQuery.VersionedName>
+
+
+
Enclosing class:
LatestVersionQuery
+
+
+
+
protected class LatestVersionQuery.VersionedName
extends Object
implements Comparable<LatestVersionQuery.VersionedName>
+ + +

+


+ +

+ + + + + + + + + + + + +
+Constructor Summary
+protected LatestVersionQuery.VersionedName(String name) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ intcompareTo(LatestVersionQuery.VersionedName other) + +
+           
+ StringgetMajor() + +
+           
+ StringgetMinor() + +
+           
+ StringgetName() + +
+           
+ booleanhasVersion() + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+LatestVersionQuery.VersionedName

+
+protected LatestVersionQuery.VersionedName(String name)
+
+
+ + + + + + + + +
+Method Detail
+ +

+getName

+
+public String getName()
+
+
+
+
+
+
+
+
+
+ +

+hasVersion

+
+public boolean hasVersion()
+
+
+
+
+
+
+
+
+
+ +

+getMajor

+
+public String getMajor()
+
+
+
+
+
+
+
+
+
+ +

+getMinor

+
+public String getMinor()
+
+
+
+
+
+
+
+
+
+ +

+compareTo

+
+public int compareTo(LatestVersionQuery.VersionedName other)
+
+
+
Specified by:
compareTo in interface Comparable<LatestVersionQuery.VersionedName>
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/selector/LatestVersionQuery.html b/documentation/com/openshift/client/cartridge/selector/LatestVersionQuery.html new file mode 100644 index 00000000..159fb090 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/selector/LatestVersionQuery.html @@ -0,0 +1,477 @@ + + + + + + + +LatestVersionQuery (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.cartridge.selector +
+Class LatestVersionQuery

+
+java.lang.Object
+  extended by com.openshift.internal.client.cartridge.AbstractCartridgeQuery
+      extended by com.openshift.client.cartridge.selector.LatestVersionQuery
+
+
+
Direct Known Subclasses:
LatestEmbeddableCartridge, LatestStandaloneCartridge
+
+
+
+
public class LatestVersionQuery
extends AbstractCartridgeQuery
+ + +

+A constraint that shall match available embeddable and standalone cartridges by name. Among + several matching ones, the one with the highest version is chosen. +

+ +

+

+
Author:
+
Andre Dietisheim
+
See Also:
for cartridges that have already been added and + configured to an application.
+
+ +

+ + + + + + + + + + + +
+Nested Class Summary
+protected  classLatestVersionQuery.VersionedName + +
+           
+  + + + + + + + + + + +
+Constructor Summary
LatestVersionQuery(String name) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ Collection<IStandaloneCartridge>allStandaloneCartridges(IApplication application) + +
+           
+ booleanequals(Object obj) + +
+           
+ + + + + +
+<C extends ICartridge> +
+C
+
get(Collection<C> cartridges) + +
+           
+ + + + + +
+<C extends ICartridge> +
+Collection<C>
+
getAll(Collection<C> cartridges) + +
+           
+protected + + + + +
+<C extends ICartridge> +
+C
+
getLatest(Collection<C> matchingCartridges) + +
+           
+ StringgetNameConstraint() + +
+           
+ inthashCode() + +
+           
+ + + + + +
+<C extends ICartridge> +
+boolean
+
matches(C cartridge) + +
+           
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.cartridge.AbstractCartridgeQuery
getConnection, getConnection
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+LatestVersionQuery

+
+public LatestVersionQuery(String name)
+
+
+ + + + + + + + +
+Method Detail
+ +

+getNameConstraint

+
+public String getNameConstraint()
+
+
+
+
+
+
+ +

+getAll

+
+public <C extends ICartridge> Collection<C> getAll(Collection<C> cartridges)
+
+
+
Overrides:
getAll in class AbstractCartridgeQuery
+
+
+
+
+
+
+ +

+get

+
+public <C extends ICartridge> C get(Collection<C> cartridges)
+
+
+
Overrides:
get in class AbstractCartridgeQuery
+
+
+
+
+
+
+ +

+matches

+
+public <C extends ICartridge> boolean matches(C cartridge)
+
+
+
Specified by:
matches in class AbstractCartridgeQuery
+
+
+
+
+
+
+ +

+getLatest

+
+protected <C extends ICartridge> C getLatest(Collection<C> matchingCartridges)
+
+
+
+
+
+
+ +

+allStandaloneCartridges

+
+public Collection<IStandaloneCartridge> allStandaloneCartridges(IApplication application)
+
+
+
+
+
+
+ +

+hashCode

+
+public int hashCode()
+
+
+
Overrides:
hashCode in class Object
+
+
+
+
+
+
+ +

+equals

+
+public boolean equals(Object obj)
+
+
+
Overrides:
equals in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/selector/StringPropertyQuery.html b/documentation/com/openshift/client/cartridge/selector/StringPropertyQuery.html new file mode 100644 index 00000000..35fd956a --- /dev/null +++ b/documentation/com/openshift/client/cartridge/selector/StringPropertyQuery.html @@ -0,0 +1,326 @@ + + + + + + + +StringPropertyQuery (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.cartridge.selector +
+Class StringPropertyQuery

+
+java.lang.Object
+  extended by com.openshift.internal.client.cartridge.AbstractCartridgeQuery
+      extended by com.openshift.client.cartridge.selector.StringPropertyQuery
+
+
+
+
public abstract class StringPropertyQuery
extends AbstractCartridgeQuery
+ + +

+A constraint that shall match available cartridges by url. +

+ +

+

+
Author:
+
Andre Dietisheim
+
See Also:
IEmbeddableCartridge, +IStandaloneCartridge
+
+ +

+ + + + + + + + + + + + + + +
+Constructor Summary
StringPropertyQuery(Pattern pattern) + +
+           
StringPropertyQuery(String propertyPattern) + +
+           
+  + + + + + + + + + + + + + + + +
+Method Summary
+protected abstract + + + + +
+<C extends ICartridge> +
+String
+
getProperty(C cartridge) + +
+           
+ + + + + +
+<C extends ICartridge> +
+boolean
+
matches(C cartridge) + +
+           
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.cartridge.AbstractCartridgeQuery
get, getAll, getConnection, getConnection
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+StringPropertyQuery

+
+public StringPropertyQuery(String propertyPattern)
+
+
+
+ +

+StringPropertyQuery

+
+public StringPropertyQuery(Pattern pattern)
+
+
+ + + + + + + + +
+Method Detail
+ +

+matches

+
+public <C extends ICartridge> boolean matches(C cartridge)
+
+
+
Specified by:
matches in class AbstractCartridgeQuery
+
+
+
+
+
+
+ +

+getProperty

+
+protected abstract <C extends ICartridge> String getProperty(C cartridge)
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/selector/UrlPropertyQuery.html b/documentation/com/openshift/client/cartridge/selector/UrlPropertyQuery.html new file mode 100644 index 00000000..5504f899 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/selector/UrlPropertyQuery.html @@ -0,0 +1,261 @@ + + + + + + + +UrlPropertyQuery (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.cartridge.selector +
+Class UrlPropertyQuery

+
+java.lang.Object
+  extended by com.openshift.client.cartridge.selector.CartridgePropertyQuery
+      extended by com.openshift.client.cartridge.selector.UrlPropertyQuery
+
+
+
+
public class UrlPropertyQuery
extends CartridgePropertyQuery
+ + +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
UrlPropertyQuery() + +
+           
+  + + + + + + + + + + + +
+Method Summary
+ CartridgeResourcePropertygetMatchingProperty(IEmbeddedCartridge embeddedCartridge) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+UrlPropertyQuery

+
+public UrlPropertyQuery()
+
+
+ + + + + + + + +
+Method Detail
+ +

+getMatchingProperty

+
+public CartridgeResourceProperty getMatchingProperty(IEmbeddedCartridge embeddedCartridge)
+
+
+
Specified by:
getMatchingProperty in class CartridgePropertyQuery
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/selector/class-use/CartridgePropertyQuery.html b/documentation/com/openshift/client/cartridge/selector/class-use/CartridgePropertyQuery.html new file mode 100644 index 00000000..538191b6 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/selector/class-use/CartridgePropertyQuery.html @@ -0,0 +1,181 @@ + + + + + + + +Uses of Class com.openshift.client.cartridge.selector.CartridgePropertyQuery (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.cartridge.selector.CartridgePropertyQuery

+
+ + + + + + + + + +
+Packages that use CartridgePropertyQuery
com.openshift.client.cartridge.selector  
+  +

+ + + + + +
+Uses of CartridgePropertyQuery in com.openshift.client.cartridge.selector
+  +

+ + + + + + + + + +
Subclasses of CartridgePropertyQuery in com.openshift.client.cartridge.selector
+ classUrlPropertyQuery + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/selector/class-use/LatestEmbeddableCartridge.html b/documentation/com/openshift/client/cartridge/selector/class-use/LatestEmbeddableCartridge.html new file mode 100644 index 00000000..3beb1413 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/selector/class-use/LatestEmbeddableCartridge.html @@ -0,0 +1,261 @@ + + + + + + + +Uses of Class com.openshift.client.cartridge.selector.LatestEmbeddableCartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.cartridge.selector.LatestEmbeddableCartridge

+
+ + + + + + + + + +
+Packages that use LatestEmbeddableCartridge
com.openshift.client.cartridge.selector  
+  +

+ + + + + +
+Uses of LatestEmbeddableCartridge in com.openshift.client.cartridge.selector
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client.cartridge.selector that return LatestEmbeddableCartridge
+static LatestEmbeddableCartridgeLatestVersionOf.cron() + +
+           
+static LatestEmbeddableCartridgeLatestVersionOf.haProxy() + +
+           
+static LatestEmbeddableCartridgeLatestVersionOf.jenkinsClient() + +
+           
+static LatestEmbeddableCartridgeLatestVersionOf.metrics() + +
+           
+static LatestEmbeddableCartridgeLatestVersionOf.mmsAgent() + +
+           
+static LatestEmbeddableCartridgeLatestVersionOf.mongoDB() + +
+           
+static LatestEmbeddableCartridgeLatestVersionOf.mySQL() + +
+           
+static LatestEmbeddableCartridgeLatestVersionOf.phpMyAdmin() + +
+           
+static LatestEmbeddableCartridgeLatestVersionOf.postgreSQL() + +
+           
+static LatestEmbeddableCartridgeLatestVersionOf.rockMongo() + +
+           
+static LatestEmbeddableCartridgeLatestVersionOf.switchyard() + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/selector/class-use/LatestStandaloneCartridge.html b/documentation/com/openshift/client/cartridge/selector/class-use/LatestStandaloneCartridge.html new file mode 100644 index 00000000..9f9a28c4 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/selector/class-use/LatestStandaloneCartridge.html @@ -0,0 +1,245 @@ + + + + + + + +Uses of Class com.openshift.client.cartridge.selector.LatestStandaloneCartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.cartridge.selector.LatestStandaloneCartridge

+
+ + + + + + + + + +
+Packages that use LatestStandaloneCartridge
com.openshift.client.cartridge.selector  
+  +

+ + + + + +
+Uses of LatestStandaloneCartridge in com.openshift.client.cartridge.selector
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client.cartridge.selector that return LatestStandaloneCartridge
+static LatestStandaloneCartridgeLatestVersionOf.jbossAs() + +
+           
+static LatestStandaloneCartridgeLatestVersionOf.jbossEap() + +
+           
+static LatestStandaloneCartridgeLatestVersionOf.jbossEws() + +
+           
+static LatestStandaloneCartridgeLatestVersionOf.jenkins() + +
+           
+static LatestStandaloneCartridgeLatestVersionOf.perl() + +
+           
+static LatestStandaloneCartridgeLatestVersionOf.php() + +
+           
+static LatestStandaloneCartridgeLatestVersionOf.python() + +
+           
+static LatestStandaloneCartridgeLatestVersionOf.ruby() + +
+           
+static LatestStandaloneCartridgeLatestVersionOf.zend() + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/selector/class-use/LatestVersionOf.html b/documentation/com/openshift/client/cartridge/selector/class-use/LatestVersionOf.html new file mode 100644 index 00000000..3770e106 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/selector/class-use/LatestVersionOf.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.client.cartridge.selector.LatestVersionOf (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.cartridge.selector.LatestVersionOf

+
+No usage of com.openshift.client.cartridge.selector.LatestVersionOf +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/selector/class-use/LatestVersionQuery.VersionedName.html b/documentation/com/openshift/client/cartridge/selector/class-use/LatestVersionQuery.VersionedName.html new file mode 100644 index 00000000..b0093176 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/selector/class-use/LatestVersionQuery.VersionedName.html @@ -0,0 +1,181 @@ + + + + + + + +Uses of Class com.openshift.client.cartridge.selector.LatestVersionQuery.VersionedName (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.cartridge.selector.LatestVersionQuery.VersionedName

+
+ + + + + + + + + +
+Packages that use LatestVersionQuery.VersionedName
com.openshift.client.cartridge.selector  
+  +

+ + + + + +
+Uses of LatestVersionQuery.VersionedName in com.openshift.client.cartridge.selector
+  +

+ + + + + + + + + +
Methods in com.openshift.client.cartridge.selector with parameters of type LatestVersionQuery.VersionedName
+ intLatestVersionQuery.VersionedName.compareTo(LatestVersionQuery.VersionedName other) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/selector/class-use/LatestVersionQuery.html b/documentation/com/openshift/client/cartridge/selector/class-use/LatestVersionQuery.html new file mode 100644 index 00000000..26545ad2 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/selector/class-use/LatestVersionQuery.html @@ -0,0 +1,189 @@ + + + + + + + +Uses of Class com.openshift.client.cartridge.selector.LatestVersionQuery (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.cartridge.selector.LatestVersionQuery

+
+ + + + + + + + + +
+Packages that use LatestVersionQuery
com.openshift.client.cartridge.selector  
+  +

+ + + + + +
+Uses of LatestVersionQuery in com.openshift.client.cartridge.selector
+  +

+ + + + + + + + + + + + + +
Subclasses of LatestVersionQuery in com.openshift.client.cartridge.selector
+ classLatestEmbeddableCartridge + +
+          A selector that shall select the latest version of an embedded cartidge that's given by name.
+ classLatestStandaloneCartridge + +
+          A selector that shall select the latest version of a standalone cartidge that's given by name.
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/selector/class-use/StringPropertyQuery.html b/documentation/com/openshift/client/cartridge/selector/class-use/StringPropertyQuery.html new file mode 100644 index 00000000..1bd6e35a --- /dev/null +++ b/documentation/com/openshift/client/cartridge/selector/class-use/StringPropertyQuery.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.client.cartridge.selector.StringPropertyQuery (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.cartridge.selector.StringPropertyQuery

+
+No usage of com.openshift.client.cartridge.selector.StringPropertyQuery +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/selector/class-use/UrlPropertyQuery.html b/documentation/com/openshift/client/cartridge/selector/class-use/UrlPropertyQuery.html new file mode 100644 index 00000000..4d5ee3e8 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/selector/class-use/UrlPropertyQuery.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.client.cartridge.selector.UrlPropertyQuery (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.cartridge.selector.UrlPropertyQuery

+
+No usage of com.openshift.client.cartridge.selector.UrlPropertyQuery +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/selector/package-frame.html b/documentation/com/openshift/client/cartridge/selector/package-frame.html new file mode 100644 index 00000000..9ce007ef --- /dev/null +++ b/documentation/com/openshift/client/cartridge/selector/package-frame.html @@ -0,0 +1,45 @@ + + + + + + + +com.openshift.client.cartridge.selector (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + +com.openshift.client.cartridge.selector + + + + +
+Classes  + +
+CartridgePropertyQuery +
+LatestEmbeddableCartridge +
+LatestStandaloneCartridge +
+LatestVersionOf +
+LatestVersionQuery +
+StringPropertyQuery +
+UrlPropertyQuery
+ + + + diff --git a/documentation/com/openshift/client/cartridge/selector/package-summary.html b/documentation/com/openshift/client/cartridge/selector/package-summary.html new file mode 100644 index 00000000..c1795166 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/selector/package-summary.html @@ -0,0 +1,182 @@ + + + + + + + +com.openshift.client.cartridge.selector (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+

+Package com.openshift.client.cartridge.selector +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class Summary
CartridgePropertyQuery 
LatestEmbeddableCartridgeA selector that shall select the latest version of an embedded cartidge that's given by name.
LatestStandaloneCartridgeA selector that shall select the latest version of a standalone cartidge that's given by name.
LatestVersionOf 
LatestVersionQueryA constraint that shall match available embeddable and standalone cartridges by name.
StringPropertyQueryA constraint that shall match available cartridges by url.
UrlPropertyQuery 
+  + +

+

+
+
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/selector/package-tree.html b/documentation/com/openshift/client/cartridge/selector/package-tree.html new file mode 100644 index 00000000..65f10a86 --- /dev/null +++ b/documentation/com/openshift/client/cartridge/selector/package-tree.html @@ -0,0 +1,161 @@ + + + + + + + +com.openshift.client.cartridge.selector Class Hierarchy (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Hierarchy For Package com.openshift.client.cartridge.selector +

+
+
+
Package Hierarchies:
All Packages
+
+

+Class Hierarchy +

+ +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/cartridge/selector/package-use.html b/documentation/com/openshift/client/cartridge/selector/package-use.html new file mode 100644 index 00000000..21ead84f --- /dev/null +++ b/documentation/com/openshift/client/cartridge/selector/package-use.html @@ -0,0 +1,195 @@ + + + + + + + +Uses of Package com.openshift.client.cartridge.selector (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Package
com.openshift.client.cartridge.selector

+
+ + + + + + + + + +
+Packages that use com.openshift.client.cartridge.selector
com.openshift.client.cartridge.selector  
+  +

+ + + + + + + + + + + + + + + + + + + + +
+Classes in com.openshift.client.cartridge.selector used by com.openshift.client.cartridge.selector
CartridgePropertyQuery + +
+           
LatestEmbeddableCartridge + +
+          A selector that shall select the latest version of an embedded cartidge that's given by name.
LatestStandaloneCartridge + +
+          A selector that shall select the latest version of a standalone cartidge that's given by name.
LatestVersionQuery + +
+          A constraint that shall match available embeddable and standalone cartridges by name.
LatestVersionQuery.VersionedName + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/ApplicationBuilder.CartridgeHolder.html b/documentation/com/openshift/client/class-use/ApplicationBuilder.CartridgeHolder.html new file mode 100644 index 00000000..5e5d3682 --- /dev/null +++ b/documentation/com/openshift/client/class-use/ApplicationBuilder.CartridgeHolder.html @@ -0,0 +1,181 @@ + + + + + + + +Uses of Class com.openshift.client.ApplicationBuilder.CartridgeHolder (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.ApplicationBuilder.CartridgeHolder

+
+ + + + + + + + + +
+Packages that use ApplicationBuilder.CartridgeHolder
com.openshift.client  
+  +

+ + + + + +
+Uses of ApplicationBuilder.CartridgeHolder in com.openshift.client
+  +

+ + + + + + + + + +
Methods in com.openshift.client that return ApplicationBuilder.CartridgeHolder
+ ApplicationBuilder.CartridgeHolderApplicationBuilder.setCartridge(IStandaloneCartridge cartridge) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/ApplicationBuilder.NamedCartridgeHolder.html b/documentation/com/openshift/client/class-use/ApplicationBuilder.NamedCartridgeHolder.html new file mode 100644 index 00000000..f22223fe --- /dev/null +++ b/documentation/com/openshift/client/class-use/ApplicationBuilder.NamedCartridgeHolder.html @@ -0,0 +1,205 @@ + + + + + + + +Uses of Class com.openshift.client.ApplicationBuilder.NamedCartridgeHolder (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.ApplicationBuilder.NamedCartridgeHolder

+
+ + + + + + + + + +
+Packages that use ApplicationBuilder.NamedCartridgeHolder
com.openshift.client  
+  +

+ + + + + +
+Uses of ApplicationBuilder.NamedCartridgeHolder in com.openshift.client
+  +

+ + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client that return ApplicationBuilder.NamedCartridgeHolder
+ ApplicationBuilder.NamedCartridgeHolderApplicationBuilder.NamedCartridgeHolder.setApplicationScale(ApplicationScale applicationScale) + +
+           
+ ApplicationBuilder.NamedCartridgeHolderApplicationBuilder.NamedCartridgeHolder.setGearProfile(IGearProfile gearProfile) + +
+           
+ ApplicationBuilder.NamedCartridgeHolderApplicationBuilder.NamedCartridgeHolder.setInitialGitUrl(String initialGitUrl) + +
+           
+ ApplicationBuilder.NamedCartridgeHolderApplicationBuilder.CartridgeHolder.setName(String name) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/ApplicationBuilder.html b/documentation/com/openshift/client/class-use/ApplicationBuilder.html new file mode 100644 index 00000000..2e4167ac --- /dev/null +++ b/documentation/com/openshift/client/class-use/ApplicationBuilder.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.client.ApplicationBuilder (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.ApplicationBuilder

+
+No usage of com.openshift.client.ApplicationBuilder +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/ApplicationScale.html b/documentation/com/openshift/client/class-use/ApplicationScale.html new file mode 100644 index 00000000..ce43fca5 --- /dev/null +++ b/documentation/com/openshift/client/class-use/ApplicationScale.html @@ -0,0 +1,462 @@ + + + + + + + +Uses of Class com.openshift.client.ApplicationScale (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.ApplicationScale

+
+ + + + + + + + + + + + + + + + + +
+Packages that use ApplicationScale
com.openshift.client  
com.openshift.internal.client  
com.openshift.internal.client.response  
+  +

+ + + + + +
+Uses of ApplicationScale in com.openshift.client
+  +

+ + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client that return ApplicationScale
+ ApplicationScaleIApplication.getApplicationScale() + +
+          Returns true if scaling is enabled on this application (only set at + creation time).
+static ApplicationScaleApplicationScale.safeValueOf(String value) + +
+           
+static ApplicationScaleApplicationScale.valueOf(String name) + +
+          Returns the enum constant of this type with the specified name.
+static ApplicationScale[]ApplicationScale.values() + +
+          Returns an array containing the constants of this enum type, in +the order they are declared.
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client with parameters of type ApplicationScale
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale) + +
+           
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile) + +
+           
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl) + +
+          Creates a new application with the given name and the given + cartridge/framework.
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + IEmbeddableCartridge... cartridges) + +
+          Creates a new application with the given name and the given + cartridge/framework.
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + Map<String,String> environmentVariable, + IEmbeddableCartridge... cartridges) + +
+          Creates a new application with the given name and the given + cartridge/framework.
+ ApplicationBuilder.NamedCartridgeHolderApplicationBuilder.NamedCartridgeHolder.setApplicationScale(ApplicationScale applicationScale) + +
+           
+  +

+ + + + + +
+Uses of ApplicationScale in com.openshift.internal.client
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client that return ApplicationScale
+ ApplicationScaleApplicationResource.getApplicationScale() + +
+           
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client with parameters of type ApplicationScale
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + IEmbeddableCartridge... cartridges) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + Map<String,String> environmentVariables, + IEmbeddableCartridge... cartridges) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + String initialGitUrl) + +
+           
+protected  AbstractOpenShiftResource.ParametersAbstractOpenShiftResource.Parameters.scale(ApplicationScale scale) + +
+           
+  +

+ + + + + + + + +
Constructors in com.openshift.internal.client with parameters of type ApplicationScale
ApplicationResource(String name, + String uuid, + String creationTime, + Messages messages, + String applicationUrl, + String sshUrl, + String gitUrl, + String initialGitUrl, + IGearProfile gearProfile, + ApplicationScale scale, + List<String> aliases, + Map<String,CartridgeResourceDTO> cartridgesByName, + Map<String,Link> links, + DomainResource domain) + +
+          Instantiates a new application.
+  +

+ + + + + +
+Uses of ApplicationScale in com.openshift.internal.client.response
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.response that return ApplicationScale
+ ApplicationScaleApplicationResourceDTO.getApplicationScale() + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/GearState.html b/documentation/com/openshift/client/class-use/GearState.html new file mode 100644 index 00000000..aadf0775 --- /dev/null +++ b/documentation/com/openshift/client/class-use/GearState.html @@ -0,0 +1,251 @@ + + + + + + + +Uses of Class com.openshift.client.GearState (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.GearState

+
+ + + + + + + + + + + + + +
+Packages that use GearState
com.openshift.client  
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of GearState in com.openshift.client
+  +

+ + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client that return GearState
+ GearStateIGear.getState() + +
+          Returns the state of this gear
+static GearStateGearState.safeValueOf(String gearStateString) + +
+           
+static GearStateGearState.valueOf(String name) + +
+          Returns the enum constant of this type with the specified name.
+static GearState[]GearState.values() + +
+          Returns an array containing the constants of this enum type, in +the order they are declared.
+  +

+ + + + + +
+Uses of GearState in com.openshift.internal.client
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client that return GearState
+ GearStateGear.getState() + +
+           
+  +

+ + + + + + + + +
Constructors in com.openshift.internal.client with parameters of type GearState
Gear(String id, + GearState state, + String sshUrl) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/HttpMethod.html b/documentation/com/openshift/client/class-use/HttpMethod.html new file mode 100644 index 00000000..2b463962 --- /dev/null +++ b/documentation/com/openshift/client/class-use/HttpMethod.html @@ -0,0 +1,297 @@ + + + + + + + +Uses of Class com.openshift.client.HttpMethod (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.HttpMethod

+
+ + + + + + + + + + + + + + + + + +
+Packages that use HttpMethod
com.openshift.client  
com.openshift.internal.client.httpclient  
com.openshift.internal.client.response  
+  +

+ + + + + +
+Uses of HttpMethod in com.openshift.client
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.client that return HttpMethod
+static HttpMethodHttpMethod.valueOf(String name) + +
+          Returns the enum constant of this type with the specified name.
+static HttpMethod[]HttpMethod.values() + +
+          Returns an array containing the constants of this enum type, in +the order they are declared.
+  +

+ + + + + +
+Uses of HttpMethod in com.openshift.internal.client.httpclient
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.internal.client.httpclient with parameters of type HttpMethod
+protected  StringUrlConnectionHttpClient.request(HttpMethod httpMethod, + URL url, + IMediaType requestMediaType, + int timeout, + Parameter... parameters) + +
+           
+protected  StringUrlConnectionHttpClient.request(HttpMethod httpMethod, + URL url, + IMediaType requestMediaType, + int timeout, + ParameterValueMap parameters) + +
+           
+  +

+ + + + + +
+Uses of HttpMethod in com.openshift.internal.client.response
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.response that return HttpMethod
+ HttpMethodLink.getHttpMethod() + +
+          Gets the http method this link operates on.
+  +

+ + + + + + + + + + + + + + +
Constructors in com.openshift.internal.client.response with parameters of type HttpMethod
Link(String href, + HttpMethod httpMethod) + +
+           
Link(String rel, + String href, + HttpMethod httpMethod) + +
+           
Link(String rel, + String href, + HttpMethod httpMethod, + List<LinkParameter> requiredParams, + List<LinkParameter> optionalParams) + +
+          Instantiates a new Link object.
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/IApplication.html b/documentation/com/openshift/client/class-use/IApplication.html new file mode 100644 index 00000000..262d593f --- /dev/null +++ b/documentation/com/openshift/client/class-use/IApplication.html @@ -0,0 +1,687 @@ + + + + + + + +Uses of Interface com.openshift.client.IApplication (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Interface
com.openshift.client.IApplication

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Packages that use IApplication
com.openshift.client  
com.openshift.client.cartridge  
com.openshift.client.cartridge.selector  
com.openshift.internal.client  
com.openshift.internal.client.cartridge  
com.openshift.internal.client.ssh  
+  +

+ + + + + +
+Uses of IApplication in com.openshift.client
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client that return IApplication
+ IApplicationApplicationBuilder.NamedCartridgeHolder.build() + +
+           
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge) + +
+           
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale) + +
+           
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile) + +
+           
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl) + +
+          Creates a new application with the given name and the given + cartridge/framework.
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + IEmbeddableCartridge... cartridges) + +
+          Creates a new application with the given name and the given + cartridge/framework.
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + Map<String,String> environmentVariable, + IEmbeddableCartridge... cartridges) + +
+          Creates a new application with the given name and the given + cartridge/framework.
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + IGearProfile gearProfile) + +
+           
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + String initialGitUrl) + +
+           
+ IApplicationIEnvironmentVariable.getApplication() + +
+          Returns the application for this environment variable
+ IApplicationIDomain.getApplicationByName(String name) + +
+          Returns the application identified by the given name.
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.client that return types with arguments of type IApplication
+ List<IApplication>IDomain.getApplications() + +
+           
+ List<IApplication>IDomain.getApplicationsByCartridge(IStandaloneCartridge cartridge) + +
+           
+  +

+ + + + + +
+Uses of IApplication in com.openshift.client.cartridge
+  +

+ + + + + + + + + +
Methods in com.openshift.client.cartridge that return IApplication
+ IApplicationIEmbeddedCartridge.getApplication() + +
+          Returns the application this cartridge is embedded into.
+  +

+ + + + + +
+Uses of IApplication in com.openshift.client.cartridge.selector
+  +

+ + + + + + + + + + + + + + + + + +
Methods in com.openshift.client.cartridge.selector with parameters of type IApplication
+ Collection<IStandaloneCartridge>LatestVersionQuery.allStandaloneCartridges(IApplication application) + +
+           
+ IStandaloneCartridgeLatestStandaloneCartridge.get(IApplication application) + +
+           
+ IEmbeddableCartridgeLatestEmbeddableCartridge.get(IApplication application) + +
+           
+  +

+ + + + + +
+Uses of IApplication in com.openshift.internal.client
+  +

+ + + + + + + + + +
Classes in com.openshift.internal.client that implement IApplication
+ classApplicationResource + +
+          The ApplicationResource object is an implementation of com.openshift.client.IApplication, and provides + a runtime model for the real application that resides on the OpenShift platform being accessed.
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client that return IApplication
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + IEmbeddableCartridge... cartridges) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + Map<String,String> environmentVariables, + IEmbeddableCartridge... cartridges) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + String initialGitUrl) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + IGearProfile gearProfile) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + IGearProfile gearProfile, + String initialGitUrl) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + String initialGitUrl) + +
+           
+ IApplicationEnvironmentVariableResource.getApplication() + +
+           
+ IApplicationEmbeddedCartridgeResource.getApplication() + +
+           
+ IApplicationDomainResource.getApplicationByName(String name) + +
+           
+  +

+ + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client that return types with arguments of type IApplication
+ List<IApplication>DomainResource.getApplications() + +
+           
+ List<IApplication>DomainResource.getApplicationsByCartridge(IStandaloneCartridge cartridge) + +
+           
+protected  List<IApplication>DomainResource.getOrLoadApplications() + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client with parameters of type IApplication
+protected  voidDomainResource.removeApplication(IApplication application) + +
+           
+  +

+ + + + + +
+Uses of IApplication in com.openshift.internal.client.cartridge
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.cartridge with parameters of type IApplication
+protected  IOpenShiftConnectionAbstractCartridgeQuery.getConnection(IApplication application) + +
+           
+  +

+ + + + + +
+Uses of IApplication in com.openshift.internal.client.ssh
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.ssh that return IApplication
+protected  IApplicationApplicationPortForwarding.getApplication() + +
+           
+  +

+ + + + + + + + +
Constructors in com.openshift.internal.client.ssh with parameters of type IApplication
ApplicationPortForwarding(IApplication application, + String name, + String remoteAddress, + int remotePort) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/IApplicationPortForwarding.html b/documentation/com/openshift/client/class-use/IApplicationPortForwarding.html new file mode 100644 index 00000000..16f33ec7 --- /dev/null +++ b/documentation/com/openshift/client/class-use/IApplicationPortForwarding.html @@ -0,0 +1,287 @@ + + + + + + + +Uses of Interface com.openshift.client.IApplicationPortForwarding (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Interface
com.openshift.client.IApplicationPortForwarding

+
+ + + + + + + + + + + + + + + + + +
+Packages that use IApplicationPortForwarding
com.openshift.client  
com.openshift.internal.client  
com.openshift.internal.client.ssh  
+  +

+ + + + + +
+Uses of IApplicationPortForwarding in com.openshift.client
+  +

+ + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client that return types with arguments of type IApplicationPortForwarding
+ List<IApplicationPortForwarding>IApplication.getForwardablePorts() + +
+          Returns the list of forwardable ports on OpenShift for this application.
+ List<IApplicationPortForwarding>IApplication.refreshForwardablePorts() + +
+          Refreshes the list of port-forwarding.
+ List<IApplicationPortForwarding>IApplication.startPortForwarding() + +
+           
+ List<IApplicationPortForwarding>IApplication.stopPortForwarding() + +
+          Stop the port-forwarding for all ports.
+  +

+ + + + + +
+Uses of IApplicationPortForwarding in com.openshift.internal.client
+  +

+ + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client that return types with arguments of type IApplicationPortForwarding
+ List<IApplicationPortForwarding>ApplicationResource.getForwardablePorts() + +
+           
+ List<IApplicationPortForwarding>ApplicationResource.refreshForwardablePorts() + +
+           
+ List<IApplicationPortForwarding>ApplicationResource.startPortForwarding() + +
+           
+ List<IApplicationPortForwarding>ApplicationResource.stopPortForwarding() + +
+           
+  +

+ + + + + +
+Uses of IApplicationPortForwarding in com.openshift.internal.client.ssh
+  +

+ + + + + + + + + +
Classes in com.openshift.internal.client.ssh that implement IApplicationPortForwarding
+ classApplicationPortForwarding + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/IDomain.html b/documentation/com/openshift/client/class-use/IDomain.html new file mode 100644 index 00000000..01c2d582 --- /dev/null +++ b/documentation/com/openshift/client/class-use/IDomain.html @@ -0,0 +1,405 @@ + + + + + + + +Uses of Interface com.openshift.client.IDomain (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Interface
com.openshift.client.IDomain

+
+ + + + + + + + + + + + + + + + + +
+Packages that use IDomain
com.openshift.client  
com.openshift.internal.client  
com.openshift.internal.client.cartridge  
+  +

+ + + + + +
+Uses of IDomain in com.openshift.client
+  +

+ + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client that return IDomain
+ IDomainIUser.createDomain(String id) + +
+           
+ IDomainIUser.getDefaultDomain() + +
+           
+ IDomainIApplication.getDomain() + +
+          Get the domain of the application.
+ IDomainIUser.getDomain(String id) + +
+           
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.client that return types with arguments of type IDomain
+ List<IDomain>IUser.getDomains() + +
+           
+ List<IDomain>IOpenShiftConnection.getDomains() + +
+          Returns the domains associated with the current OpenShift connection.
+  +

+ + + + + + + + +
Constructors in com.openshift.client with parameters of type IDomain
ApplicationBuilder(IDomain domain) + +
+           
+  +

+ + + + + +
+Uses of IDomain in com.openshift.internal.client
+  +

+ + + + + + + + + +
Classes in com.openshift.internal.client that implement IDomain
+ classDomainResource + +
+           
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client that return IDomain
+ IDomainUserResource.createDomain(String id) + +
+           
+ IDomainAPIResource.createDomain(String id) + +
+           
+ IDomainUserResource.getDefaultDomain() + +
+           
+ IDomainAPIResource.getDefaultDomain() + +
+           
+ IDomainApplicationResource.getDomain() + +
+           
+ IDomainUserResource.getDomain(String id) + +
+           
+ IDomainAPIResource.getDomain(String id) + +
+           
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.internal.client that return types with arguments of type IDomain
+ List<IDomain>UserResource.getDomains() + +
+           
+ List<IDomain>APIResource.getDomains() + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client with parameters of type IDomain
+protected  voidAPIResource.removeDomain(IDomain domain) + +
+          Called after a domain has been destroyed
+  +

+ + + + + +
+Uses of IDomain in com.openshift.internal.client.cartridge
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.cartridge with parameters of type IDomain
+protected  IOpenShiftConnectionAbstractCartridgeQuery.getConnection(IDomain domain) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/IEnvironmentVariable.html b/documentation/com/openshift/client/class-use/IEnvironmentVariable.html new file mode 100644 index 00000000..c1b456e5 --- /dev/null +++ b/documentation/com/openshift/client/class-use/IEnvironmentVariable.html @@ -0,0 +1,332 @@ + + + + + + + +Uses of Interface com.openshift.client.IEnvironmentVariable (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Interface
com.openshift.client.IEnvironmentVariable

+
+ + + + + + + + + + + + + +
+Packages that use IEnvironmentVariable
com.openshift.client  
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of IEnvironmentVariable in com.openshift.client
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.client that return IEnvironmentVariable
+ IEnvironmentVariableIApplication.addEnvironmentVariable(String name, + String value) + +
+          Adds an environment variable to this application.
+ IEnvironmentVariableIApplication.getEnvironmentVariable(String name) + +
+          Return the environment variable for the specified name
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.client that return types with arguments of type IEnvironmentVariable
+ Map<String,IEnvironmentVariable>IApplication.addEnvironmentVariables(Map<String,String> environmentVariables) + +
+          Adds a map of environment variables to the application
+ Map<String,IEnvironmentVariable>IApplication.getEnvironmentVariables() + +
+          Retrieves the map of environment variables
+  +

+ + + + + + + + + +
Methods in com.openshift.client with parameters of type IEnvironmentVariable
+ voidIApplication.removeEnvironmentVariable(IEnvironmentVariable environmentVariable) + +
+          Removes the environment variables with the given name from this application.
+  +

+ + + + + +
+Uses of IEnvironmentVariable in com.openshift.internal.client
+  +

+ + + + + + + + + +
Classes in com.openshift.internal.client that implement IEnvironmentVariable
+ classEnvironmentVariableResource + +
+           
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.internal.client that return IEnvironmentVariable
+ IEnvironmentVariableApplicationResource.addEnvironmentVariable(String name, + String value) + +
+           
+ IEnvironmentVariableApplicationResource.getEnvironmentVariable(String name) + +
+           
+  +

+ + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client that return types with arguments of type IEnvironmentVariable
+ Map<String,IEnvironmentVariable>ApplicationResource.addEnvironmentVariables(Map<String,String> environmentVariables) + +
+           
+ Map<String,IEnvironmentVariable>ApplicationResource.getEnvironmentVariables() + +
+           
+protected  Map<String,IEnvironmentVariable>ApplicationResource.getOrLoadEnvironmentVariables() + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client with parameters of type IEnvironmentVariable
+ voidApplicationResource.removeEnvironmentVariable(IEnvironmentVariable environmentVariable) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/IField.html b/documentation/com/openshift/client/class-use/IField.html new file mode 100644 index 00000000..4d14706a --- /dev/null +++ b/documentation/com/openshift/client/class-use/IField.html @@ -0,0 +1,306 @@ + + + + + + + +Uses of Interface com.openshift.client.IField (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Interface
com.openshift.client.IField

+
+ + + + + + + + + + + + + +
+Packages that use IField
com.openshift.client  
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of IField in com.openshift.client
+  +

+ + + + + + + + + + + + + + + + + +
Fields in com.openshift.client declared as IField
+static IFieldIField.APPINFO + +
+           
+static IFieldIField.DEFAULT + +
+           
+static IFieldIField.RESULT + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.client that return IField
+ IFieldMessage.getField() + +
+           
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client with parameters of type IField
+ List<Message>Messages.getBy(IField field) + +
+          Returns all the message of the given field type.
+ List<Message>Messages.getBy(IField field, + ISeverity severity) + +
+          Returns the messages of the given field type and severity.
+ MessageMessages.getFirstBy(IField field) + +
+          Returns the first message of the given field type.
+ MessageMessages.getFirstBy(IField field, + ISeverity severity) + +
+          Returns the first message of the given field type and severity.
+ List<Message>OpenShiftEndpointException.getRestResponseMessage(IField field) + +
+          Returns the message for the given field.
+  +

+ + + + + + + + +
Constructor parameters in com.openshift.client with type arguments of type IField
Messages(Map<IField,List<Message>> messages) + +
+          Instantiates a new abstract open shift resource.
+  +

+ + + + + +
+Uses of IField in com.openshift.internal.client
+  +

+ + + + + + + + + +
Classes in com.openshift.internal.client that implement IField
+ classField + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/IGear.html b/documentation/com/openshift/client/class-use/IGear.html new file mode 100644 index 00000000..814d094c --- /dev/null +++ b/documentation/com/openshift/client/class-use/IGear.html @@ -0,0 +1,226 @@ + + + + + + + +Uses of Interface com.openshift.client.IGear (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Interface
com.openshift.client.IGear

+
+ + + + + + + + + + + + + +
+Packages that use IGear
com.openshift.client  
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of IGear in com.openshift.client
+  +

+ + + + + + + + + +
Methods in com.openshift.client that return types with arguments of type IGear
+ Collection<IGear>IGearGroup.getGears() + +
+          Returns the gears in this gear group resource
+  +

+ + + + + +
+Uses of IGear in com.openshift.internal.client
+  +

+ + + + + + + + + +
Classes in com.openshift.internal.client that implement IGear
+ classGear + +
+          A gear that a cartridge is running on.
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client that return types with arguments of type IGear
+ Collection<IGear>GearGroupResource.getGears() + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/IGearGroup.html b/documentation/com/openshift/client/class-use/IGearGroup.html new file mode 100644 index 00000000..f7a9d7e0 --- /dev/null +++ b/documentation/com/openshift/client/class-use/IGearGroup.html @@ -0,0 +1,226 @@ + + + + + + + +Uses of Interface com.openshift.client.IGearGroup (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Interface
com.openshift.client.IGearGroup

+
+ + + + + + + + + + + + + +
+Packages that use IGearGroup
com.openshift.client  
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of IGearGroup in com.openshift.client
+  +

+ + + + + + + + + +
Methods in com.openshift.client that return types with arguments of type IGearGroup
+ Collection<IGearGroup>IApplication.getGearGroups() + +
+          Returns the gear groups for this application.
+  +

+ + + + + +
+Uses of IGearGroup in com.openshift.internal.client
+  +

+ + + + + + + + + +
Classes in com.openshift.internal.client that implement IGearGroup
+ classGearGroupResource + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client that return types with arguments of type IGearGroup
+ Collection<IGearGroup>ApplicationResource.getGearGroups() + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/IGearProfile.html b/documentation/com/openshift/client/class-use/IGearProfile.html new file mode 100644 index 00000000..33b01304 --- /dev/null +++ b/documentation/com/openshift/client/class-use/IGearProfile.html @@ -0,0 +1,541 @@ + + + + + + + +Uses of Interface com.openshift.client.IGearProfile (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Interface
com.openshift.client.IGearProfile

+
+ + + + + + + + + + + + + + + + + +
+Packages that use IGearProfile
com.openshift.client  
com.openshift.internal.client  
com.openshift.internal.client.response  
+  +

+ + + + + +
+Uses of IGearProfile in com.openshift.client
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Fields in com.openshift.client declared as IGearProfile
+static IGearProfileIGearProfile.EXLARGE + +
+           
+static IGearProfileIGearProfile.JUMBO + +
+           
+static IGearProfileIGearProfile.LARGE + +
+           
+static IGearProfileIGearProfile.MEDIUM + +
+           
+static IGearProfileIGearProfile.MICRO + +
+           
+static IGearProfileIGearProfile.SMALL + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.client that return IGearProfile
+ IGearProfileIApplication.getGearProfile() + +
+          Returns true if scaling is enabled on this application (only set at + creation time).
+  +

+ + + + + + + + + +
Methods in com.openshift.client that return types with arguments of type IGearProfile
+ List<IGearProfile>IDomain.getAvailableGearProfiles() + +
+          Returns the list of available gear size that the user can choose when creating a new application (application's gear size can't be changed after creation).
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client with parameters of type IGearProfile
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile) + +
+           
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl) + +
+          Creates a new application with the given name and the given + cartridge/framework.
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + IEmbeddableCartridge... cartridges) + +
+          Creates a new application with the given name and the given + cartridge/framework.
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + Map<String,String> environmentVariable, + IEmbeddableCartridge... cartridges) + +
+          Creates a new application with the given name and the given + cartridge/framework.
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + IGearProfile gearProfile) + +
+           
+ ApplicationBuilder.NamedCartridgeHolderApplicationBuilder.NamedCartridgeHolder.setGearProfile(IGearProfile gearProfile) + +
+           
+  +

+ + + + + +
+Uses of IGearProfile in com.openshift.internal.client
+  +

+ + + + + + + + + +
Classes in com.openshift.internal.client that implement IGearProfile
+ classGearProfile + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client that return IGearProfile
+ IGearProfileApplicationResource.getGearProfile() + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client that return types with arguments of type IGearProfile
+ List<IGearProfile>DomainResource.getAvailableGearProfiles() + +
+           
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client with parameters of type IGearProfile
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + IEmbeddableCartridge... cartridges) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + Map<String,String> environmentVariables, + IEmbeddableCartridge... cartridges) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + IGearProfile gearProfile) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + IGearProfile gearProfile, + String initialGitUrl) + +
+           
+protected  AbstractOpenShiftResource.ParametersAbstractOpenShiftResource.Parameters.gearProfile(IGearProfile gearProfile) + +
+           
+  +

+ + + + + + + + +
Constructors in com.openshift.internal.client with parameters of type IGearProfile
ApplicationResource(String name, + String uuid, + String creationTime, + Messages messages, + String applicationUrl, + String sshUrl, + String gitUrl, + String initialGitUrl, + IGearProfile gearProfile, + ApplicationScale scale, + List<String> aliases, + Map<String,CartridgeResourceDTO> cartridgesByName, + Map<String,Link> links, + DomainResource domain) + +
+          Instantiates a new application.
+  +

+ + + + + +
+Uses of IGearProfile in com.openshift.internal.client.response
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.response that return IGearProfile
+ IGearProfileApplicationResourceDTO.getGearProfile() + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/IHttpClient.html b/documentation/com/openshift/client/class-use/IHttpClient.html new file mode 100644 index 00000000..932cd656 --- /dev/null +++ b/documentation/com/openshift/client/class-use/IHttpClient.html @@ -0,0 +1,287 @@ + + + + + + + +Uses of Interface com.openshift.client.IHttpClient (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Interface
com.openshift.client.IHttpClient

+
+ + + + + + + + + + + + + + + + + +
+Packages that use IHttpClient
com.openshift.client  
com.openshift.internal.client  
com.openshift.internal.client.httpclient  
+  +

+ + + + + +
+Uses of IHttpClient in com.openshift.client
+  +

+ + + + + + + + + +
Methods in com.openshift.client with parameters of type IHttpClient
+protected  IOpenShiftConnectionOpenShiftConnectionFactory.getConnection(String clientId, + String username, + String password, + String serverUrl, + IHttpClient httpClient) + +
+           
+  +

+ + + + + +
+Uses of IHttpClient in com.openshift.internal.client
+  +

+ + + + + + + + + + + + + + +
Constructors in com.openshift.internal.client with parameters of type IHttpClient
RestService(String server, + String clientId, + IMediaType defaultRequestMediaType, + String acceptedMediaType, + IRestResponseFactory factory, + IHttpClient client) + +
+           
RestService(String server, + String clientId, + IMediaType defaultRequestMediaType, + String acceptedMediaType, + IRestResponseFactory factory, + IHttpClient client, + RestServiceProperties properties) + +
+           
RestService(String server, + String clientId, + String protocolVersion, + IMediaType defaultRequestMediaType, + String acceptedMediaType, + IRestResponseFactory factory, + IHttpClient client, + RestServiceProperties properties) + +
+           
+  +

+ + + + + +
+Uses of IHttpClient in com.openshift.internal.client.httpclient
+  +

+ + + + + + + + + +
Classes in com.openshift.internal.client.httpclient that implement IHttpClient
+ classUrlConnectionHttpClient + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.httpclient that return IHttpClient
+ IHttpClientUrlConnectionHttpClientBuilder.client() + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/IOpenShiftConnection.html b/documentation/com/openshift/client/class-use/IOpenShiftConnection.html new file mode 100644 index 00000000..c8a27eb0 --- /dev/null +++ b/documentation/com/openshift/client/class-use/IOpenShiftConnection.html @@ -0,0 +1,339 @@ + + + + + + + +Uses of Interface com.openshift.client.IOpenShiftConnection (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Interface
com.openshift.client.IOpenShiftConnection

+
+ + + + + + + + + + + + + + + + + +
+Packages that use IOpenShiftConnection
com.openshift.client  
com.openshift.internal.client  
com.openshift.internal.client.cartridge  
+  +

+ + + + + +
+Uses of IOpenShiftConnection in com.openshift.client
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client that return IOpenShiftConnection
+ IOpenShiftConnectionIUser.getConnection() + +
+           
+ IOpenShiftConnectionOpenShiftConnectionFactory.getConnection(String clientId, + String password) + +
+          Establish a connection with the clientId along with user's password.
+ IOpenShiftConnectionOpenShiftConnectionFactory.getConnection(String clientId, + String username, + String password) + +
+          Establish a connection with the clientId along with user's login and + password.
+ IOpenShiftConnectionOpenShiftConnectionFactory.getConnection(String clientId, + String username, + String password, + String serverUrl) + +
+          Establish a connection with the clientId along with user's login and + password.
+protected  IOpenShiftConnectionOpenShiftConnectionFactory.getConnection(String clientId, + String username, + String password, + String serverUrl, + IHttpClient httpClient) + +
+           
+ IOpenShiftConnectionOpenShiftConnectionFactory.getConnection(String clientId, + String username, + String password, + String authKey, + String authIV, + String serverUrl) + +
+          Establish a connection with the clientId along with user's login and + password.
+  +

+ + + + + +
+Uses of IOpenShiftConnection in com.openshift.internal.client
+  +

+ + + + + + + + + +
Classes in com.openshift.internal.client that implement IOpenShiftConnection
+ classAPIResource + +
+           
+  +

+ + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client that return IOpenShiftConnection
+ IOpenShiftConnectionUserResource.getConnection() + +
+           
+protected  IOpenShiftConnectionApplicationResource.getConnection() + +
+           
+protected  IOpenShiftConnectionAbstractOpenShiftConnectionFactory.getConnection(IRestService service, + String login, + String password) + +
+           
+  +

+ + + + + +
+Uses of IOpenShiftConnection in com.openshift.internal.client.cartridge
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.internal.client.cartridge that return IOpenShiftConnection
+protected  IOpenShiftConnectionAbstractCartridgeQuery.getConnection(IApplication application) + +
+           
+protected  IOpenShiftConnectionAbstractCartridgeQuery.getConnection(IDomain domain) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/IOpenShiftResource.html b/documentation/com/openshift/client/class-use/IOpenShiftResource.html new file mode 100644 index 00000000..0c175424 --- /dev/null +++ b/documentation/com/openshift/client/class-use/IOpenShiftResource.html @@ -0,0 +1,328 @@ + + + + + + + +Uses of Interface com.openshift.client.IOpenShiftResource (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Interface
com.openshift.client.IOpenShiftResource

+
+ + + + + + + + + + + + + + + + + +
+Packages that use IOpenShiftResource
com.openshift.client  
com.openshift.client.cartridge  
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of IOpenShiftResource in com.openshift.client
+  +

+ + + + + + + + + + + + + + + + + + + + + +
Subinterfaces of IOpenShiftResource in com.openshift.client
+ interfaceIApplication + +
+           
+ interfaceIDomain + +
+           
+ interfaceIEnvironmentVariable + +
+           
+ interfaceIUser + +
+           
+  +

+ + + + + +
+Uses of IOpenShiftResource in com.openshift.client.cartridge
+  +

+ + + + + + + + + +
Subinterfaces of IOpenShiftResource in com.openshift.client.cartridge
+ interfaceIEmbeddedCartridge + +
+          Interface to designate a cartridge that has been added and configured
+  +

+ + + + + +
+Uses of IOpenShiftResource in com.openshift.internal.client
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Classes in com.openshift.internal.client that implement IOpenShiftResource
+ classAbstractOpenShiftResource + +
+          The Class AbstractOpenShiftResource.
+ classAPIResource + +
+           
+ classApplicationResource + +
+          The ApplicationResource object is an implementation of com.openshift.client.IApplication, and provides + a runtime model for the real application that resides on the OpenShift platform being accessed.
+ classDomainResource + +
+           
+ classEmbeddedCartridgeResource + +
+          A cartridge that is embedded into an application.
+ classEnvironmentVariableResource + +
+           
+ classGearGroupResource + +
+           
+ classSSHKeyResource + +
+           
+ classUserResource + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/IOpenShiftSSHKey.html b/documentation/com/openshift/client/class-use/IOpenShiftSSHKey.html new file mode 100644 index 00000000..dba7e0e4 --- /dev/null +++ b/documentation/com/openshift/client/class-use/IOpenShiftSSHKey.html @@ -0,0 +1,292 @@ + + + + + + + +Uses of Interface com.openshift.client.IOpenShiftSSHKey (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Interface
com.openshift.client.IOpenShiftSSHKey

+
+ + + + + + + + + + + + + +
+Packages that use IOpenShiftSSHKey
com.openshift.client  
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of IOpenShiftSSHKey in com.openshift.client
+  +

+ + + + + + + + + + + + + + + + + +
Methods in com.openshift.client that return IOpenShiftSSHKey
+ IOpenShiftSSHKeyIUser.getSSHKeyByName(String name) + +
+           
+ IOpenShiftSSHKeyIUser.getSSHKeyByPublicKey(String publicKey) + +
+           
+ IOpenShiftSSHKeyIUser.putSSHKey(String name, + ISSHPublicKey key) + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.client that return types with arguments of type IOpenShiftSSHKey
+ List<IOpenShiftSSHKey>IUser.getSSHKeys() + +
+           
+  +

+ + + + + +
+Uses of IOpenShiftSSHKey in com.openshift.internal.client
+  +

+ + + + + + + + + +
Classes in com.openshift.internal.client that implement IOpenShiftSSHKey
+ classSSHKeyResource + +
+           
+  +

+ + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client that return IOpenShiftSSHKey
+ IOpenShiftSSHKeyUserResource.getSSHKeyByName(String name) + +
+           
+ IOpenShiftSSHKeyUserResource.getSSHKeyByPublicKey(String publicKey) + +
+           
+ IOpenShiftSSHKeyUserResource.putSSHKey(String name, + ISSHPublicKey key) + +
+          Adds the given ssh key with the given name.
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client that return types with arguments of type IOpenShiftSSHKey
+ List<IOpenShiftSSHKey>UserResource.getSSHKeys() + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/ISSHPublicKey.html b/documentation/com/openshift/client/class-use/ISSHPublicKey.html new file mode 100644 index 00000000..e295d37d --- /dev/null +++ b/documentation/com/openshift/client/class-use/ISSHPublicKey.html @@ -0,0 +1,297 @@ + + + + + + + +Uses of Interface com.openshift.client.ISSHPublicKey (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Interface
com.openshift.client.ISSHPublicKey

+
+ + + + + + + + + + + + + + + + + +
+Packages that use ISSHPublicKey
com.openshift.client  
com.openshift.internal.client  
com.openshift.internal.client.ssh  
+  +

+ + + + + +
+Uses of ISSHPublicKey in com.openshift.client
+  +

+ + + + + + + + + +
Subinterfaces of ISSHPublicKey in com.openshift.client
+ interfaceIOpenShiftSSHKey + +
+           
+  +

+ + + + + + + + + + + + + +
Classes in com.openshift.client that implement ISSHPublicKey
+ classSSHKeyPair + +
+           
+ classSSHPublicKey + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.client with parameters of type ISSHPublicKey
+ IOpenShiftSSHKeyIUser.putSSHKey(String name, + ISSHPublicKey key) + +
+           
+  +

+ + + + + +
+Uses of ISSHPublicKey in com.openshift.internal.client
+  +

+ + + + + + + + + +
Classes in com.openshift.internal.client that implement ISSHPublicKey
+ classSSHKeyResource + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client with parameters of type ISSHPublicKey
+ IOpenShiftSSHKeyUserResource.putSSHKey(String name, + ISSHPublicKey key) + +
+          Adds the given ssh key with the given name.
+  +

+ + + + + +
+Uses of ISSHPublicKey in com.openshift.internal.client.ssh
+  +

+ + + + + + + + + +
Classes in com.openshift.internal.client.ssh that implement ISSHPublicKey
+ classAbstractSSHKey + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/ISeverity.html b/documentation/com/openshift/client/class-use/ISeverity.html new file mode 100644 index 00000000..c13eacc5 --- /dev/null +++ b/documentation/com/openshift/client/class-use/ISeverity.html @@ -0,0 +1,276 @@ + + + + + + + +Uses of Interface com.openshift.client.ISeverity (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Interface
com.openshift.client.ISeverity

+
+ + + + + + + + + + + + + +
+Packages that use ISeverity
com.openshift.client  
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of ISeverity in com.openshift.client
+  +

+ + + + + + + + + + + + + + + + + + + + + +
Fields in com.openshift.client declared as ISeverity
+static ISeverityISeverity.DEBUG + +
+           
+static ISeverityISeverity.ERROR + +
+           
+static ISeverityISeverity.INFO + +
+           
+static ISeverityISeverity.RESULT + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.client that return ISeverity
+ ISeverityMessage.getSeverity() + +
+           
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.client with parameters of type ISeverity
+ List<Message>Messages.getBy(IField field, + ISeverity severity) + +
+          Returns the messages of the given field type and severity.
+ MessageMessages.getFirstBy(IField field, + ISeverity severity) + +
+          Returns the first message of the given field type and severity.
+  +

+ + + + + +
+Uses of ISeverity in com.openshift.internal.client
+  +

+ + + + + + + + + +
Classes in com.openshift.internal.client that implement ISeverity
+ classSeverity + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/IUser.html b/documentation/com/openshift/client/class-use/IUser.html new file mode 100644 index 00000000..d30dbc67 --- /dev/null +++ b/documentation/com/openshift/client/class-use/IUser.html @@ -0,0 +1,279 @@ + + + + + + + +Uses of Interface com.openshift.client.IUser (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Interface
com.openshift.client.IUser

+
+ + + + + + + + + + + + + + + + + +
+Packages that use IUser
com.openshift.client  
com.openshift.client.cartridge.selector  
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of IUser in com.openshift.client
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.client that return IUser
+ IUserIOpenShiftConnection.getUser() + +
+          Returns the user associated with the current OpenShift connection.
+ IUserIDomain.getUser() + +
+          Returns the currently connected user that manages this domain.
+  +

+ + + + + +
+Uses of IUser in com.openshift.client.cartridge.selector
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.client.cartridge.selector with parameters of type IUser
+ IStandaloneCartridgeLatestStandaloneCartridge.get(IUser user) + +
+           
+ IEmbeddableCartridgeLatestEmbeddableCartridge.get(IUser user) + +
+           
+  +

+ + + + + +
+Uses of IUser in com.openshift.internal.client
+  +

+ + + + + + + + + +
Classes in com.openshift.internal.client that implement IUser
+ classUserResource + +
+           
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.internal.client that return IUser
+ IUserDomainResource.getUser() + +
+           
+ IUserAPIResource.getUser() + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/InvalidCredentialsOpenShiftException.html b/documentation/com/openshift/client/class-use/InvalidCredentialsOpenShiftException.html new file mode 100644 index 00000000..ea5dc79c --- /dev/null +++ b/documentation/com/openshift/client/class-use/InvalidCredentialsOpenShiftException.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.client.InvalidCredentialsOpenShiftException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.InvalidCredentialsOpenShiftException

+
+No usage of com.openshift.client.InvalidCredentialsOpenShiftException +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/InvalidNameOpenShiftException.html b/documentation/com/openshift/client/class-use/InvalidNameOpenShiftException.html new file mode 100644 index 00000000..44c1644f --- /dev/null +++ b/documentation/com/openshift/client/class-use/InvalidNameOpenShiftException.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.client.InvalidNameOpenShiftException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.InvalidNameOpenShiftException

+
+No usage of com.openshift.client.InvalidNameOpenShiftException +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/Message.html b/documentation/com/openshift/client/class-use/Message.html new file mode 100644 index 00000000..01f1f961 --- /dev/null +++ b/documentation/com/openshift/client/class-use/Message.html @@ -0,0 +1,245 @@ + + + + + + + +Uses of Class com.openshift.client.Message (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.Message

+
+ + + + + + + + + +
+Packages that use Message
com.openshift.client  
+  +

+ + + + + +
+Uses of Message in com.openshift.client
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.client that return Message
+ MessageMessages.getFirstBy(IField field) + +
+          Returns the first message of the given field type.
+ MessageMessages.getFirstBy(IField field, + ISeverity severity) + +
+          Returns the first message of the given field type and severity.
+  +

+ + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client that return types with arguments of type Message
+ List<Message>Messages.getAll() + +
+           
+ List<Message>Messages.getBy(IField field) + +
+          Returns all the message of the given field type.
+ List<Message>Messages.getBy(IField field, + ISeverity severity) + +
+          Returns the messages of the given field type and severity.
+ List<Message>OpenShiftEndpointException.getRestResponseMessage(IField field) + +
+          Returns the message for the given field.
+  +

+ + + + + + + + +
Constructor parameters in com.openshift.client with type arguments of type Message
Messages(Map<IField,List<Message>> messages) + +
+          Instantiates a new abstract open shift resource.
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/Messages.html b/documentation/com/openshift/client/class-use/Messages.html new file mode 100644 index 00000000..5282a0a5 --- /dev/null +++ b/documentation/com/openshift/client/class-use/Messages.html @@ -0,0 +1,356 @@ + + + + + + + +Uses of Class com.openshift.client.Messages (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.Messages

+
+ + + + + + + + + + + + + + + + + +
+Packages that use Messages
com.openshift.client  
com.openshift.internal.client  
com.openshift.internal.client.response  
+  +

+ + + + + +
+Uses of Messages in com.openshift.client
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.client that return Messages
+ MessagesIOpenShiftResource.getMessages() + +
+          Returns all the (creation log) messages.
+ MessagesOpenShiftEndpointException.getRestResponseMessages() + +
+           
+  +

+ + + + + +
+Uses of Messages in com.openshift.internal.client
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client that return Messages
+ MessagesAbstractOpenShiftResource.getMessages() + +
+           
+  +

+ + + + + + + + + + + + + + + + + +
Constructors in com.openshift.internal.client with parameters of type Messages
AbstractOpenShiftResource(IRestService service, + Map<String,Link> links, + Messages messages) + +
+          Instantiates a new abstract open shift resource.
ApplicationResource(String name, + String uuid, + String creationTime, + Messages messages, + String applicationUrl, + String sshUrl, + String gitUrl, + String initialGitUrl, + IGearProfile gearProfile, + ApplicationScale scale, + List<String> aliases, + Map<String,CartridgeResourceDTO> cartridgesByName, + Map<String,Link> links, + DomainResource domain) + +
+          Instantiates a new application.
DomainResource(String namespace, + String suffix, + Map<String,Link> links, + Messages messages, + APIResource api) + +
+           
EnvironmentVariableResource(String name, + String value, + Messages messages, + Map<String,Link> links, + ApplicationResource application) + +
+           
+  +

+ + + + + +
+Uses of Messages in com.openshift.internal.client.response
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.internal.client.response that return Messages
+ MessagesRestResponse.getMessages() + +
+          Gets the messages.
+ MessagesBaseResourceDTO.getMessages() + +
+          Returns the messages that were reported when this resource was created.
+  +

+ + + + + + + + + + + + + + + + + +
Constructors in com.openshift.internal.client.response with parameters of type Messages
BaseResourceDTO(Map<String,Link> links, + Messages messages) + +
+          Instantiates a new base resource dto.
CartridgeResourceDTO(String name, + String displayName, + String description, + String type, + URL url, + CartridgeResourceProperties properties, + Map<String,Link> links, + Messages messages) + +
+           
EnvironmentVariableResourceDTO(String name, + String value, + Map<String,Link> links, + Messages messages) + +
+          Instantiates a new environment variable resource dto.
RestResponse(String status, + Messages messages, + Object data, + EnumDataType dataType) + +
+          Instantiates a new response.
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/NotFoundOpenShiftException.html b/documentation/com/openshift/client/class-use/NotFoundOpenShiftException.html new file mode 100644 index 00000000..0bb18789 --- /dev/null +++ b/documentation/com/openshift/client/class-use/NotFoundOpenShiftException.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.client.NotFoundOpenShiftException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.NotFoundOpenShiftException

+
+No usage of com.openshift.client.NotFoundOpenShiftException +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/OpenShiftApplicationNotAvailableException.html b/documentation/com/openshift/client/class-use/OpenShiftApplicationNotAvailableException.html new file mode 100644 index 00000000..a8247435 --- /dev/null +++ b/documentation/com/openshift/client/class-use/OpenShiftApplicationNotAvailableException.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.client.OpenShiftApplicationNotAvailableException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.OpenShiftApplicationNotAvailableException

+
+No usage of com.openshift.client.OpenShiftApplicationNotAvailableException +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/OpenShiftConnectionFactory.html b/documentation/com/openshift/client/class-use/OpenShiftConnectionFactory.html new file mode 100644 index 00000000..70a31fce --- /dev/null +++ b/documentation/com/openshift/client/class-use/OpenShiftConnectionFactory.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.client.OpenShiftConnectionFactory (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.OpenShiftConnectionFactory

+
+No usage of com.openshift.client.OpenShiftConnectionFactory +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/OpenShiftEndpointException.html b/documentation/com/openshift/client/class-use/OpenShiftEndpointException.html new file mode 100644 index 00000000..7185cb31 --- /dev/null +++ b/documentation/com/openshift/client/class-use/OpenShiftEndpointException.html @@ -0,0 +1,197 @@ + + + + + + + +Uses of Class com.openshift.client.OpenShiftEndpointException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.OpenShiftEndpointException

+
+ + + + + + + + + +
+Packages that use OpenShiftEndpointException
com.openshift.client  
+  +

+ + + + + +
+Uses of OpenShiftEndpointException in com.openshift.client
+  +

+ + + + + + + + + + + + + + + + + +
Subclasses of OpenShiftEndpointException in com.openshift.client
+ classInvalidCredentialsOpenShiftException + +
+           
+ classNotFoundOpenShiftException + +
+           
+ classOpenShiftTimeoutException + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/OpenShiftException.html b/documentation/com/openshift/client/class-use/OpenShiftException.html new file mode 100644 index 00000000..7553c205 --- /dev/null +++ b/documentation/com/openshift/client/class-use/OpenShiftException.html @@ -0,0 +1,2077 @@ + + + + + + + +Uses of Class com.openshift.client.OpenShiftException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.OpenShiftException

+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+Packages that use OpenShiftException
com.openshift.client  
com.openshift.client.cartridge  
com.openshift.client.configuration  
com.openshift.internal.client  
com.openshift.internal.client.response  
+  +

+ + + + + +
+Uses of OpenShiftException in com.openshift.client
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Subclasses of OpenShiftException in com.openshift.client
+ classInvalidCredentialsOpenShiftException + +
+           
+ classInvalidNameOpenShiftException + +
+           
+ classNotFoundOpenShiftException + +
+           
+ classOpenShiftApplicationNotAvailableException + +
+           
+ classOpenShiftEndpointException + +
+           
+ classOpenShiftRequestException + +
+           
+ classOpenShiftSSHKeyException + +
+           
+ classOpenShiftSSHOperationException + +
+          OpenShift Exception that encapsulates an underlying exception that occurred during an SSH operation.
+ classOpenShiftTimeoutException + +
+           
+ classOpenShiftUnknonwSSHKeyTypeException + +
+           
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client that throw OpenShiftException
+ voidIApplication.addAlias(String string) + +
+          Add application alias
+ IEmbeddedCartridgeIApplication.addEmbeddableCartridge(IEmbeddableCartridge cartridge) + +
+          Adds the given embeddable cartridge to this application.
+ List<IEmbeddedCartridge>IApplication.addEmbeddableCartridges(Collection<IEmbeddableCartridge> cartridge) + +
+          Adds all given embedded cartridges from this app, given their names.
+ IEnvironmentVariableIApplication.addEnvironmentVariable(String name, + String value) + +
+          Adds an environment variable to this application.
+ Map<String,IEnvironmentVariable>IApplication.addEnvironmentVariables(Map<String,String> environmentVariables) + +
+          Adds a map of environment variables to the application
+static SSHKeyPairSSHKeyPair.create(SSHKeyType type, + String passPhrase, + String privateKeyPath, + String publicKeyPath) + +
+          Creates private and public ssh-rsa keys and stores them to the given + paths.
+static SSHKeyPairSSHKeyPair.create(String passPhrase, + String privateKeyPath, + String publicKeyPath) + +
+           
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge) + +
+           
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale) + +
+           
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile) + +
+           
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl) + +
+          Creates a new application with the given name and the given + cartridge/framework.
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + IEmbeddableCartridge... cartridges) + +
+          Creates a new application with the given name and the given + cartridge/framework.
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + Map<String,String> environmentVariable, + IEmbeddableCartridge... cartridges) + +
+          Creates a new application with the given name and the given + cartridge/framework.
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + IGearProfile gearProfile) + +
+           
+ IApplicationIDomain.createApplication(String name, + IStandaloneCartridge cartridge, + String initialGitUrl) + +
+           
+ IDomainIUser.createDomain(String id) + +
+           
+ voidIOpenShiftSSHKey.destroy() + +
+           
+ voidIEnvironmentVariable.destroy() + +
+          Destroys this environment variable
+ voidIDomain.destroy() + +
+          Destroys the current domain.
+ voidIApplication.destroy() + +
+          Destroys this application (and removes it from the list of available + applications)
+ voidIDomain.destroy(boolean force) + +
+          Destroys the current domain, using the 'force' parameter to also destroy the domain applications.
+ IApplicationIDomain.getApplicationByName(String name) + +
+          Returns the application identified by the given name.
+ List<IApplication>IDomain.getApplications() + +
+           
+ List<IApplication>IDomain.getApplicationsByCartridge(IStandaloneCartridge cartridge) + +
+           
+ List<String>IDomain.getAvailableCartridgeNames() + +
+          Returns the list of cartridges that can be used to create a new application.
+ List<IGearProfile>IDomain.getAvailableGearProfiles() + +
+          Returns the list of available gear size that the user can choose when creating a new application (application's gear size can't be changed after creation).
+ IOpenShiftConnectionOpenShiftConnectionFactory.getConnection(String clientId, + String password) + +
+          Establish a connection with the clientId along with user's password.
+ IOpenShiftConnectionOpenShiftConnectionFactory.getConnection(String clientId, + String username, + String password) + +
+          Establish a connection with the clientId along with user's login and + password.
+ IOpenShiftConnectionOpenShiftConnectionFactory.getConnection(String clientId, + String username, + String password, + String serverUrl) + +
+          Establish a connection with the clientId along with user's login and + password.
+protected  IOpenShiftConnectionOpenShiftConnectionFactory.getConnection(String clientId, + String username, + String password, + String serverUrl, + IHttpClient httpClient) + +
+           
+ IOpenShiftConnectionOpenShiftConnectionFactory.getConnection(String clientId, + String username, + String password, + String authKey, + String authIV, + String serverUrl) + +
+          Establish a connection with the clientId along with user's login and + password.
+ IDomainIUser.getDefaultDomain() + +
+           
+ IDomainIUser.getDomain(String id) + +
+           
+ List<IDomain>IUser.getDomains() + +
+           
+ List<IDomain>IOpenShiftConnection.getDomains() + +
+          Returns the domains associated with the current OpenShift connection.
+ List<IEmbeddableCartridge>IOpenShiftConnection.getEmbeddableCartridges() + +
+          Returns the available embeddable cartridges associated with the current + OpenShift connection.
+ IEmbeddedCartridgeIApplication.getEmbeddedCartridge(IEmbeddableCartridge cartridge) + +
+          Returns the embedded cartridge in this application.
+ IEmbeddedCartridgeIApplication.getEmbeddedCartridge(String cartridgeName) + +
+          Returns the embedded cartridge given its name.
+ List<IEmbeddedCartridge>IApplication.getEmbeddedCartridges() + +
+          Returns all embedded cartridges.
+ IEnvironmentVariableIApplication.getEnvironmentVariable(String name) + +
+          Return the environment variable for the specified name
+ Collection<IGearGroup>IApplication.getGearGroups() + +
+          Returns the gear groups for this application.
+ RestResponseOpenShiftEndpointException.getRestResponse() + +
+           
+ IOpenShiftSSHKeyIUser.getSSHKeyByName(String name) + +
+           
+ IOpenShiftSSHKeyIUser.getSSHKeyByPublicKey(String publicKey) + +
+           
+ List<IOpenShiftSSHKey>IUser.getSSHKeys() + +
+           
+ List<IStandaloneCartridge>IOpenShiftConnection.getStandaloneCartridges() + +
+          Returns the available standalone cartridges associated with the current + OpenShift connection.
+ IUserIOpenShiftConnection.getUser() + +
+          Returns the user associated with the current OpenShift connection.
+ IUserIDomain.getUser() + +
+          Returns the currently connected user that manages this domain.
+ booleanIDomain.hasApplicationByCartridge(IStandaloneCartridge cartridge) + +
+           
+ booleanIDomain.hasApplicationByName(String name) + +
+          Returns true if the application identified by the given name exists in the domain.
+ booleanIUser.hasDomain() + +
+           
+ booleanIUser.hasDomain(String id) + +
+           
+ booleanIApplication.hasEmbeddedCartridge(IEmbeddableCartridge cartridge) + +
+          Returns true if this application has an embedded cartridge.
+ booleanIApplication.hasEmbeddedCartridge(String cartridgeName) + +
+          Returns true if this application has an embedded cartridge.
+ booleanIApplication.hasEnvironmentVariable(String name) + +
+          Checks if the environment variable is present in the application.
+ booleanIUser.hasSSHKeyName(String name) + +
+           
+ booleanIUser.hasSSHPublicKey(String publicKey) + +
+           
+static SSHKeyPairSSHKeyPair.load(String privateKeyPath, + String publicKeyPath) + +
+          Loads existing private and public ssh key from the given paths.
+ IOpenShiftSSHKeyIUser.putSSHKey(String name, + ISSHPublicKey key) + +
+           
+ voidIOpenShiftResource.refresh() + +
+          Refresh the resource and its list of children resources that were + previously loaded
+ voidIApplication.refresh() + +
+          Refresh the application but reloading its content from OpenShift.
+ voidIApplication.removeAlias(String alias) + +
+          Remove application alias
+ voidIApplication.removeEmbeddedCartridge(IEmbeddableCartridge cartridge) + +
+          Removes the given embedded cartridge that is equal to the given + embeddable cartridge.
+ voidIApplication.removeEmbeddedCartridges(Collection<IEmbeddableCartridge> cartridges) + +
+          Removes the given embedded cartridges in this application that are equal to the + given IEmbeddableCartridge.
+ voidIApplication.removeEnvironmentVariable(String name) + +
+          Removes the environment variables with the given name from this application.
+ voidIDomain.rename(String id) + +
+          Rename the current domain with the given id....
+ voidIApplication.restart() + +
+          Restarts this application.
+ voidIApplication.scaleDown() + +
+          Scale down application
+ voidIApplication.scaleUp() + +
+          Scale up application
+ voidIOpenShiftSSHKey.setKeyType(SSHKeyType type, + String publicKey) + +
+          Sets the new type and public key of this ssh key to the OpenShift PaaS
+ voidIOpenShiftSSHKey.setPublicKey(String publicKey) + +
+          Sets the public key portion of this ssh key to the OpenShift PaaS.
+ voidIApplication.start() + +
+          Starts this application.
+ voidIApplication.stop() + +
+          Stops this application.
+ voidIApplication.stop(boolean force) + +
+          Stops this application
+ voidIEnvironmentVariable.update(String value) + +
+          Updates this environment variable to the given value.
+ booleanIApplication.waitForAccessible(long timeout) + +
+          Waits for this application to become accessible on its public url.
+ Future<Boolean>IApplication.waitForAccessibleAsync(long timeout) + +
+          Returns a Future that the caller can use to wait for the application to + become accessible on its public url.
+  +

+ + + + + + + + + + + + + + + + + +
Constructors in com.openshift.client that throw OpenShiftException
InvalidCredentialsOpenShiftException(String url, + HttpClientException cause, + RestResponse restResponse) + +
+           
NotFoundOpenShiftException(String url, + HttpClientException e, + RestResponse restResponse) + +
+           
SSHPublicKey(File publicKeyFile) + +
+           
SSHPublicKey(String publicKeyFilePath) + +
+           
+  +

+ + + + + +
+Uses of OpenShiftException in com.openshift.client.cartridge
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.client.cartridge that throw OpenShiftException
+ voidIEmbeddedCartridge.destroy() + +
+          Destroys this cartridge (and removes it from the list of existing cartridges)
+ URLIEmbeddedCartridge.getUrl() + +
+          The url at which this cartridge may be reached
+  +

+ + + + + +
+Uses of OpenShiftException in com.openshift.client.configuration
+  +

+ + + + + + + + + + + + + + + + + + + + +
Constructors in com.openshift.client.configuration that throw OpenShiftException
DefaultConfiguration() + +
+           
OpenShiftConfiguration() + +
+           
SystemConfiguration(IOpenShiftConfiguration parentConfiguration) + +
+           
SystemProperties(IOpenShiftConfiguration parentConfiguration) + +
+           
UserConfiguration(SystemConfiguration systemConfiguration) + +
+           
+  +

+ + + + + +
+Uses of OpenShiftException in com.openshift.internal.client
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client that throw OpenShiftException
+ voidApplicationResource.addAlias(String alias) + +
+           
+ IEmbeddedCartridgeApplicationResource.addEmbeddableCartridge(IEmbeddableCartridge cartridge) + +
+          Adds the given embedded cartridge to this application.
+ List<IEmbeddedCartridge>ApplicationResource.addEmbeddableCartridges(Collection<IEmbeddableCartridge> cartridges) + +
+           
+ IEnvironmentVariableApplicationResource.addEnvironmentVariable(String name, + String value) + +
+           
+ Map<String,IEnvironmentVariable>ApplicationResource.addEnvironmentVariables(Map<String,String> environmentVariables) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + IEmbeddableCartridge... cartridges) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + Map<String,String> environmentVariables, + IEmbeddableCartridge... cartridges) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + String initialGitUrl) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + IGearProfile gearProfile) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + IGearProfile gearProfile, + String initialGitUrl) + +
+           
+ IApplicationDomainResource.createApplication(String name, + IStandaloneCartridge cartridge, + String initialGitUrl) + +
+           
+ IDomainUserResource.createDomain(String id) + +
+           
+ IDomainAPIResource.createDomain(String id) + +
+           
+ voidSSHKeyResource.destroy() + +
+           
+ voidEnvironmentVariableResource.destroy() + +
+           
+ voidEmbeddedCartridgeResource.destroy() + +
+           
+ voidDomainResource.destroy() + +
+           
+ voidApplicationResource.destroy() + +
+           
+ voidDomainResource.destroy(boolean force) + +
+           
+protected + + + + +
+<DTO> DTO
+
AbstractOpenShiftResource.ServiceRequest.execute(int timeout, + IMediaType mediaType, + Parameter... parameters) + +
+           
+protected + + + + +
+<DTO> DTO
+
AbstractOpenShiftResource.ServiceRequest.execute(int timeout, + List<Parameter> urlParameter, + IMediaType mediaType, + Parameter... parameters) + +
+           
+protected + + + + +
+<DTO> DTO
+
AbstractOpenShiftResource.ServiceRequest.execute(int timeout, + List<Parameter> urlParameter, + Parameter... parameters) + +
+           
+protected + + + + +
+<DTO> DTO
+
AbstractOpenShiftResource.ServiceRequest.execute(int timeout, + Parameter... parameters) + +
+           
+protected + + + + +
+<DTO> DTO
+
AbstractOpenShiftResource.ServiceRequest.execute(List<Parameter> urlParameter, + Parameter... parameters) + +
+           
+protected + + + + +
+<DTO> DTO
+
AbstractOpenShiftResource.ServiceRequest.execute(Parameter... parameters) + +
+           
+ IApplicationDomainResource.getApplicationByName(String name) + +
+           
+ List<IApplication>DomainResource.getApplications() + +
+           
+ List<IApplication>DomainResource.getApplicationsByCartridge(IStandaloneCartridge cartridge) + +
+           
+ List<String>DomainResource.getAvailableCartridgeNames() + +
+           
+ List<IGearProfile>DomainResource.getAvailableGearProfiles() + +
+           
+protected  IOpenShiftConnectionAbstractOpenShiftConnectionFactory.getConnection(IRestService service, + String login, + String password) + +
+           
+ IDomainUserResource.getDefaultDomain() + +
+           
+ IDomainUserResource.getDomain(String id) + +
+           
+ IDomainAPIResource.getDomain(String id) + +
+           
+ List<IDomain>UserResource.getDomains() + +
+           
+ List<IDomain>APIResource.getDomains() + +
+           
+ List<IEmbeddableCartridge>APIResource.getEmbeddableCartridges() + +
+           
+ IEmbeddedCartridgeApplicationResource.getEmbeddedCartridge(IEmbeddableCartridge cartridge) + +
+           
+ IEmbeddedCartridgeApplicationResource.getEmbeddedCartridge(String cartridgeName) + +
+           
+ List<IEmbeddedCartridge>ApplicationResource.getEmbeddedCartridges() + +
+           
+ Map<String,IEnvironmentVariable>ApplicationResource.getEnvironmentVariables() + +
+           
+ Collection<IGearGroup>ApplicationResource.getGearGroups() + +
+           
+protected  LinkAbstractOpenShiftResource.getLink(String linkName) + +
+          Gets the link for the given name.
+protected  List<IApplication>DomainResource.getOrLoadApplications() + +
+           
+protected  Map<String,IEnvironmentVariable>ApplicationResource.getOrLoadEnvironmentVariables() + +
+           
+ IOpenShiftSSHKeyUserResource.getSSHKeyByName(String name) + +
+           
+ IOpenShiftSSHKeyUserResource.getSSHKeyByPublicKey(String publicKey) + +
+           
+ List<IOpenShiftSSHKey>UserResource.getSSHKeys() + +
+           
+ List<IStandaloneCartridge>APIResource.getStandaloneCartridges() + +
+           
+ IUserDomainResource.getUser() + +
+           
+ IUserAPIResource.getUser() + +
+           
+ booleanDomainResource.hasApplicationByCartridge(IStandaloneCartridge cartridge) + +
+           
+ booleanDomainResource.hasApplicationByName(String name) + +
+           
+ booleanUserResource.hasDomain() + +
+           
+ booleanUserResource.hasDomain(String id) + +
+           
+protected  booleanAPIResource.hasDomain(String name) + +
+           
+ booleanApplicationResource.hasEmbeddedCartridge(IEmbeddableCartridge cartridge) + +
+           
+ booleanApplicationResource.hasEmbeddedCartridge(String cartridgeName) + +
+           
+ booleanApplicationResource.hasEnvironmentVariable(String name) + +
+           
+ booleanUserResource.hasSSHKeyName(String name) + +
+           
+ booleanUserResource.hasSSHPublicKey(String publicKey) + +
+           
+ IOpenShiftSSHKeyUserResource.putSSHKey(String name, + ISSHPublicKey key) + +
+          Adds the given ssh key with the given name.
+ voidUserResource.refresh() + +
+           
+ voidSSHKeyResource.refresh() + +
+           
+ voidGearGroupResource.refresh() + +
+           
+ voidEnvironmentVariableResource.refresh() + +
+           
+ voidEmbeddedCartridgeResource.refresh() + +
+          Refreshes the content of this embedded cartridge.
+ voidDomainResource.refresh() + +
+           
+ voidApplicationResource.refresh() + +
+           
+ voidAPIResource.refresh() + +
+           
+protected  voidApplicationResource.refreshEmbeddedCartridges() + +
+          Queries the backend to list the embedded cartridges and adds the new ones + & update the ones that are already present
+ voidApplicationResource.removeAlias(String alias) + +
+           
+ voidApplicationResource.removeEmbeddedCartridge(IEmbeddableCartridge cartridge) + +
+           
+protected  voidApplicationResource.removeEmbeddedCartridge(IEmbeddedCartridge embeddedCartridge) + +
+          "callback" from the embeddedCartridge once it has been destroyed.
+ voidApplicationResource.removeEmbeddedCartridges(Collection<IEmbeddableCartridge> cartridges) + +
+           
+ voidDomainResource.rename(String id) + +
+           
+ RestResponseRestService.request(Link link, + int timeout, + IMediaType requestMediaType, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + int timeout, + IMediaType mediaType, + Parameter... parameters) + +
+          Requests the given link sending the given parameters while encoding the + parameters with the given media type and respecting the given timeout.
+ RestResponseRestService.request(Link link, + int timeout, + List<Parameter> urlParameters, + IMediaType requestMediaType, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + int timeout, + List<Parameter> urlParameters, + IMediaType mediaType, + Parameter... parameters) + +
+           
+ RestResponseRestService.request(Link link, + int timeout, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + int timeout, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+ RestResponseRestService.request(Link link, + int timeout, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + int timeout, + Parameter... parameters) + +
+           
+ RestResponseRestService.request(Link link, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+ RestResponseRestService.request(Link link, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + Parameter... parameters) + +
+           
+ voidApplicationResource.restart() + +
+           
+ voidApplicationResource.scaleDown() + +
+           
+ voidApplicationResource.scaleUp() + +
+           
+ voidSSHKeyResource.setKeyType(SSHKeyType type, + String publicKey) + +
+           
+ voidSSHKeyResource.setPublicKey(String publicKey) + +
+           
+ voidApplicationResource.start() + +
+           
+ voidApplicationResource.stop() + +
+           
+ voidApplicationResource.stop(boolean force) + +
+           
+ voidEnvironmentVariableResource.update(String newValue) + +
+           
+protected  voidApplicationResource.updateEnvironmentVariables() + +
+           
+ booleanApplicationResource.waitForAccessible(long timeout) + +
+           
+ Future<Boolean>ApplicationResource.waitForAccessibleAsync(long timeout) + +
+           
+  +

+ + + + + +
+Uses of OpenShiftException in com.openshift.internal.client.response
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.internal.client.response that throw OpenShiftException
+ RestResponseOpenShiftJsonDTOFactory.get(String json) + +
+           
+ RestResponseIRestResponseFactory.get(String restResponse) + +
+          Returns a RestResponse instance for a given rest response string.
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/OpenShiftRequestException.html b/documentation/com/openshift/client/class-use/OpenShiftRequestException.html new file mode 100644 index 00000000..46394680 --- /dev/null +++ b/documentation/com/openshift/client/class-use/OpenShiftRequestException.html @@ -0,0 +1,209 @@ + + + + + + + +Uses of Class com.openshift.client.OpenShiftRequestException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.OpenShiftRequestException

+
+ + + + + + + + + +
+Packages that use OpenShiftRequestException
com.openshift.internal.client.response  
+  +

+ + + + + +
+Uses of OpenShiftRequestException in com.openshift.internal.client.response
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.response that throw OpenShiftRequestException
+ voidLink.validateRequestParameters(Parameter[] parameters) + +
+           
+  +

+ + + + + + + + + + + +
Constructors in com.openshift.internal.client.response that throw OpenShiftRequestException
LinkParameter(String name, + LinkParameterType type, + String defaultValue, + String description, + List<String> validOptions) + +
+           
LinkParameter(String name, + String type, + String defaultValue, + String description, + List<String> validOptions) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/OpenShiftSSHKeyException.html b/documentation/com/openshift/client/class-use/OpenShiftSSHKeyException.html new file mode 100644 index 00000000..51fc7f95 --- /dev/null +++ b/documentation/com/openshift/client/class-use/OpenShiftSSHKeyException.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.client.OpenShiftSSHKeyException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.OpenShiftSSHKeyException

+
+No usage of com.openshift.client.OpenShiftSSHKeyException +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/OpenShiftSSHOperationException.html b/documentation/com/openshift/client/class-use/OpenShiftSSHOperationException.html new file mode 100644 index 00000000..de043988 --- /dev/null +++ b/documentation/com/openshift/client/class-use/OpenShiftSSHOperationException.html @@ -0,0 +1,376 @@ + + + + + + + +Uses of Class com.openshift.client.OpenShiftSSHOperationException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.OpenShiftSSHOperationException

+
+ + + + + + + + + + + + + + + + + +
+Packages that use OpenShiftSSHOperationException
com.openshift.client  
com.openshift.internal.client  
com.openshift.internal.client.ssh  
+  +

+ + + + + +
+Uses of OpenShiftSSHOperationException in com.openshift.client
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client that throw OpenShiftSSHOperationException
+ List<String>IApplication.getEnvironmentProperties() + +
+          Retrieves the list of environment properties.
+ Map<String,IEnvironmentVariable>IApplication.getEnvironmentVariables() + +
+          Retrieves the map of environment variables
+ List<IApplicationPortForwarding>IApplication.getForwardablePorts() + +
+          Returns the list of forwardable ports on OpenShift for this application.
+ booleanIApplication.isPortFowardingStarted() + +
+          Returns true if the port-forwarding has been started, false otherwise.
+ booleanIApplicationPortForwarding.isStarted(com.jcraft.jsch.Session session) + +
+           
+ List<IApplicationPortForwarding>IApplication.refreshForwardablePorts() + +
+          Refreshes the list of port-forwarding.
+ voidIApplicationPortForwarding.start(com.jcraft.jsch.Session session) + +
+          Start the binding, ie, open a SSH tunnel between local address:port and remote address:port.
+ List<IApplicationPortForwarding>IApplication.startPortForwarding() + +
+           
+ voidIApplicationPortForwarding.stop(com.jcraft.jsch.Session session) + +
+          Stop the SSH tunnel.
+ List<IApplicationPortForwarding>IApplication.stopPortForwarding() + +
+          Stop the port-forwarding for all ports.
+  +

+ + + + + +
+Uses of OpenShiftSSHOperationException in com.openshift.internal.client
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client that throw OpenShiftSSHOperationException
+ List<String>ApplicationResource.getEnvironmentProperties() + +
+           
+ List<IApplicationPortForwarding>ApplicationResource.getForwardablePorts() + +
+           
+ booleanApplicationResource.isPortFowardingStarted() + +
+           
+ List<IApplicationPortForwarding>ApplicationResource.refreshForwardablePorts() + +
+           
+protected  List<String>ApplicationResource.sshExecCmd(String command, + ApplicationResource.SshStreams sshStream) + +
+           
+ List<IApplicationPortForwarding>ApplicationResource.startPortForwarding() + +
+           
+ List<IApplicationPortForwarding>ApplicationResource.stopPortForwarding() + +
+           
+  +

+ + + + + +
+Uses of OpenShiftSSHOperationException in com.openshift.internal.client.ssh
+  +

+ + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client.ssh that throw OpenShiftSSHOperationException
+ booleanApplicationPortForwarding.isStarted(com.jcraft.jsch.Session session) + +
+           
+ voidApplicationPortForwarding.start(com.jcraft.jsch.Session session) + +
+           
+ voidApplicationPortForwarding.stop(com.jcraft.jsch.Session session) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/OpenShiftTimeoutException.html b/documentation/com/openshift/client/class-use/OpenShiftTimeoutException.html new file mode 100644 index 00000000..c0439e1f --- /dev/null +++ b/documentation/com/openshift/client/class-use/OpenShiftTimeoutException.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.client.OpenShiftTimeoutException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.OpenShiftTimeoutException

+
+No usage of com.openshift.client.OpenShiftTimeoutException +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/OpenShiftUnknonwSSHKeyTypeException.html b/documentation/com/openshift/client/class-use/OpenShiftUnknonwSSHKeyTypeException.html new file mode 100644 index 00000000..a57cd665 --- /dev/null +++ b/documentation/com/openshift/client/class-use/OpenShiftUnknonwSSHKeyTypeException.html @@ -0,0 +1,342 @@ + + + + + + + +Uses of Class com.openshift.client.OpenShiftUnknonwSSHKeyTypeException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.OpenShiftUnknonwSSHKeyTypeException

+
+ + + + + + + + + + + + + + + + + +
+Packages that use OpenShiftUnknonwSSHKeyTypeException
com.openshift.client  
com.openshift.internal.client  
com.openshift.internal.client.ssh  
+  +

+ + + + + +
+Uses of OpenShiftUnknonwSSHKeyTypeException in com.openshift.client
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client that throw OpenShiftUnknonwSSHKeyTypeException
+static SSHKeyTypeSSHKeyType.getByJSchKeyType(int jschKeyType) + +
+           
+static SSHKeyTypeSSHKeyType.getByJSchKeyType(com.jcraft.jsch.KeyPair keyPair) + +
+           
+static SSHKeyTypeSSHKeyType.getByTypeId(String keyTypeId) + +
+           
+ IOpenShiftSSHKeyIUser.getSSHKeyByName(String name) + +
+           
+ IOpenShiftSSHKeyIUser.getSSHKeyByPublicKey(String publicKey) + +
+           
+ booleanIUser.hasSSHKeyName(String name) + +
+           
+ booleanIUser.hasSSHPublicKey(String publicKey) + +
+           
+  +

+ + + + + +
+Uses of OpenShiftUnknonwSSHKeyTypeException in com.openshift.internal.client
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client that throw OpenShiftUnknonwSSHKeyTypeException
+ IOpenShiftSSHKeyUserResource.getSSHKeyByName(String name) + +
+           
+ IOpenShiftSSHKeyUserResource.getSSHKeyByPublicKey(String publicKey) + +
+           
+ List<IOpenShiftSSHKey>UserResource.getSSHKeys() + +
+           
+ booleanUserResource.hasSSHKeyName(String name) + +
+           
+ booleanUserResource.hasSSHPublicKey(String publicKey) + +
+           
+protected  voidSSHKeyResource.update(KeyResourceDTO dto) + +
+           
+  +

+ + + + + + + + +
Constructors in com.openshift.internal.client that throw OpenShiftUnknonwSSHKeyTypeException
SSHKeyResource(KeyResourceDTO dto, + UserResource user) + +
+           
+  +

+ + + + + +
+Uses of OpenShiftUnknonwSSHKeyTypeException in com.openshift.internal.client.ssh
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.ssh that throw OpenShiftUnknonwSSHKeyTypeException
+protected  voidAbstractSSHKey.setKeyType(String keyTypeId) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/SSHKeyPair.html b/documentation/com/openshift/client/class-use/SSHKeyPair.html new file mode 100644 index 00000000..825bd342 --- /dev/null +++ b/documentation/com/openshift/client/class-use/SSHKeyPair.html @@ -0,0 +1,204 @@ + + + + + + + +Uses of Class com.openshift.client.SSHKeyPair (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.SSHKeyPair

+
+ + + + + + + + + +
+Packages that use SSHKeyPair
com.openshift.client  
+  +

+ + + + + +
+Uses of SSHKeyPair in com.openshift.client
+  +

+ + + + + + + + + + + + + + + + + +
Methods in com.openshift.client that return SSHKeyPair
+static SSHKeyPairSSHKeyPair.create(SSHKeyType type, + String passPhrase, + String privateKeyPath, + String publicKeyPath) + +
+          Creates private and public ssh-rsa keys and stores them to the given + paths.
+static SSHKeyPairSSHKeyPair.create(String passPhrase, + String privateKeyPath, + String publicKeyPath) + +
+           
+static SSHKeyPairSSHKeyPair.load(String privateKeyPath, + String publicKeyPath) + +
+          Loads existing private and public ssh key from the given paths.
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/SSHKeyType.html b/documentation/com/openshift/client/class-use/SSHKeyType.html new file mode 100644 index 00000000..873db358 --- /dev/null +++ b/documentation/com/openshift/client/class-use/SSHKeyType.html @@ -0,0 +1,356 @@ + + + + + + + +Uses of Class com.openshift.client.SSHKeyType (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.SSHKeyType

+
+ + + + + + + + + + + + + + + + + +
+Packages that use SSHKeyType
com.openshift.client  
com.openshift.internal.client  
com.openshift.internal.client.ssh  
+  +

+ + + + + +
+Uses of SSHKeyType in com.openshift.client
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client that return SSHKeyType
+static SSHKeyTypeSSHKeyType.getByJSchKeyType(int jschKeyType) + +
+           
+static SSHKeyTypeSSHKeyType.getByJSchKeyType(com.jcraft.jsch.KeyPair keyPair) + +
+           
+static SSHKeyTypeSSHKeyType.getByTypeId(String keyTypeId) + +
+           
+ SSHKeyTypeISSHPublicKey.getKeyType() + +
+          Returns the type of the key (ssh-rsa or ssh-dss)
+static SSHKeyTypeSSHKeyType.valueOf(String name) + +
+          Returns the enum constant of this type with the specified name.
+static SSHKeyType[]SSHKeyType.values() + +
+          Returns an array containing the constants of this enum type, in +the order they are declared.
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.client with parameters of type SSHKeyType
+static SSHKeyPairSSHKeyPair.create(SSHKeyType type, + String passPhrase, + String privateKeyPath, + String publicKeyPath) + +
+          Creates private and public ssh-rsa keys and stores them to the given + paths.
+ voidIOpenShiftSSHKey.setKeyType(SSHKeyType type, + String publicKey) + +
+          Sets the new type and public key of this ssh key to the OpenShift PaaS
+  +

+ + + + + +
+Uses of SSHKeyType in com.openshift.internal.client
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client that return SSHKeyType
+ SSHKeyTypeSSHKeyResource.getKeyType() + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client with parameters of type SSHKeyType
+ voidSSHKeyResource.setKeyType(SSHKeyType type, + String publicKey) + +
+           
+  +

+ + + + + +
+Uses of SSHKeyType in com.openshift.internal.client.ssh
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.ssh that return SSHKeyType
+ SSHKeyTypeAbstractSSHKey.getKeyType() + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.ssh with parameters of type SSHKeyType
+protected  voidAbstractSSHKey.setKeyType(SSHKeyType keyType) + +
+           
+  +

+ + + + + + + + +
Constructors in com.openshift.internal.client.ssh with parameters of type SSHKeyType
AbstractSSHKey(SSHKeyType sshKeyType) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/class-use/SSHPublicKey.html b/documentation/com/openshift/client/class-use/SSHPublicKey.html new file mode 100644 index 00000000..11eeac0c --- /dev/null +++ b/documentation/com/openshift/client/class-use/SSHPublicKey.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.client.SSHPublicKey (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.SSHPublicKey

+
+No usage of com.openshift.client.SSHPublicKey +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/configuration/AbstractOpenshiftConfiguration.html b/documentation/com/openshift/client/configuration/AbstractOpenshiftConfiguration.html new file mode 100644 index 00000000..c8b956f7 --- /dev/null +++ b/documentation/com/openshift/client/configuration/AbstractOpenshiftConfiguration.html @@ -0,0 +1,898 @@ + + + + + + + +AbstractOpenshiftConfiguration (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.configuration +
+Class AbstractOpenshiftConfiguration

+
+java.lang.Object
+  extended by com.openshift.client.configuration.AbstractOpenshiftConfiguration
+
+
+
All Implemented Interfaces:
IOpenShiftConfiguration
+
+
+
Direct Known Subclasses:
DefaultConfiguration, OpenShiftConfiguration, SystemConfiguration, SystemProperties, UserConfiguration
+
+
+
+
public abstract class AbstractOpenshiftConfiguration
extends Object
implements IOpenShiftConfiguration
+ + +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Field Summary
+protected static StringKEY_CLIENT_ID + +
+           
+protected static StringKEY_LIBRA_DOMAIN + +
+           
+protected static StringKEY_LIBRA_SERVER + +
+           
+protected static StringKEY_PASSWORD + +
+           
+protected static StringKEY_RHLOGIN + +
+           
+  + + + + + + + + + + + + + + + + + + + +
+Constructor Summary
+protected AbstractOpenshiftConfiguration() + +
+           
+protected AbstractOpenshiftConfiguration(File file, + IOpenShiftConfiguration parentConfiguration) + +
+           
+protected AbstractOpenshiftConfiguration(IOpenShiftConfiguration parentConfiguration) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+protected  StringensureIsSingleQuoted(String value) + +
+           
+ StringgetClientId() + +
+           
+protected  FilegetFile() + +
+           
+ StringgetLibraDomain() + +
+           
+ StringgetLibraServer() + +
+           
+ StringgetPassword() + +
+           
+ PropertiesgetProperties() + +
+           
+protected  PropertiesgetProperties(File file, + Properties defaultProperties) + +
+           
+ StringgetProxyHost() + +
+           
+ StringgetProxyPort() + +
+           
+ booleangetProxySet() + +
+           
+ StringgetRhlogin() + +
+           
+protected  voidinitProperties(File file) + +
+           
+protected  voidinitProperties(File file, + Properties defaultProperties) + +
+           
+protected  voidinitProperties(Properties defaultProperties) + +
+           
+protected  StringremoveQuotes(String value) + +
+           
+ voidsave() + +
+           
+ voidsetEnableSSLCertChecks(boolean doSSLChecks) + +
+           
+ voidsetLibraDomain(String libraDomain) + +
+           
+ voidsetLibraServer(String libraServer) + +
+           
+ voidsetRhlogin(String rhlogin) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Field Detail
+ +

+KEY_RHLOGIN

+
+protected static final String KEY_RHLOGIN
+
+
+
See Also:
Constant Field Values
+
+
+ +

+KEY_LIBRA_SERVER

+
+protected static final String KEY_LIBRA_SERVER
+
+
+
See Also:
Constant Field Values
+
+
+ +

+KEY_LIBRA_DOMAIN

+
+protected static final String KEY_LIBRA_DOMAIN
+
+
+
See Also:
Constant Field Values
+
+
+ +

+KEY_PASSWORD

+
+protected static final String KEY_PASSWORD
+
+
+
See Also:
Constant Field Values
+
+
+ +

+KEY_CLIENT_ID

+
+protected static final String KEY_CLIENT_ID
+
+
+
See Also:
Constant Field Values
+
+ + + + + + + + +
+Constructor Detail
+ +

+AbstractOpenshiftConfiguration

+
+protected AbstractOpenshiftConfiguration()
+                                  throws FileNotFoundException,
+                                         IOException
+
+
+ +
Throws: +
FileNotFoundException +
IOException
+
+
+ +

+AbstractOpenshiftConfiguration

+
+protected AbstractOpenshiftConfiguration(IOpenShiftConfiguration parentConfiguration)
+                                  throws FileNotFoundException,
+                                         IOException
+
+
+ +
Throws: +
FileNotFoundException +
IOException
+
+
+ +

+AbstractOpenshiftConfiguration

+
+protected AbstractOpenshiftConfiguration(File file,
+                                         IOpenShiftConfiguration parentConfiguration)
+                                  throws FileNotFoundException,
+                                         IOException
+
+
+ +
Throws: +
FileNotFoundException +
IOException
+
+ + + + + + + + +
+Method Detail
+ +

+initProperties

+
+protected void initProperties(File file)
+                       throws FileNotFoundException,
+                              IOException
+
+
+
+
+
+ +
Throws: +
FileNotFoundException +
IOException
+
+
+
+ +

+initProperties

+
+protected void initProperties(Properties defaultProperties)
+                       throws FileNotFoundException,
+                              IOException
+
+
+
+
+
+ +
Throws: +
FileNotFoundException +
IOException
+
+
+
+ +

+initProperties

+
+protected void initProperties(File file,
+                              Properties defaultProperties)
+                       throws FileNotFoundException,
+                              IOException
+
+
+
+
+
+ +
Throws: +
FileNotFoundException +
IOException
+
+
+
+ +

+getProperties

+
+protected Properties getProperties(File file,
+                                   Properties defaultProperties)
+                            throws FileNotFoundException,
+                                   IOException
+
+
+
+
+
+ +
Throws: +
FileNotFoundException +
IOException
+
+
+
+ +

+getFile

+
+protected File getFile()
+
+
+
+
+
+
+
+
+
+ +

+getProperties

+
+public Properties getProperties()
+
+
+
Specified by:
getProperties in interface IOpenShiftConfiguration
+
+
+
+
+
+
+ +

+save

+
+public void save()
+          throws IOException
+
+
+
+
+
+ +
Throws: +
IOException
+
+
+
+ +

+setRhlogin

+
+public void setRhlogin(String rhlogin)
+
+
+
Specified by:
setRhlogin in interface IOpenShiftConfiguration
+
+
+
+
+
+
+ +

+getRhlogin

+
+public String getRhlogin()
+
+
+
Specified by:
getRhlogin in interface IOpenShiftConfiguration
+
+
+
+
+
+
+ +

+setLibraServer

+
+public void setLibraServer(String libraServer)
+
+
+
Specified by:
setLibraServer in interface IOpenShiftConfiguration
+
+
+
+
+
+
+ +

+getLibraServer

+
+public String getLibraServer()
+
+
+
Specified by:
getLibraServer in interface IOpenShiftConfiguration
+
+
+
+
+
+
+ +

+setLibraDomain

+
+public void setLibraDomain(String libraDomain)
+
+
+
Specified by:
setLibraDomain in interface IOpenShiftConfiguration
+
+
+
+
+
+
+ +

+getLibraDomain

+
+public String getLibraDomain()
+
+
+
Specified by:
getLibraDomain in interface IOpenShiftConfiguration
+
+
+
+
+
+
+ +

+ensureIsSingleQuoted

+
+protected String ensureIsSingleQuoted(String value)
+
+
+
+
+
+
+
+
+
+ +

+removeQuotes

+
+protected String removeQuotes(String value)
+
+
+
+
+
+
+
+
+
+ +

+getPassword

+
+public String getPassword()
+
+
+
+
+
+
+
+
+
+ +

+getClientId

+
+public String getClientId()
+
+
+
+
+
+
+
+
+
+ +

+setEnableSSLCertChecks

+
+public void setEnableSSLCertChecks(boolean doSSLChecks)
+
+
+
+
+
+
+
+
+
+ +

+getProxySet

+
+public boolean getProxySet()
+
+
+
+
+
+
+
+
+
+ +

+getProxyHost

+
+public String getProxyHost()
+
+
+
+
+
+
+
+
+
+ +

+getProxyPort

+
+public String getProxyPort()
+
+
+
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/configuration/DefaultConfiguration.html b/documentation/com/openshift/client/configuration/DefaultConfiguration.html new file mode 100644 index 00000000..0c324913 --- /dev/null +++ b/documentation/com/openshift/client/configuration/DefaultConfiguration.html @@ -0,0 +1,345 @@ + + + + + + + +DefaultConfiguration (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.configuration +
+Class DefaultConfiguration

+
+java.lang.Object
+  extended by com.openshift.client.configuration.AbstractOpenshiftConfiguration
+      extended by com.openshift.client.configuration.DefaultConfiguration
+
+
+
All Implemented Interfaces:
IOpenShiftConfiguration
+
+
+
+
public class DefaultConfiguration
extends AbstractOpenshiftConfiguration
+ + +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + +
+Field Summary
+static StringLIBRA_DOMAIN + +
+           
+static StringLIBRA_SERVER + +
+           
+ + + + + + + +
Fields inherited from class com.openshift.client.configuration.AbstractOpenshiftConfiguration
KEY_CLIENT_ID, KEY_LIBRA_DOMAIN, KEY_LIBRA_SERVER, KEY_PASSWORD, KEY_RHLOGIN
+  + + + + + + + + + + +
+Constructor Summary
DefaultConfiguration() + +
+           
+  + + + + + + + + + + + +
+Method Summary
+protected  PropertiesgetProperties(File file, + Properties defaultProperties) + +
+           
+ + + + + + + +
Methods inherited from class com.openshift.client.configuration.AbstractOpenshiftConfiguration
ensureIsSingleQuoted, getClientId, getFile, getLibraDomain, getLibraServer, getPassword, getProperties, getProxyHost, getProxyPort, getProxySet, getRhlogin, initProperties, initProperties, initProperties, removeQuotes, save, setEnableSSLCertChecks, setLibraDomain, setLibraServer, setRhlogin
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Field Detail
+ +

+LIBRA_SERVER

+
+public static final String LIBRA_SERVER
+
+
+
See Also:
Constant Field Values
+
+
+ +

+LIBRA_DOMAIN

+
+public static final String LIBRA_DOMAIN
+
+
+
See Also:
Constant Field Values
+
+ + + + + + + + +
+Constructor Detail
+ +

+DefaultConfiguration

+
+public DefaultConfiguration()
+                     throws OpenShiftException,
+                            IOException
+
+
+ +
Throws: +
OpenShiftException +
IOException
+
+ + + + + + + + +
+Method Detail
+ +

+getProperties

+
+protected Properties getProperties(File file,
+                                   Properties defaultProperties)
+
+
+
Overrides:
getProperties in class AbstractOpenshiftConfiguration
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/configuration/IOpenShiftConfiguration.html b/documentation/com/openshift/client/configuration/IOpenShiftConfiguration.html new file mode 100644 index 00000000..a108e593 --- /dev/null +++ b/documentation/com/openshift/client/configuration/IOpenShiftConfiguration.html @@ -0,0 +1,328 @@ + + + + + + + +IOpenShiftConfiguration (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.configuration +
+Interface IOpenShiftConfiguration

+
+
All Known Implementing Classes:
AbstractOpenshiftConfiguration, DefaultConfiguration, OpenShiftConfiguration, SystemConfiguration, SystemProperties, UserConfiguration
+
+
+
+
public interface IOpenShiftConfiguration
+ + +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ StringgetLibraDomain() + +
+           
+ StringgetLibraServer() + +
+           
+ PropertiesgetProperties() + +
+           
+ StringgetRhlogin() + +
+           
+ voidsetLibraDomain(String libraDomain) + +
+           
+ voidsetLibraServer(String libraServer) + +
+           
+ voidsetRhlogin(String rhlogin) + +
+           
+  +

+ + + + + + + + +
+Method Detail
+ +

+getRhlogin

+
+String getRhlogin()
+
+
+
+
+
+
+ +

+setRhlogin

+
+void setRhlogin(String rhlogin)
+
+
+
+
+
+
+ +

+getLibraServer

+
+String getLibraServer()
+
+
+
+
+
+
+ +

+setLibraServer

+
+void setLibraServer(String libraServer)
+
+
+
+
+
+
+ +

+getLibraDomain

+
+String getLibraDomain()
+
+
+
+
+
+
+ +

+setLibraDomain

+
+void setLibraDomain(String libraDomain)
+
+
+
+
+
+
+ +

+getProperties

+
+Properties getProperties()
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/configuration/OpenShiftConfiguration.html b/documentation/com/openshift/client/configuration/OpenShiftConfiguration.html new file mode 100644 index 00000000..9ae506fb --- /dev/null +++ b/documentation/com/openshift/client/configuration/OpenShiftConfiguration.html @@ -0,0 +1,269 @@ + + + + + + + +OpenShiftConfiguration (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.configuration +
+Class OpenShiftConfiguration

+
+java.lang.Object
+  extended by com.openshift.client.configuration.AbstractOpenshiftConfiguration
+      extended by com.openshift.client.configuration.OpenShiftConfiguration
+
+
+
All Implemented Interfaces:
IOpenShiftConfiguration
+
+
+
+
public class OpenShiftConfiguration
extends AbstractOpenshiftConfiguration
+ + +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + +
+Field Summary
+ + + + + + + +
Fields inherited from class com.openshift.client.configuration.AbstractOpenshiftConfiguration
KEY_CLIENT_ID, KEY_LIBRA_DOMAIN, KEY_LIBRA_SERVER, KEY_PASSWORD, KEY_RHLOGIN
+  + + + + + + + + + + +
+Constructor Summary
OpenShiftConfiguration() + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class com.openshift.client.configuration.AbstractOpenshiftConfiguration
ensureIsSingleQuoted, getClientId, getFile, getLibraDomain, getLibraServer, getPassword, getProperties, getProperties, getProxyHost, getProxyPort, getProxySet, getRhlogin, initProperties, initProperties, initProperties, removeQuotes, save, setEnableSSLCertChecks, setLibraDomain, setLibraServer, setRhlogin
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+OpenShiftConfiguration

+
+public OpenShiftConfiguration()
+                       throws FileNotFoundException,
+                              IOException,
+                              OpenShiftException
+
+
+ +
Throws: +
FileNotFoundException +
IOException +
OpenShiftException
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/configuration/SystemConfiguration.html b/documentation/com/openshift/client/configuration/SystemConfiguration.html new file mode 100644 index 00000000..66dba5ba --- /dev/null +++ b/documentation/com/openshift/client/configuration/SystemConfiguration.html @@ -0,0 +1,271 @@ + + + + + + + +SystemConfiguration (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.configuration +
+Class SystemConfiguration

+
+java.lang.Object
+  extended by com.openshift.client.configuration.AbstractOpenshiftConfiguration
+      extended by com.openshift.client.configuration.SystemConfiguration
+
+
+
All Implemented Interfaces:
IOpenShiftConfiguration
+
+
+
+
public class SystemConfiguration
extends AbstractOpenshiftConfiguration
+ + +

+The system wide OpenShift configuration that is at /etc/express.conf +

+ +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + +
+Field Summary
+ + + + + + + +
Fields inherited from class com.openshift.client.configuration.AbstractOpenshiftConfiguration
KEY_CLIENT_ID, KEY_LIBRA_DOMAIN, KEY_LIBRA_SERVER, KEY_PASSWORD, KEY_RHLOGIN
+  + + + + + + + + + + +
+Constructor Summary
SystemConfiguration(IOpenShiftConfiguration parentConfiguration) + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class com.openshift.client.configuration.AbstractOpenshiftConfiguration
ensureIsSingleQuoted, getClientId, getFile, getLibraDomain, getLibraServer, getPassword, getProperties, getProperties, getProxyHost, getProxyPort, getProxySet, getRhlogin, initProperties, initProperties, initProperties, removeQuotes, save, setEnableSSLCertChecks, setLibraDomain, setLibraServer, setRhlogin
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+SystemConfiguration

+
+public SystemConfiguration(IOpenShiftConfiguration parentConfiguration)
+                    throws OpenShiftException,
+                           IOException
+
+
+ +
Throws: +
OpenShiftException +
IOException
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/configuration/SystemProperties.html b/documentation/com/openshift/client/configuration/SystemProperties.html new file mode 100644 index 00000000..5f8c7685 --- /dev/null +++ b/documentation/com/openshift/client/configuration/SystemProperties.html @@ -0,0 +1,300 @@ + + + + + + + +SystemProperties (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.configuration +
+Class SystemProperties

+
+java.lang.Object
+  extended by com.openshift.client.configuration.AbstractOpenshiftConfiguration
+      extended by com.openshift.client.configuration.SystemProperties
+
+
+
All Implemented Interfaces:
IOpenShiftConfiguration
+
+
+
+
public class SystemProperties
extends AbstractOpenshiftConfiguration
+ + +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + +
+Field Summary
+ + + + + + + +
Fields inherited from class com.openshift.client.configuration.AbstractOpenshiftConfiguration
KEY_CLIENT_ID, KEY_LIBRA_DOMAIN, KEY_LIBRA_SERVER, KEY_PASSWORD, KEY_RHLOGIN
+  + + + + + + + + + + +
+Constructor Summary
SystemProperties(IOpenShiftConfiguration parentConfiguration) + +
+           
+  + + + + + + + + + + + +
+Method Summary
+protected  PropertiesgetProperties(File file, + Properties defaultProperties) + +
+           
+ + + + + + + +
Methods inherited from class com.openshift.client.configuration.AbstractOpenshiftConfiguration
ensureIsSingleQuoted, getClientId, getFile, getLibraDomain, getLibraServer, getPassword, getProperties, getProxyHost, getProxyPort, getProxySet, getRhlogin, initProperties, initProperties, initProperties, removeQuotes, save, setEnableSSLCertChecks, setLibraDomain, setLibraServer, setRhlogin
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+SystemProperties

+
+public SystemProperties(IOpenShiftConfiguration parentConfiguration)
+                 throws OpenShiftException,
+                        IOException
+
+
+ +
Throws: +
OpenShiftException +
IOException
+
+ + + + + + + + +
+Method Detail
+ +

+getProperties

+
+protected Properties getProperties(File file,
+                                   Properties defaultProperties)
+
+
+
Overrides:
getProperties in class AbstractOpenshiftConfiguration
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/configuration/UserConfiguration.html b/documentation/com/openshift/client/configuration/UserConfiguration.html new file mode 100644 index 00000000..9f205ee3 --- /dev/null +++ b/documentation/com/openshift/client/configuration/UserConfiguration.html @@ -0,0 +1,267 @@ + + + + + + + +UserConfiguration (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.configuration +
+Class UserConfiguration

+
+java.lang.Object
+  extended by com.openshift.client.configuration.AbstractOpenshiftConfiguration
+      extended by com.openshift.client.configuration.UserConfiguration
+
+
+
All Implemented Interfaces:
IOpenShiftConfiguration
+
+
+
+
public class UserConfiguration
extends AbstractOpenshiftConfiguration
+ + +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + +
+Field Summary
+ + + + + + + +
Fields inherited from class com.openshift.client.configuration.AbstractOpenshiftConfiguration
KEY_CLIENT_ID, KEY_LIBRA_DOMAIN, KEY_LIBRA_SERVER, KEY_PASSWORD, KEY_RHLOGIN
+  + + + + + + + + + + +
+Constructor Summary
UserConfiguration(SystemConfiguration systemConfiguration) + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class com.openshift.client.configuration.AbstractOpenshiftConfiguration
ensureIsSingleQuoted, getClientId, getFile, getLibraDomain, getLibraServer, getPassword, getProperties, getProperties, getProxyHost, getProxyPort, getProxySet, getRhlogin, initProperties, initProperties, initProperties, removeQuotes, save, setEnableSSLCertChecks, setLibraDomain, setLibraServer, setRhlogin
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+UserConfiguration

+
+public UserConfiguration(SystemConfiguration systemConfiguration)
+                  throws OpenShiftException,
+                         IOException
+
+
+ +
Throws: +
OpenShiftException +
IOException
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/configuration/class-use/AbstractOpenshiftConfiguration.html b/documentation/com/openshift/client/configuration/class-use/AbstractOpenshiftConfiguration.html new file mode 100644 index 00000000..5aa83a75 --- /dev/null +++ b/documentation/com/openshift/client/configuration/class-use/AbstractOpenshiftConfiguration.html @@ -0,0 +1,213 @@ + + + + + + + +Uses of Class com.openshift.client.configuration.AbstractOpenshiftConfiguration (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.configuration.AbstractOpenshiftConfiguration

+
+ + + + + + + + + +
+Packages that use AbstractOpenshiftConfiguration
com.openshift.client.configuration  
+  +

+ + + + + +
+Uses of AbstractOpenshiftConfiguration in com.openshift.client.configuration
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Subclasses of AbstractOpenshiftConfiguration in com.openshift.client.configuration
+ classDefaultConfiguration + +
+           
+ classOpenShiftConfiguration + +
+           
+ classSystemConfiguration + +
+          The system wide OpenShift configuration that is at /etc/express.conf
+ classSystemProperties + +
+           
+ classUserConfiguration + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/configuration/class-use/DefaultConfiguration.html b/documentation/com/openshift/client/configuration/class-use/DefaultConfiguration.html new file mode 100644 index 00000000..568c6b0d --- /dev/null +++ b/documentation/com/openshift/client/configuration/class-use/DefaultConfiguration.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.client.configuration.DefaultConfiguration (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.configuration.DefaultConfiguration

+
+No usage of com.openshift.client.configuration.DefaultConfiguration +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/configuration/class-use/IOpenShiftConfiguration.html b/documentation/com/openshift/client/configuration/class-use/IOpenShiftConfiguration.html new file mode 100644 index 00000000..f8a4a70d --- /dev/null +++ b/documentation/com/openshift/client/configuration/class-use/IOpenShiftConfiguration.html @@ -0,0 +1,254 @@ + + + + + + + +Uses of Interface com.openshift.client.configuration.IOpenShiftConfiguration (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Interface
com.openshift.client.configuration.IOpenShiftConfiguration

+
+ + + + + + + + + +
+Packages that use IOpenShiftConfiguration
com.openshift.client.configuration  
+  +

+ + + + + +
+Uses of IOpenShiftConfiguration in com.openshift.client.configuration
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Classes in com.openshift.client.configuration that implement IOpenShiftConfiguration
+ classAbstractOpenshiftConfiguration + +
+           
+ classDefaultConfiguration + +
+           
+ classOpenShiftConfiguration + +
+           
+ classSystemConfiguration + +
+          The system wide OpenShift configuration that is at /etc/express.conf
+ classSystemProperties + +
+           
+ classUserConfiguration + +
+           
+  +

+ + + + + + + + + + + + + + + + + +
Constructors in com.openshift.client.configuration with parameters of type IOpenShiftConfiguration
AbstractOpenshiftConfiguration(File file, + IOpenShiftConfiguration parentConfiguration) + +
+           
AbstractOpenshiftConfiguration(IOpenShiftConfiguration parentConfiguration) + +
+           
SystemConfiguration(IOpenShiftConfiguration parentConfiguration) + +
+           
SystemProperties(IOpenShiftConfiguration parentConfiguration) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/configuration/class-use/OpenShiftConfiguration.html b/documentation/com/openshift/client/configuration/class-use/OpenShiftConfiguration.html new file mode 100644 index 00000000..82a391ba --- /dev/null +++ b/documentation/com/openshift/client/configuration/class-use/OpenShiftConfiguration.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.client.configuration.OpenShiftConfiguration (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.configuration.OpenShiftConfiguration

+
+No usage of com.openshift.client.configuration.OpenShiftConfiguration +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/configuration/class-use/SystemConfiguration.html b/documentation/com/openshift/client/configuration/class-use/SystemConfiguration.html new file mode 100644 index 00000000..16d9166e --- /dev/null +++ b/documentation/com/openshift/client/configuration/class-use/SystemConfiguration.html @@ -0,0 +1,179 @@ + + + + + + + +Uses of Class com.openshift.client.configuration.SystemConfiguration (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.configuration.SystemConfiguration

+
+ + + + + + + + + +
+Packages that use SystemConfiguration
com.openshift.client.configuration  
+  +

+ + + + + +
+Uses of SystemConfiguration in com.openshift.client.configuration
+  +

+ + + + + + + + +
Constructors in com.openshift.client.configuration with parameters of type SystemConfiguration
UserConfiguration(SystemConfiguration systemConfiguration) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/configuration/class-use/SystemProperties.html b/documentation/com/openshift/client/configuration/class-use/SystemProperties.html new file mode 100644 index 00000000..068515f3 --- /dev/null +++ b/documentation/com/openshift/client/configuration/class-use/SystemProperties.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.client.configuration.SystemProperties (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.configuration.SystemProperties

+
+No usage of com.openshift.client.configuration.SystemProperties +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/configuration/class-use/UserConfiguration.html b/documentation/com/openshift/client/configuration/class-use/UserConfiguration.html new file mode 100644 index 00000000..d91f7323 --- /dev/null +++ b/documentation/com/openshift/client/configuration/class-use/UserConfiguration.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.client.configuration.UserConfiguration (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.configuration.UserConfiguration

+
+No usage of com.openshift.client.configuration.UserConfiguration +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/configuration/package-frame.html b/documentation/com/openshift/client/configuration/package-frame.html new file mode 100644 index 00000000..9b9ab077 --- /dev/null +++ b/documentation/com/openshift/client/configuration/package-frame.html @@ -0,0 +1,54 @@ + + + + + + + +com.openshift.client.configuration (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + +com.openshift.client.configuration + + + + +
+Interfaces  + +
+IOpenShiftConfiguration
+ + + + + + +
+Classes  + +
+AbstractOpenshiftConfiguration +
+DefaultConfiguration +
+OpenShiftConfiguration +
+SystemConfiguration +
+SystemProperties +
+UserConfiguration
+ + + + diff --git a/documentation/com/openshift/client/configuration/package-summary.html b/documentation/com/openshift/client/configuration/package-summary.html new file mode 100644 index 00000000..ac7803ff --- /dev/null +++ b/documentation/com/openshift/client/configuration/package-summary.html @@ -0,0 +1,192 @@ + + + + + + + +com.openshift.client.configuration (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+

+Package com.openshift.client.configuration +

+ + + + + + + + + +
+Interface Summary
IOpenShiftConfiguration 
+  + +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class Summary
AbstractOpenshiftConfiguration 
DefaultConfiguration 
OpenShiftConfiguration 
SystemConfigurationThe system wide OpenShift configuration that is at /etc/express.conf
SystemProperties 
UserConfiguration 
+  + +

+

+
+
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/configuration/package-tree.html b/documentation/com/openshift/client/configuration/package-tree.html new file mode 100644 index 00000000..d4c81f85 --- /dev/null +++ b/documentation/com/openshift/client/configuration/package-tree.html @@ -0,0 +1,162 @@ + + + + + + + +com.openshift.client.configuration Class Hierarchy (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Hierarchy For Package com.openshift.client.configuration +

+
+
+
Package Hierarchies:
All Packages
+
+

+Class Hierarchy +

+ +

+Interface Hierarchy +

+ +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/configuration/package-use.html b/documentation/com/openshift/client/configuration/package-use.html new file mode 100644 index 00000000..4067c01c --- /dev/null +++ b/documentation/com/openshift/client/configuration/package-use.html @@ -0,0 +1,183 @@ + + + + + + + +Uses of Package com.openshift.client.configuration (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Package
com.openshift.client.configuration

+
+ + + + + + + + + +
+Packages that use com.openshift.client.configuration
com.openshift.client.configuration  
+  +

+ + + + + + + + + + + + + + +
+Classes in com.openshift.client.configuration used by com.openshift.client.configuration
AbstractOpenshiftConfiguration + +
+           
IOpenShiftConfiguration + +
+           
SystemConfiguration + +
+          The system wide OpenShift configuration that is at /etc/express.conf
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/package-frame.html b/documentation/com/openshift/client/package-frame.html new file mode 100644 index 00000000..51c62123 --- /dev/null +++ b/documentation/com/openshift/client/package-frame.html @@ -0,0 +1,130 @@ + + + + + + + +com.openshift.client (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + +com.openshift.client + + + + +
+Interfaces  + +
+IApplication +
+IApplicationPortForwarding +
+IDomain +
+IEnvironmentVariable +
+IField +
+IGear +
+IGearGroup +
+IGearProfile +
+IHttpClient +
+IOpenShiftConnection +
+IOpenShiftResource +
+IOpenShiftSSHKey +
+ISeverity +
+ISSHPublicKey +
+IUser
+ + + + + + +
+Classes  + +
+ApplicationBuilder +
+Message +
+Messages +
+OpenShiftConnectionFactory +
+SSHKeyPair +
+SSHPublicKey
+ + + + + + +
+Enums  + +
+ApplicationScale +
+GearState +
+HttpMethod +
+SSHKeyType
+ + + + + + +
+Exceptions  + +
+InvalidCredentialsOpenShiftException +
+InvalidNameOpenShiftException +
+NotFoundOpenShiftException +
+OpenShiftApplicationNotAvailableException +
+OpenShiftEndpointException +
+OpenShiftException +
+OpenShiftRequestException +
+OpenShiftSSHKeyException +
+OpenShiftSSHOperationException +
+OpenShiftTimeoutException +
+OpenShiftUnknonwSSHKeyTypeException
+ + + + diff --git a/documentation/com/openshift/client/package-summary.html b/documentation/com/openshift/client/package-summary.html new file mode 100644 index 00000000..7993ce1e --- /dev/null +++ b/documentation/com/openshift/client/package-summary.html @@ -0,0 +1,328 @@ + + + + + + + +com.openshift.client (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+

+Package com.openshift.client +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Interface Summary
IApplication 
IApplicationPortForwarding 
IDomain 
IEnvironmentVariable 
IField 
IGear 
IGearGroup 
IGearProfile 
IHttpClient 
IOpenShiftConnection 
IOpenShiftResource 
IOpenShiftSSHKey 
ISeverity 
ISSHPublicKey 
IUser 
+  + +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class Summary
ApplicationBuilder 
Message 
Messages 
OpenShiftConnectionFactoryConnection Factory, used to establish a connection and retrieve a user.
SSHKeyPair 
SSHPublicKey 
+  + +

+ + + + + + + + + + + + + + + + + + + + + +
+Enum Summary
ApplicationScaleEnum to indicate the support for scalability when creating a new application
GearState 
HttpMethod 
SSHKeyType 
+  + +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Exception Summary
InvalidCredentialsOpenShiftException 
InvalidNameOpenShiftException 
NotFoundOpenShiftException 
OpenShiftApplicationNotAvailableException 
OpenShiftEndpointException 
OpenShiftException 
OpenShiftRequestException 
OpenShiftSSHKeyException 
OpenShiftSSHOperationExceptionOpenShift Exception that encapsulates an underlying exception that occurred during an SSH operation.
OpenShiftTimeoutException 
OpenShiftUnknonwSSHKeyTypeException 
+  + +

+

+
+
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/package-tree.html b/documentation/com/openshift/client/package-tree.html new file mode 100644 index 00000000..269efcb0 --- /dev/null +++ b/documentation/com/openshift/client/package-tree.html @@ -0,0 +1,189 @@ + + + + + + + +com.openshift.client Class Hierarchy (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Hierarchy For Package com.openshift.client +

+
+
+
Package Hierarchies:
All Packages
+
+

+Class Hierarchy +

+ +

+Interface Hierarchy +

+ +

+Enum Hierarchy +

+ +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/package-use.html b/documentation/com/openshift/client/package-use.html new file mode 100644 index 00000000..a20b143d --- /dev/null +++ b/documentation/com/openshift/client/package-use.html @@ -0,0 +1,707 @@ + + + + + + + +Uses of Package com.openshift.client (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Package
com.openshift.client

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Packages that use com.openshift.client
com.openshift.client  
com.openshift.client.cartridge  
com.openshift.client.cartridge.selector  
com.openshift.client.configuration  
com.openshift.internal.client  
com.openshift.internal.client.cartridge  
com.openshift.internal.client.httpclient  
com.openshift.internal.client.response  
com.openshift.internal.client.ssh  
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Classes in com.openshift.client used by com.openshift.client
ApplicationBuilder.CartridgeHolder + +
+           
ApplicationBuilder.NamedCartridgeHolder + +
+           
ApplicationScale + +
+          Enum to indicate the support for scalability when creating a new application
GearState + +
+           
HttpMethod + +
+           
IApplication + +
+           
IApplicationPortForwarding + +
+           
IDomain + +
+           
IEnvironmentVariable + +
+           
IField + +
+           
IGear + +
+           
IGearGroup + +
+           
IGearProfile + +
+           
IHttpClient + +
+           
IOpenShiftConnection + +
+           
IOpenShiftResource + +
+           
IOpenShiftSSHKey + +
+           
ISeverity + +
+           
ISSHPublicKey + +
+           
IUser + +
+           
Message + +
+           
Messages + +
+           
OpenShiftEndpointException + +
+           
OpenShiftException + +
+           
OpenShiftSSHOperationException + +
+          OpenShift Exception that encapsulates an underlying exception that occurred during an SSH operation.
OpenShiftUnknonwSSHKeyTypeException + +
+           
SSHKeyPair + +
+           
SSHKeyType + +
+           
+  +

+ + + + + + + + + + + + + + +
+Classes in com.openshift.client used by com.openshift.client.cartridge
IApplication + +
+           
IOpenShiftResource + +
+           
OpenShiftException + +
+           
+  +

+ + + + + + + + + + + +
+Classes in com.openshift.client used by com.openshift.client.cartridge.selector
IApplication + +
+           
IUser + +
+           
+  +

+ + + + + + + + +
+Classes in com.openshift.client used by com.openshift.client.configuration
OpenShiftException + +
+           
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Classes in com.openshift.client used by com.openshift.internal.client
ApplicationScale + +
+          Enum to indicate the support for scalability when creating a new application
GearState + +
+           
IApplication + +
+           
IApplicationPortForwarding + +
+           
IDomain + +
+           
IEnvironmentVariable + +
+           
IField + +
+           
IGear + +
+           
IGearGroup + +
+           
IGearProfile + +
+           
IHttpClient + +
+           
IOpenShiftConnection + +
+           
IOpenShiftResource + +
+           
IOpenShiftSSHKey + +
+           
ISeverity + +
+           
ISSHPublicKey + +
+           
IUser + +
+           
Messages + +
+           
OpenShiftException + +
+           
OpenShiftSSHOperationException + +
+          OpenShift Exception that encapsulates an underlying exception that occurred during an SSH operation.
OpenShiftUnknonwSSHKeyTypeException + +
+           
SSHKeyType + +
+           
+  +

+ + + + + + + + + + + + + + +
+Classes in com.openshift.client used by com.openshift.internal.client.cartridge
IApplication + +
+           
IDomain + +
+           
IOpenShiftConnection + +
+           
+  +

+ + + + + + + + + + + +
+Classes in com.openshift.client used by com.openshift.internal.client.httpclient
HttpMethod + +
+           
IHttpClient + +
+           
+  +

+ + + + + + + + + + + + + + + + + + + + + + + +
+Classes in com.openshift.client used by com.openshift.internal.client.response
ApplicationScale + +
+          Enum to indicate the support for scalability when creating a new application
HttpMethod + +
+           
IGearProfile + +
+           
Messages + +
+           
OpenShiftException + +
+           
OpenShiftRequestException + +
+           
+  +

+ + + + + + + + + + + + + + + + + + + + + + + +
+Classes in com.openshift.client used by com.openshift.internal.client.ssh
IApplication + +
+           
IApplicationPortForwarding + +
+           
ISSHPublicKey + +
+           
OpenShiftSSHOperationException + +
+          OpenShift Exception that encapsulates an underlying exception that occurred during an SSH operation.
OpenShiftUnknonwSSHKeyTypeException + +
+           
SSHKeyType + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/utils/Base64Coder.html b/documentation/com/openshift/client/utils/Base64Coder.html new file mode 100644 index 00000000..74eacaed --- /dev/null +++ b/documentation/com/openshift/client/utils/Base64Coder.html @@ -0,0 +1,297 @@ + + + + + + + +Base64Coder (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.utils +
+Class Base64Coder

+
+java.lang.Object
+  extended by com.openshift.client.utils.Base64Coder
+
+
+
+
public class Base64Coder
extends Object
+ + +

+A utility class that offers methods to encode and decode strings from and to + base64 +

+ +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+static Stringdecode(byte[] encoded) + +
+           
+static Stringdecode(String encoded) + +
+          Decodes the given base64 encoded string.
+static Stringencode(byte[] unencoded) + +
+          Encodes the given byte array to a base64 encoded String
+static Stringencode(String unencoded) + +
+          Encodes the given string to a base64 encoded string.
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Method Detail
+ +

+encode

+
+public static String encode(byte[] unencoded)
+
+
Encodes the given byte array to a base64 encoded String +

+

+
Parameters:
unencoded - the array of unencoded bytes that shall get encoded +
Returns:
the encoded string
+
+
+
+ +

+encode

+
+public static String encode(String unencoded)
+
+
Encodes the given string to a base64 encoded string. Returns + null if the given string is null. +

+

+
Parameters:
unencoded - +
Returns:
+
+
+
+ +

+decode

+
+public static String decode(byte[] encoded)
+
+
+
+
+
+
+ +

+decode

+
+public static String decode(String encoded)
+
+
Decodes the given base64 encoded string. Returns null if the + given string is null. +

+

+
Parameters:
encoded - the base64 encoded string +
Returns:
the decoded string
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/utils/HostUtils.html b/documentation/com/openshift/client/utils/HostUtils.html new file mode 100644 index 00000000..bbd3a581 --- /dev/null +++ b/documentation/com/openshift/client/utils/HostUtils.html @@ -0,0 +1,260 @@ + + + + + + + +HostUtils (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.utils +
+Class HostUtils

+
+java.lang.Object
+  extended by com.openshift.client.utils.HostUtils
+
+
+
+
public class HostUtils
extends Object
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
HostUtils() + +
+           
+  + + + + + + + + + + + +
+Method Summary
+static booleancanResolv(String urlString) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+HostUtils

+
+public HostUtils()
+
+
+ + + + + + + + +
+Method Detail
+ +

+canResolv

+
+public static boolean canResolv(String urlString)
+                         throws MalformedURLException
+
+
+ +
Throws: +
MalformedURLException
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/utils/OpenShiftResourceUtils.html b/documentation/com/openshift/client/utils/OpenShiftResourceUtils.html new file mode 100644 index 00000000..fab948a1 --- /dev/null +++ b/documentation/com/openshift/client/utils/OpenShiftResourceUtils.html @@ -0,0 +1,257 @@ + + + + + + + +OpenShiftResourceUtils (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.utils +
+Class OpenShiftResourceUtils

+
+java.lang.Object
+  extended by com.openshift.client.utils.OpenShiftResourceUtils
+
+
+
+
public class OpenShiftResourceUtils
extends Object
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
OpenShiftResourceUtils() + +
+           
+  + + + + + + + + + + + +
+Method Summary
+static List<String>toNames(ICartridge... cartridges) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+OpenShiftResourceUtils

+
+public OpenShiftResourceUtils()
+
+
+ + + + + + + + +
+Method Detail
+ +

+toNames

+
+public static List<String> toNames(ICartridge... cartridges)
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/utils/RFC822DateUtils.html b/documentation/com/openshift/client/utils/RFC822DateUtils.html new file mode 100644 index 00000000..deb927e3 --- /dev/null +++ b/documentation/com/openshift/client/utils/RFC822DateUtils.html @@ -0,0 +1,312 @@ + + + + + + + +RFC822DateUtils (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.client.utils +
+Class RFC822DateUtils

+
+java.lang.Object
+  extended by com.openshift.client.utils.RFC822DateUtils
+
+
+
+
public class RFC822DateUtils
extends Object
+ + +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
RFC822DateUtils() + +
+           
+  + + + + + + + + + + + + + + + + + + + +
+Method Summary
+static DategetDate(String rfc822DateString) + +
+          Returns a date instance for a given timestamp string that complies to the + RFC 822 standard
+static StringgetString(Date date) + +
+           
+static DatesafeGetDate(String rfc822DateString) + +
+          Returns a date instance for a given timestamp string that complies to the + RFC 822 standard.
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+RFC822DateUtils

+
+public RFC822DateUtils()
+
+
+ + + + + + + + +
+Method Detail
+ +

+getDate

+
+public static Date getDate(String rfc822DateString)
+                    throws DatatypeConfigurationException
+
+
Returns a date instance for a given timestamp string that complies to the + RFC 822 standard +

+

+
Parameters:
rfc822DateString - +
Returns:
+
Throws: +
DatatypeConfigurationException
+
+
+
+ +

+safeGetDate

+
+public static Date safeGetDate(String rfc822DateString)
+
+
Returns a date instance for a given timestamp string that complies to the + RFC 822 standard. If an error occurrs, null is returned an + no exception is thrown. +

+

+
Parameters:
rfc822DateString - +
Returns:
+
+
+
+ +

+getString

+
+public static String getString(Date date)
+                        throws DatatypeConfigurationException
+
+
+ +
Throws: +
DatatypeConfigurationException
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/utils/class-use/Base64Coder.html b/documentation/com/openshift/client/utils/class-use/Base64Coder.html new file mode 100644 index 00000000..341b4d67 --- /dev/null +++ b/documentation/com/openshift/client/utils/class-use/Base64Coder.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.client.utils.Base64Coder (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.utils.Base64Coder

+
+No usage of com.openshift.client.utils.Base64Coder +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/utils/class-use/HostUtils.html b/documentation/com/openshift/client/utils/class-use/HostUtils.html new file mode 100644 index 00000000..8255d83c --- /dev/null +++ b/documentation/com/openshift/client/utils/class-use/HostUtils.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.client.utils.HostUtils (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.utils.HostUtils

+
+No usage of com.openshift.client.utils.HostUtils +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/utils/class-use/OpenShiftResourceUtils.html b/documentation/com/openshift/client/utils/class-use/OpenShiftResourceUtils.html new file mode 100644 index 00000000..bc6b3ea8 --- /dev/null +++ b/documentation/com/openshift/client/utils/class-use/OpenShiftResourceUtils.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.client.utils.OpenShiftResourceUtils (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.utils.OpenShiftResourceUtils

+
+No usage of com.openshift.client.utils.OpenShiftResourceUtils +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/utils/class-use/RFC822DateUtils.html b/documentation/com/openshift/client/utils/class-use/RFC822DateUtils.html new file mode 100644 index 00000000..374d0801 --- /dev/null +++ b/documentation/com/openshift/client/utils/class-use/RFC822DateUtils.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.client.utils.RFC822DateUtils (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.client.utils.RFC822DateUtils

+
+No usage of com.openshift.client.utils.RFC822DateUtils +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/utils/package-frame.html b/documentation/com/openshift/client/utils/package-frame.html new file mode 100644 index 00000000..7aeb6ddd --- /dev/null +++ b/documentation/com/openshift/client/utils/package-frame.html @@ -0,0 +1,39 @@ + + + + + + + +com.openshift.client.utils (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + +com.openshift.client.utils + + + + +
+Classes  + +
+Base64Coder +
+HostUtils +
+OpenShiftResourceUtils +
+RFC822DateUtils
+ + + + diff --git a/documentation/com/openshift/client/utils/package-summary.html b/documentation/com/openshift/client/utils/package-summary.html new file mode 100644 index 00000000..b559df29 --- /dev/null +++ b/documentation/com/openshift/client/utils/package-summary.html @@ -0,0 +1,171 @@ + + + + + + + +com.openshift.client.utils (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+

+Package com.openshift.client.utils +

+ + + + + + + + + + + + + + + + + + + + + +
+Class Summary
Base64CoderA utility class that offers methods to encode and decode strings from and to + base64
HostUtils 
OpenShiftResourceUtils 
RFC822DateUtils 
+  + +

+

+
+
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/utils/package-tree.html b/documentation/com/openshift/client/utils/package-tree.html new file mode 100644 index 00000000..36b2ff9a --- /dev/null +++ b/documentation/com/openshift/client/utils/package-tree.html @@ -0,0 +1,154 @@ + + + + + + + +com.openshift.client.utils Class Hierarchy (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Hierarchy For Package com.openshift.client.utils +

+
+
+
Package Hierarchies:
All Packages
+
+

+Class Hierarchy +

+ +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/client/utils/package-use.html b/documentation/com/openshift/client/utils/package-use.html new file mode 100644 index 00000000..71710f06 --- /dev/null +++ b/documentation/com/openshift/client/utils/package-use.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Package com.openshift.client.utils (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Package
com.openshift.client.utils

+
+No usage of com.openshift.client.utils +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/APIResource.html b/documentation/com/openshift/internal/client/APIResource.html new file mode 100644 index 00000000..6931562e --- /dev/null +++ b/documentation/com/openshift/internal/client/APIResource.html @@ -0,0 +1,771 @@ + + + + + + + +APIResource (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client +
+Class APIResource

+
+java.lang.Object
+  extended by com.openshift.internal.client.AbstractOpenShiftResource
+      extended by com.openshift.internal.client.APIResource
+
+
+
All Implemented Interfaces:
IOpenShiftConnection, IOpenShiftResource
+
+
+
+
public class APIResource
extends AbstractOpenShiftResource
implements IOpenShiftConnection
+ + +

+

+
Author:
+
Andre Dietisheim, Xavier Coulon
+
+
+ +

+ + + + + + + +
+Nested Class Summary
+ + + + + + + +
Nested classes/interfaces inherited from class com.openshift.internal.client.AbstractOpenShiftResource
AbstractOpenShiftResource.Parameters, AbstractOpenShiftResource.ServiceRequest
+  + + + + + + + + + + + + +
+Constructor Summary
+protected APIResource(String login, + String password, + IRestService service, + Map<String,Link> links) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ IDomaincreateDomain(String id) + +
+           
+ voiddisconnect() + +
+           
+ IDomaingetDefaultDomain() + +
+           
+ IDomaingetDomain(String id) + +
+           
+ List<IDomain>getDomains() + +
+          Returns the domains associated with the current OpenShift connection.
+ List<IEmbeddableCartridge>getEmbeddableCartridges() + +
+          Returns the available embeddable cartridges associated with the current + OpenShift connection.
+ ExecutorServicegetExecutorService() + +
+          Returns the executor service instance that's available in this + connection.
+protected  StringgetLogin() + +
+           
+protected  StringgetPassword() + +
+           
+ StringgetServer() + +
+          Returns the server this connection is bound to.
+ List<IStandaloneCartridge>getStandaloneCartridges() + +
+          Returns the available standalone cartridges associated with the current + OpenShift connection.
+ IUsergetUser() + +
+          Returns the user associated with the current OpenShift connection.
+protected  booleanhasDomain(String name) + +
+           
+ voidrefresh() + +
+          Refresh the resource and its list of children resources that were + previously loaded
+protected  voidremoveDomain(IDomain domain) + +
+          Called after a domain has been destroyed
+ voidsetEnableSSLCertChecks(boolean doSSLChecks) + +
+          Sets flag for enabling SSL certificate checks (i.e.
+ voidsetProxyHost(String proxyHost) + +
+          Sets the HTTP proxy hostname
+ voidsetProxyPort(String proxyPort) + +
+          Sets the HTTP proxy port
+ voidsetProxySet(boolean proxySet) + +
+          Sets flag for using an HTTP proxy
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.AbstractOpenShiftResource
getCreationLog, getLink, getMessages, hasCreationLog, setLinks
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+APIResource

+
+protected APIResource(String login,
+                      String password,
+                      IRestService service,
+                      Map<String,Link> links)
+
+
+ + + + + + + + +
+Method Detail
+ +

+getLogin

+
+protected final String getLogin()
+
+
+
+
+
+
+
+
+
+ +

+getPassword

+
+protected final String getPassword()
+
+
+
+
+
+
+
+
+
+ +

+getServer

+
+public String getServer()
+
+
Description copied from interface: IOpenShiftConnection
+
Returns the server this connection is bound to. +

+

+
Specified by:
getServer in interface IOpenShiftConnection
+
+
+ +
Returns:
the server
+
+
+
+ +

+setEnableSSLCertChecks

+
+public void setEnableSSLCertChecks(boolean doSSLChecks)
+
+
Description copied from interface: IOpenShiftConnection
+
Sets flag for enabling SSL certificate checks (i.e. self-signed SSL + certificates) +

+

+
Specified by:
setEnableSSLCertChecks in interface IOpenShiftConnection
+
+
+
+
+
+
+ +

+setProxySet

+
+public void setProxySet(boolean proxySet)
+
+
Description copied from interface: IOpenShiftConnection
+
Sets flag for using an HTTP proxy +

+

+
Specified by:
setProxySet in interface IOpenShiftConnection
+
+
+
+
+
+
+ +

+setProxyHost

+
+public void setProxyHost(String proxyHost)
+
+
Description copied from interface: IOpenShiftConnection
+
Sets the HTTP proxy hostname +

+

+
Specified by:
setProxyHost in interface IOpenShiftConnection
+
+
+
+
+
+
+ +

+setProxyPort

+
+public void setProxyPort(String proxyPort)
+
+
Description copied from interface: IOpenShiftConnection
+
Sets the HTTP proxy port +

+

+
Specified by:
setProxyPort in interface IOpenShiftConnection
+
+
+
+
+
+
+ +

+getUser

+
+public IUser getUser()
+              throws OpenShiftException
+
+
Description copied from interface: IOpenShiftConnection
+
Returns the user associated with the current OpenShift connection. +

+

+
Specified by:
getUser in interface IOpenShiftConnection
+
+
+ +
Returns:
the user +
Throws: +
OpenShiftException
+
+
+
+ +

+getDomains

+
+public List<IDomain> getDomains()
+                         throws OpenShiftException
+
+
Description copied from interface: IOpenShiftConnection
+
Returns the domains associated with the current OpenShift connection. +

+

+
Specified by:
getDomains in interface IOpenShiftConnection
+
+
+ +
Returns:
the domains +
Throws: +
OpenShiftException
+
+
+
+ +

+getDomain

+
+public IDomain getDomain(String id)
+                  throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getDefaultDomain

+
+public IDomain getDefaultDomain()
+
+
+
+
+
+
+
+
+
+ +

+createDomain

+
+public IDomain createDomain(String id)
+                     throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getStandaloneCartridges

+
+public List<IStandaloneCartridge> getStandaloneCartridges()
+                                                   throws OpenShiftException
+
+
Description copied from interface: IOpenShiftConnection
+
Returns the available standalone cartridges associated with the current + OpenShift connection. +

+

+
Specified by:
getStandaloneCartridges in interface IOpenShiftConnection
+
+
+ +
Returns:
the available standalone cartridges +
Throws: +
OpenShiftException
+
+
+
+ +

+getEmbeddableCartridges

+
+public List<IEmbeddableCartridge> getEmbeddableCartridges()
+                                                   throws OpenShiftException
+
+
Description copied from interface: IOpenShiftConnection
+
Returns the available embeddable cartridges associated with the current + OpenShift connection. +

+

+
Specified by:
getEmbeddableCartridges in interface IOpenShiftConnection
+
+
+ +
Returns:
the available embeddable cartridges +
Throws: +
OpenShiftException
+
+
+
+ +

+refresh

+
+public void refresh()
+             throws OpenShiftException
+
+
Description copied from interface: IOpenShiftResource
+
Refresh the resource and its list of children resources that were + previously loaded +

+

+
Specified by:
refresh in interface IOpenShiftResource
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+removeDomain

+
+protected void removeDomain(IDomain domain)
+
+
Called after a domain has been destroyed +

+

+
+
+
+
Parameters:
domain - the domain to remove from the API's domains list.
+
+
+
+ +

+hasDomain

+
+protected boolean hasDomain(String name)
+                     throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getExecutorService

+
+public ExecutorService getExecutorService()
+
+
Description copied from interface: IOpenShiftConnection
+
Returns the executor service instance that's available in this + connection. +

+

+
Specified by:
getExecutorService in interface IOpenShiftConnection
+
+
+ +
Returns:
the executor service instance for this connection
See Also:
ExecutorService, +Executors
+
+
+
+ +

+disconnect

+
+public void disconnect()
+
+
+
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/AbstractOpenShiftConnectionFactory.html b/documentation/com/openshift/internal/client/AbstractOpenShiftConnectionFactory.html new file mode 100644 index 00000000..e96d0cdc --- /dev/null +++ b/documentation/com/openshift/internal/client/AbstractOpenShiftConnectionFactory.html @@ -0,0 +1,273 @@ + + + + + + + +AbstractOpenShiftConnectionFactory (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client +
+Class AbstractOpenShiftConnectionFactory

+
+java.lang.Object
+  extended by com.openshift.internal.client.AbstractOpenShiftConnectionFactory
+
+
+
Direct Known Subclasses:
OpenShiftConnectionFactory
+
+
+
+
public abstract class AbstractOpenShiftConnectionFactory
extends Object
+ + +

+Connection Factory, used to establish a connection and retrieve a user. +

+ +

+

+
Author:
+
Xavier Coulon, Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
AbstractOpenShiftConnectionFactory() + +
+           
+  + + + + + + + + + + + +
+Method Summary
+protected  IOpenShiftConnectiongetConnection(IRestService service, + String login, + String password) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+AbstractOpenShiftConnectionFactory

+
+public AbstractOpenShiftConnectionFactory()
+
+
+ + + + + + + + +
+Method Detail
+ +

+getConnection

+
+protected IOpenShiftConnection getConnection(IRestService service,
+                                             String login,
+                                             String password)
+                                      throws IOException,
+                                             OpenShiftException
+
+
+ +
Throws: +
IOException +
OpenShiftException
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/AbstractOpenShiftResource.Parameters.html b/documentation/com/openshift/internal/client/AbstractOpenShiftResource.Parameters.html new file mode 100644 index 00000000..c90c66d4 --- /dev/null +++ b/documentation/com/openshift/internal/client/AbstractOpenShiftResource.Parameters.html @@ -0,0 +1,433 @@ + + + + + + + +AbstractOpenShiftResource.Parameters (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client +
+Class AbstractOpenShiftResource.Parameters

+
+java.lang.Object
+  extended by com.openshift.internal.client.AbstractOpenShiftResource.Parameters
+
+
+
Enclosing class:
AbstractOpenShiftResource
+
+
+
+
protected static class AbstractOpenShiftResource.Parameters
extends Object
+ + +

+


+ +

+ + + + + + + + + + + + +
+Constructor Summary
+protected AbstractOpenShiftResource.Parameters() + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+protected  AbstractOpenShiftResource.Parametersadd(Parameter parameter) + +
+           
+protected  AbstractOpenShiftResource.Parametersadd(String name, + String value) + +
+           
+protected  AbstractOpenShiftResource.ParametersaddCartridge(IEmbeddableCartridge embeddable) + +
+           
+protected  AbstractOpenShiftResource.ParametersaddCartridges(IStandaloneCartridge standalone, + IEmbeddableCartridge[] embeddables) + +
+           
+protected  AbstractOpenShiftResource.ParametersaddEnvironmentVariables(Map<String,String> environmentVariables) + +
+           
+protected  AbstractOpenShiftResource.ParametersgearProfile(IGearProfile gearProfile) + +
+           
+protected  AbstractOpenShiftResource.Parametersinclude(String includedResource) + +
+           
+protected  AbstractOpenShiftResource.Parametersscale(ApplicationScale scale) + +
+           
+protected  Parameter[]toArray() + +
+           
+protected  List<Parameter>toList() + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+AbstractOpenShiftResource.Parameters

+
+protected AbstractOpenShiftResource.Parameters()
+
+
+ + + + + + + + +
+Method Detail
+ +

+addCartridge

+
+protected AbstractOpenShiftResource.Parameters addCartridge(IEmbeddableCartridge embeddable)
+
+
+
+
+
+
+ +

+addCartridges

+
+protected AbstractOpenShiftResource.Parameters addCartridges(IStandaloneCartridge standalone,
+                                                             IEmbeddableCartridge[] embeddables)
+
+
+
+
+
+
+ +

+addEnvironmentVariables

+
+protected AbstractOpenShiftResource.Parameters addEnvironmentVariables(Map<String,String> environmentVariables)
+
+
+
+
+
+
+ +

+scale

+
+protected AbstractOpenShiftResource.Parameters scale(ApplicationScale scale)
+
+
+
+
+
+
+ +

+gearProfile

+
+protected AbstractOpenShiftResource.Parameters gearProfile(IGearProfile gearProfile)
+
+
+
+
+
+
+ +

+include

+
+protected AbstractOpenShiftResource.Parameters include(String includedResource)
+
+
+
+
+
+
+ +

+add

+
+protected AbstractOpenShiftResource.Parameters add(String name,
+                                                   String value)
+
+
+
+
+
+
+ +

+add

+
+protected AbstractOpenShiftResource.Parameters add(Parameter parameter)
+
+
+
+
+
+
+ +

+toArray

+
+protected Parameter[] toArray()
+
+
+
+
+
+
+ +

+toList

+
+protected List<Parameter> toList()
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/AbstractOpenShiftResource.ServiceRequest.html b/documentation/com/openshift/internal/client/AbstractOpenShiftResource.ServiceRequest.html new file mode 100644 index 00000000..747002ae --- /dev/null +++ b/documentation/com/openshift/internal/client/AbstractOpenShiftResource.ServiceRequest.html @@ -0,0 +1,493 @@ + + + + + + + +AbstractOpenShiftResource.ServiceRequest (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client +
+Class AbstractOpenShiftResource.ServiceRequest

+
+java.lang.Object
+  extended by com.openshift.internal.client.AbstractOpenShiftResource.ServiceRequest
+
+
+
Enclosing class:
AbstractOpenShiftResource
+
+
+
+
protected class AbstractOpenShiftResource.ServiceRequest
extends Object
+ + +

+


+ +

+ + + + + + + + + + + +
+Field Summary
+protected  StringlinkName + +
+           
+  + + + + + + + + + + + +
+Constructor Summary
+protected AbstractOpenShiftResource.ServiceRequest(String linkName) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+protected + + + + +
+<DTO> DTO
+
execute(int timeout, + IMediaType mediaType, + Parameter... parameters) + +
+           
+protected + + + + +
+<DTO> DTO
+
execute(int timeout, + List<Parameter> urlParameter, + IMediaType mediaType, + Parameter... parameters) + +
+           
+protected + + + + +
+<DTO> DTO
+
execute(int timeout, + List<Parameter> urlParameter, + Parameter... parameters) + +
+           
+protected + + + + +
+<DTO> DTO
+
execute(int timeout, + Parameter... parameters) + +
+           
+protected + + + + +
+<DTO> DTO
+
execute(List<Parameter> urlParameter, + Parameter... parameters) + +
+           
+protected + + + + +
+<DTO> DTO
+
execute(Parameter... parameters) + +
+           
+protected + + + + +
+<DTO> DTO
+
getData(RestResponse response) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Field Detail
+ +

+linkName

+
+protected final String linkName
+
+
+
+
+ + + + + + + + +
+Constructor Detail
+ +

+AbstractOpenShiftResource.ServiceRequest

+
+protected AbstractOpenShiftResource.ServiceRequest(String linkName)
+
+
+ + + + + + + + +
+Method Detail
+ +

+execute

+
+protected <DTO> DTO execute(Parameter... parameters)
+               throws OpenShiftException
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+execute

+
+protected <DTO> DTO execute(int timeout,
+                            Parameter... parameters)
+               throws OpenShiftException
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+execute

+
+protected <DTO> DTO execute(int timeout,
+                            IMediaType mediaType,
+                            Parameter... parameters)
+               throws OpenShiftException
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+execute

+
+protected <DTO> DTO execute(List<Parameter> urlParameter,
+                            Parameter... parameters)
+               throws OpenShiftException
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+execute

+
+protected <DTO> DTO execute(int timeout,
+                            List<Parameter> urlParameter,
+                            Parameter... parameters)
+               throws OpenShiftException
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+execute

+
+protected <DTO> DTO execute(int timeout,
+                            List<Parameter> urlParameter,
+                            IMediaType mediaType,
+                            Parameter... parameters)
+               throws OpenShiftException
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getData

+
+protected <DTO> DTO getData(RestResponse response)
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/AbstractOpenShiftResource.html b/documentation/com/openshift/internal/client/AbstractOpenShiftResource.html new file mode 100644 index 00000000..d9c72946 --- /dev/null +++ b/documentation/com/openshift/internal/client/AbstractOpenShiftResource.html @@ -0,0 +1,449 @@ + + + + + + + +AbstractOpenShiftResource (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client +
+Class AbstractOpenShiftResource

+
+java.lang.Object
+  extended by com.openshift.internal.client.AbstractOpenShiftResource
+
+
+
All Implemented Interfaces:
IOpenShiftResource
+
+
+
Direct Known Subclasses:
APIResource, ApplicationResource, DomainResource, EmbeddedCartridgeResource, EnvironmentVariableResource, GearGroupResource, SSHKeyResource, UserResource
+
+
+
+
public abstract class AbstractOpenShiftResource
extends Object
implements IOpenShiftResource
+ + +

+The Class AbstractOpenShiftResource. +

+ +

+

+
Author:
+
Xavier Coulon, Andre Dietisheim, Syed Iqbal
+
+
+ +

+ + + + + + + + + + + + + + + +
+Nested Class Summary
+protected static classAbstractOpenShiftResource.Parameters + +
+           
+protected  classAbstractOpenShiftResource.ServiceRequest + +
+           
+  + + + + + + + + + + + + + + + +
+Constructor Summary
+protected AbstractOpenShiftResource(IRestService service) + +
+          Instantiates a new abstract open shift resource.
+protected AbstractOpenShiftResource(IRestService service, + Map<String,Link> links, + Messages messages) + +
+          Instantiates a new abstract open shift resource.
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ StringgetCreationLog() + +
+          Returns the log that was created when the resource was created.
+protected  LinkgetLink(String linkName) + +
+          Gets the link for the given name.
+ MessagesgetMessages() + +
+          Returns all the (creation log) messages.
+ booleanhasCreationLog() + +
+          Returns + true if there is log about the creation of this resource.
+protected  voidsetLinks(Map<String,Link> links) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+ + + + + + + +
Methods inherited from interface com.openshift.client.IOpenShiftResource
refresh
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+AbstractOpenShiftResource

+
+protected AbstractOpenShiftResource(IRestService service)
+
+
Instantiates a new abstract open shift resource. +

+

+
Parameters:
service - the service
+
+
+ +

+AbstractOpenShiftResource

+
+protected AbstractOpenShiftResource(IRestService service,
+                                    Map<String,Link> links,
+                                    Messages messages)
+
+
Instantiates a new abstract open shift resource. +

+

+
Parameters:
service - the service
links - the links
+
+ + + + + + + + +
+Method Detail
+ +

+setLinks

+
+protected void setLinks(Map<String,Link> links)
+
+
+
+
+
+
+
+
+
+ +

+getLink

+
+protected Link getLink(String linkName)
+                throws OpenShiftException
+
+
Gets the link for the given name. Throws OpenShiftRequestException if no + link with this name exists within this resource. +

+ This method is protected for testing purposes only. +

+

+
+
+
+
Parameters:
linkName - the name of the link that shall get retrieved +
Returns:
the link with the given name +
Throws: +
OpenShiftException - thrown if no link with the given name exists
+
+
+
+ +

+hasCreationLog

+
+public boolean hasCreationLog()
+
+
Description copied from interface: IOpenShiftResource
+
Returns + true if there is log about the creation of this resource. + Creation logs are only available at creation time. So resources that were retrieved + while they already existed wont have a creation log. +

+

+
Specified by:
hasCreationLog in interface IOpenShiftResource
+
+
+ +
Returns:
true if there's cretion log for this resource
+
+
+
+ +

+getCreationLog

+
+public String getCreationLog()
+
+
Description copied from interface: IOpenShiftResource
+
Returns the log that was created when the resource was created. +

+

+
Specified by:
getCreationLog in interface IOpenShiftResource
+
+
+ +
Returns:
the log which reported the creation of this resource
+
+
+
+ +

+getMessages

+
+public Messages getMessages()
+
+
Description copied from interface: IOpenShiftResource
+
Returns all the (creation log) messages. These messages only exist at + creation time. Existing cartridges, that were added in a prior session + dont have any messages any more. +

+

+
Specified by:
getMessages in interface IOpenShiftResource
+
+
+ +
Returns:
all messages by field
See Also:
IOpenShiftResource.getCreationLog()
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/ApplicationResource.SshStreams.html b/documentation/com/openshift/internal/client/ApplicationResource.SshStreams.html new file mode 100644 index 00000000..1789d678 --- /dev/null +++ b/documentation/com/openshift/internal/client/ApplicationResource.SshStreams.html @@ -0,0 +1,370 @@ + + + + + + + +ApplicationResource.SshStreams (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client +
+Enum ApplicationResource.SshStreams

+
+java.lang.Object
+  extended by java.lang.Enum<ApplicationResource.SshStreams>
+      extended by com.openshift.internal.client.ApplicationResource.SshStreams
+
+
+
All Implemented Interfaces:
Serializable, Comparable<ApplicationResource.SshStreams>
+
+
+
Enclosing class:
ApplicationResource
+
+
+
+
protected static enum ApplicationResource.SshStreams
extends Enum<ApplicationResource.SshStreams>
+ + +

+


+ +

+ + + + + + + + + + + + + +
+Enum Constant Summary
EXT_INPUT + +
+           
INPUT + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+protected abstract  InputStreamgetInputStream(com.jcraft.jsch.Channel channel) + +
+           
+ List<String>getLines(com.jcraft.jsch.Channel channel) + +
+           
+static ApplicationResource.SshStreamsvalueOf(String name) + +
+          Returns the enum constant of this type with the specified name.
+static ApplicationResource.SshStreams[]values() + +
+          Returns an array containing the constants of this enum type, in +the order they are declared.
+ + + + + + + +
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
+ + + + + + + +
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Enum Constant Detail
+ +

+EXT_INPUT

+
+public static final ApplicationResource.SshStreams EXT_INPUT
+
+
+
+
+
+ +

+INPUT

+
+public static final ApplicationResource.SshStreams INPUT
+
+
+
+
+ + + + + + + + +
+Method Detail
+ +

+values

+
+public static ApplicationResource.SshStreams[] values()
+
+
Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
+for (ApplicationResource.SshStreams c : ApplicationResource.SshStreams.values())
+    System.out.println(c);
+
+

+

+ +
Returns:
an array containing the constants of this enum type, in +the order they are declared
+
+
+
+ +

+valueOf

+
+public static ApplicationResource.SshStreams valueOf(String name)
+
+
Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.) +

+

+
Parameters:
name - the name of the enum constant to be returned. +
Returns:
the enum constant with the specified name +
Throws: +
IllegalArgumentException - if this enum type has no constant +with the specified name +
NullPointerException - if the argument is null
+
+
+
+ +

+getLines

+
+public List<String> getLines(com.jcraft.jsch.Channel channel)
+                      throws IOException
+
+
+ +
Throws: +
IOException
+
+
+
+ +

+getInputStream

+
+protected abstract InputStream getInputStream(com.jcraft.jsch.Channel channel)
+                                       throws IOException
+
+
+ +
Throws: +
IOException
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/ApplicationResource.html b/documentation/com/openshift/internal/client/ApplicationResource.html new file mode 100644 index 00000000..8c8caec1 --- /dev/null +++ b/documentation/com/openshift/internal/client/ApplicationResource.html @@ -0,0 +1,2168 @@ + + + + + + + +ApplicationResource (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client +
+Class ApplicationResource

+
+java.lang.Object
+  extended by com.openshift.internal.client.AbstractOpenShiftResource
+      extended by com.openshift.internal.client.ApplicationResource
+
+
+
All Implemented Interfaces:
IApplication, IOpenShiftResource
+
+
+
+
public class ApplicationResource
extends AbstractOpenShiftResource
implements IApplication
+ + +

+The ApplicationResource object is an implementation of com.openshift.client.IApplication, and provides + a runtime model for the real application that resides on the OpenShift platform being accessed. +

+ +

+

+
Author:
+
André Dietisheim, Syed Iqbal, Martes G Wigglesworth
+
+
+ +

+ + + + + + + + + + + +
+Nested Class Summary
+protected static classApplicationResource.SshStreams + +
+           
+ + + + + + + +
Nested classes/interfaces inherited from class com.openshift.internal.client.AbstractOpenShiftResource
AbstractOpenShiftResource.Parameters, AbstractOpenShiftResource.ServiceRequest
+  + + + + + + + + + + + + + + + + +
+Constructor Summary
+protected ApplicationResource(ApplicationResourceDTO dto, + DomainResource domain) + +
+           
+protected ApplicationResource(String name, + String uuid, + String creationTime, + Messages messages, + String applicationUrl, + String sshUrl, + String gitUrl, + String initialGitUrl, + IGearProfile gearProfile, + ApplicationScale scale, + List<String> aliases, + Map<String,CartridgeResourceDTO> cartridgesByName, + Map<String,Link> links, + DomainResource domain) + +
+          Instantiates a new application.
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ voidaddAlias(String alias) + +
+          Add application alias
+ IEmbeddedCartridgeaddEmbeddableCartridge(IEmbeddableCartridge cartridge) + +
+          Adds the given embedded cartridge to this application.
+ List<IEmbeddedCartridge>addEmbeddableCartridges(Collection<IEmbeddableCartridge> cartridges) + +
+          Adds all given embedded cartridges from this app, given their names.
+ IEnvironmentVariableaddEnvironmentVariable(String name, + String value) + +
+          Adds an environment variable to this application.
+ Map<String,IEnvironmentVariable>addEnvironmentVariables(Map<String,String> environmentVariables) + +
+          Adds a map of environment variables to the application
+ booleancanGetEnvironmentVariables() + +
+          Used to determine if environment variables exist and are available to be retrieved
+protected  booleancanResolv(String url) + +
+           
+ booleancanUpdateEnvironmentVariables() + +
+          Used to determine if the current instance is able to update environment variables.
+ voiddestroy() + +
+          Destroys this application (and removes it from the list of available + applications)
+ booleanequals(Object object) + +
+           
+ List<String>getAliases() + +
+          Retrieve all application aliases
+ ApplicationScalegetApplicationScale() + +
+          Returns true if scaling is enabled on this application (only set at + creation time).
+ StringgetApplicationUrl() + +
+          Returns the url at which this application may be reached at.
+ IStandaloneCartridgegetCartridge() + +
+          Returns the cartridge (application type) that this app is running on.
+protected  ICartridgegetCartridge(String cartridgeName) + +
+          Returns the main (standalone) cartrige or one of the embedded cartridges + whose name matches the given param.
+protected  IOpenShiftConnectiongetConnection() + +
+           
+ DategetCreationTime() + +
+          Returns the timestamp at which this app was created.
+ voidgetDescriptor() + +
+           
+ IDomaingetDomain() + +
+          Get the domain of the application.
+ IEmbeddedCartridgegetEmbeddedCartridge(IEmbeddableCartridge cartridge) + +
+          Returns the embedded cartridge in this application.
+ IEmbeddedCartridgegetEmbeddedCartridge(String cartridgeName) + +
+          Returns the embedded cartridge given its name.
+ List<IEmbeddedCartridge>getEmbeddedCartridges() + +
+          Returns all embedded cartridges.
+ List<String>getEnvironmentProperties() + +
+          Retrieves the list of environment properties.
+ IEnvironmentVariablegetEnvironmentVariable(String name) + +
+          Return the environment variable for the specified name
+ Map<String,IEnvironmentVariable>getEnvironmentVariables() + +
+          Retrieves the map of environment variables
+ List<IApplicationPortForwarding>getForwardablePorts() + +
+          Returns the list of forwardable ports on OpenShift for this application.
+ Collection<IGearGroup>getGearGroups() + +
+          Returns the gear groups for this application.
+ IGearProfilegetGearProfile() + +
+          Returns true if scaling is enabled on this application (only set at + creation time).
+ StringgetGitUrl() + +
+          Returns the uri at which the git repository of this application may be + reached at.
+ StringgetInitialGitUrl() + +
+          Returns the git url that the application will get its initial code and configuration from.
+ StringgetName() + +
+          Returns the name of this application.
+protected  Map<String,IEnvironmentVariable>getOrLoadEnvironmentVariables() + +
+           
+ com.jcraft.jsch.SessiongetSSHSession() + +
+          Returns the SSH session that this application uses to connect to + OpenShift.
+ StringgetSshUrl() + +
+          Returns the url to use to connect with ssh.
+ StringgetUUID() + +
+          Returns the uuid of this application.
+ booleanhasAlias(String name) + +
+           
+ booleanhasEmbeddedCartridge(IEmbeddableCartridge cartridge) + +
+          Returns true if this application has an embedded cartridge.
+ booleanhasEmbeddedCartridge(String cartridgeName) + +
+          Returns true if this application has an embedded cartridge.
+ booleanhasEnvironmentVariable(String name) + +
+          Checks if the environment variable is present in the application.
+ inthashCode() + +
+           
+ booleanhasSSHSession() + +
+          Returns true if the application was already provided with an SSH session, + and this session is still valid (connected).
+ booleanisPortFowardingStarted() + +
+          Returns true if the port-forwarding has been started, false otherwise.
+ voidrefresh() + +
+          Refresh the application but reloading its content from OpenShift.
+protected  voidrefreshEmbeddedCartridges() + +
+          Queries the backend to list the embedded cartridges and adds the new ones + & update the ones that are already present
+ List<IApplicationPortForwarding>refreshForwardablePorts() + +
+          Refreshes the list of port-forwarding.
+ voidremoveAlias(String alias) + +
+          Remove application alias
+ voidremoveEmbeddedCartridge(IEmbeddableCartridge cartridge) + +
+          Removes the given embedded cartridge that is equal to the given + embeddable cartridge.
+protected  voidremoveEmbeddedCartridge(IEmbeddedCartridge embeddedCartridge) + +
+          "callback" from the embeddedCartridge once it has been destroyed.
+ voidremoveEmbeddedCartridges(Collection<IEmbeddableCartridge> cartridges) + +
+          Removes the given embedded cartridges in this application that are equal to the + given IEmbeddableCartridge.
+ voidremoveEnvironmentVariable(IEnvironmentVariable environmentVariable) + +
+          Removes the environment variables with the given name from this application.
+ voidremoveEnvironmentVariable(String targetName) + +
+          Removes the environment variables with the given name from this application.
+ voidrestart() + +
+          Restarts this application.
+ voidscaleDown() + +
+          Scale down application
+ voidscaleUp() + +
+          Scale up application
+ voidsetSSHSession(com.jcraft.jsch.Session session) + +
+          Sets the SSH session that this application will use to connect to + OpenShift to perform some operations.
+protected  List<String>sshExecCmd(String command, + ApplicationResource.SshStreams sshStream) + +
+           
+ voidstart() + +
+          Starts this application.
+ List<IApplicationPortForwarding>startPortForwarding() + +
+           
+ voidstop() + +
+          Stops this application.
+ voidstop(boolean force) + +
+          Stops this application
+ List<IApplicationPortForwarding>stopPortForwarding() + +
+          Stop the port-forwarding for all ports.
+ StringtoString() + +
+           
+protected  voidupdate(ApplicationResourceDTO dto) + +
+           
+protected  voidupdateEnvironmentVariables() + +
+           
+ booleanwaitForAccessible(long timeout) + +
+          Waits for this application to become accessible on its public url.
+ Future<Boolean>waitForAccessibleAsync(long timeout) + +
+          Returns a Future that the caller can use to wait for the application to + become accessible on its public url.
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.AbstractOpenShiftResource
getCreationLog, getLink, getMessages, hasCreationLog, setLinks
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
+ + + + + + + +
Methods inherited from interface com.openshift.client.IOpenShiftResource
getCreationLog, getMessages, hasCreationLog
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+ApplicationResource

+
+protected ApplicationResource(ApplicationResourceDTO dto,
+                              DomainResource domain)
+
+
+
+ +

+ApplicationResource

+
+protected ApplicationResource(String name,
+                              String uuid,
+                              String creationTime,
+                              Messages messages,
+                              String applicationUrl,
+                              String sshUrl,
+                              String gitUrl,
+                              String initialGitUrl,
+                              IGearProfile gearProfile,
+                              ApplicationScale scale,
+                              List<String> aliases,
+                              Map<String,CartridgeResourceDTO> cartridgesByName,
+                              Map<String,Link> links,
+                              DomainResource domain)
+
+
Instantiates a new application. +

+

+
Parameters:
name - the name
uuid - the uuid
creationTime - the creation time
messages - the creation log
applicationUrl - the application url
gitUrl - the git url
sshUrl - the ssh url
cartridge - the cartridge (type/framework)
aliases - the aliases
links - the links
domain - the domain this application belongs to +
Throws: +
DatatypeConfigurationException
+
+ + + + + + + + +
+Method Detail
+ +

+getName

+
+public String getName()
+
+
Description copied from interface: IApplication
+
Returns the name of this application. +

+

+
Specified by:
getName in interface IApplication
+
+
+ +
Returns:
+
+
+
+ +

+getApplicationScale

+
+public ApplicationScale getApplicationScale()
+
+
Description copied from interface: IApplication
+
Returns true if scaling is enabled on this application (only set at + creation time). +

+

+
Specified by:
getApplicationScale in interface IApplication
+
+
+ +
Returns:
true if scaling is enabled on this application (only set at + creation time).
+
+
+
+ +

+getGearProfile

+
+public IGearProfile getGearProfile()
+
+
Description copied from interface: IApplication
+
Returns true if scaling is enabled on this application (only set at + creation time). +

+

+
Specified by:
getGearProfile in interface IApplication
+
+
+ +
Returns:
true if scaling is enabled on this application (only set at + creation time).
+
+
+
+ +

+getUUID

+
+public String getUUID()
+
+
Description copied from interface: IApplication
+
Returns the uuid of this application. +

+

+
Specified by:
getUUID in interface IApplication
+
+
+ +
Returns:
the uuid of this application.
+
+
+
+ +

+getCartridge

+
+public IStandaloneCartridge getCartridge()
+
+
Description copied from interface: IApplication
+
Returns the cartridge (application type) that this app is running on. +

+

+
Specified by:
getCartridge in interface IApplication
+
+
+ +
Returns:
the cartridge of this application
+
+
+
+ +

+getCartridge

+
+protected ICartridge getCartridge(String cartridgeName)
+
+
Returns the main (standalone) cartrige or one of the embedded cartridges + whose name matches the given param. +

+

+
+
+
+
Parameters:
cartridgeName - the name of the cartridge to look for. +
Returns:
the cartridge or null if none has this name.
+
+
+
+ +

+getCreationTime

+
+public Date getCreationTime()
+
+
Description copied from interface: IApplication
+
Returns the timestamp at which this app was created. +

+

+
Specified by:
getCreationTime in interface IApplication
+
+
+ +
Returns:
the creation time
+
+
+
+ +

+getDomain

+
+public IDomain getDomain()
+
+
Description copied from interface: IApplication
+
Get the domain of the application. +

+

+
Specified by:
getDomain in interface IApplication
+
+
+ +
Returns:
the domain
+
+
+
+ +

+destroy

+
+public void destroy()
+             throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Destroys this application (and removes it from the list of available + applications) +

+

+
Specified by:
destroy in interface IApplication
+
+
+ +
Throws: +
OpenShiftException
See Also:
IUser#getApplications()
+
+
+
+ +

+start

+
+public void start()
+           throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Starts this application. Has no effect if this app is already running. +

+

+
Specified by:
start in interface IApplication
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+restart

+
+public void restart()
+             throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Restarts this application. +

+

+
Specified by:
restart in interface IApplication
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+stop

+
+public void stop()
+          throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Stops this application. +

+

+
Specified by:
stop in interface IApplication
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+stop

+
+public void stop(boolean force)
+          throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Stops this application +

+

+
Specified by:
stop in interface IApplication
+
+
+
Parameters:
force - : true to force stop, false otherwise +
Throws: +
OpenShiftException
+
+
+
+ +

+getDescriptor

+
+public void getDescriptor()
+
+
+
+
+
+
+
+
+
+ +

+scaleDown

+
+public void scaleDown()
+               throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Scale down application +

+

+
Specified by:
scaleDown in interface IApplication
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+scaleUp

+
+public void scaleUp()
+             throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Scale up application +

+

+
Specified by:
scaleUp in interface IApplication
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+addAlias

+
+public void addAlias(String alias)
+              throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Add application alias +

+

+
Specified by:
addAlias in interface IApplication
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getAliases

+
+public List<String> getAliases()
+
+
Description copied from interface: IApplication
+
Retrieve all application aliases +

+

+
Specified by:
getAliases in interface IApplication
+
+
+ +
Returns:
application aliases in an unmodifiable collection
+
+
+
+ +

+hasAlias

+
+public boolean hasAlias(String name)
+
+
+
Specified by:
hasAlias in interface IApplication
+
+
+
+
+
+
+ +

+removeAlias

+
+public void removeAlias(String alias)
+                 throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Remove application alias +

+

+
Specified by:
removeAlias in interface IApplication
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getGitUrl

+
+public String getGitUrl()
+
+
Description copied from interface: IApplication
+
Returns the uri at which the git repository of this application may be + reached at. +

+

+
Specified by:
getGitUrl in interface IApplication
+
+
+ +
Returns:
the uri of the git repo of this application.
+
+
+
+ +

+getInitialGitUrl

+
+public String getInitialGitUrl()
+
+
Description copied from interface: IApplication
+
Returns the git url that the application will get its initial code and configuration from. +

+

+
Specified by:
getInitialGitUrl in interface IApplication
+
+
+ +
Returns:
the initial git url
+
+
+
+ +

+getSshUrl

+
+public String getSshUrl()
+
+
Description copied from interface: IApplication
+
Returns the url to use to connect with ssh. +

+

+
Specified by:
getSshUrl in interface IApplication
+
+
+ +
Returns:
the sshUrl
+
+
+
+ +

+getApplicationUrl

+
+public String getApplicationUrl()
+
+
Description copied from interface: IApplication
+
Returns the url at which this application may be reached at. +

+

+
Specified by:
getApplicationUrl in interface IApplication
+
+
+ +
Returns:
the url of this application.
+
+
+
+ +

+addEmbeddableCartridge

+
+public IEmbeddedCartridge addEmbeddableCartridge(IEmbeddableCartridge cartridge)
+                                          throws OpenShiftException
+
+
Adds the given embedded cartridge to this application. +

+

+
Specified by:
addEmbeddableCartridge in interface IApplication
+
+
+
Parameters:
cartridge - the embeddable cartridge that shall be added to this + application +
Throws: +
OpenShiftException
+
+
+
+ +

+addEmbeddableCartridges

+
+public List<IEmbeddedCartridge> addEmbeddableCartridges(Collection<IEmbeddableCartridge> cartridges)
+                                                 throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Adds all given embedded cartridges from this app, given their names. +

+

+
Specified by:
addEmbeddableCartridges in interface IApplication
+
+
+ +
Throws: +
OpenShiftException
See Also:
#addEmbeddableCartridge(IEmbeddedCartridge), +#removeEmbeddedCartridge(IEmbeddedCartridge)
+
+
+
+ +

+removeEmbeddedCartridge

+
+protected void removeEmbeddedCartridge(IEmbeddedCartridge embeddedCartridge)
+                                throws OpenShiftException
+
+
"callback" from the embeddedCartridge once it has been destroyed. +

+

+
+
+
+
Parameters:
embeddedCartridge - +
Throws: +
OpenShiftException
+
+
+
+ +

+refreshEmbeddedCartridges

+
+protected void refreshEmbeddedCartridges()
+                                  throws OpenShiftException
+
+
Queries the backend to list the embedded cartridges and adds the new ones + & update the ones that are already present +

+

+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getEmbeddedCartridges

+
+public List<IEmbeddedCartridge> getEmbeddedCartridges()
+                                               throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Returns all embedded cartridges. +

+

+
Specified by:
getEmbeddedCartridges in interface IApplication
+
+
+ +
Returns:
all embedded cartridges. +
Throws: +
OpenShiftException
See Also:
IEmbeddedCartridge, +#addEmbeddableCartridge(IEmbeddedCartridge), +#removeEmbeddedCartridge(IEmbeddedCartridge)
+
+
+
+ +

+hasEmbeddedCartridge

+
+public boolean hasEmbeddedCartridge(String cartridgeName)
+                             throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Returns true if this application has an embedded cartridge. + Returns false otherwise. +

+

+
Specified by:
hasEmbeddedCartridge in interface IApplication
+
+
+ +
Returns:
true if there's an embedded cartridge with the given name +
Throws: +
OpenShiftException
See Also:
IEmbeddedCartridge, +#addEmbeddableCartridge(IEmbeddedCartridge), +#removeEmbeddedCartridge(IEmbeddedCartridge)
+
+
+
+ +

+hasEmbeddedCartridge

+
+public boolean hasEmbeddedCartridge(IEmbeddableCartridge cartridge)
+                             throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Returns true if this application has an embedded cartridge. + Returns false otherwise. +

+

+
Specified by:
hasEmbeddedCartridge in interface IApplication
+
+
+ +
Returns:
true if there's an embedded cartridge with the given name +
Throws: +
OpenShiftException
See Also:
IEmbeddedCartridge, +#addEmbeddableCartridge(IEmbeddedCartridge), +#removeEmbeddedCartridge(IEmbeddedCartridge)
+
+
+
+ +

+getEmbeddedCartridge

+
+public IEmbeddedCartridge getEmbeddedCartridge(IEmbeddableCartridge cartridge)
+                                        throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Returns the embedded cartridge in this application. Returns null if none was + found. +

+

+
Specified by:
getEmbeddedCartridge in interface IApplication
+
+
+ +
Returns:
the embedded cartridge +
Throws: +
OpenShiftException
+
+
+
+ +

+getEmbeddedCartridge

+
+public IEmbeddedCartridge getEmbeddedCartridge(String cartridgeName)
+                                        throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Returns the embedded cartridge given its name. Returns null + if none was found. +

+

+
Specified by:
getEmbeddedCartridge in interface IApplication
+
+
+ +
Returns:
the embedded cartridge with the given name +
Throws: +
OpenShiftException
+
+
+
+ +

+removeEmbeddedCartridge

+
+public void removeEmbeddedCartridge(IEmbeddableCartridge cartridge)
+                             throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Removes the given embedded cartridge that is equal to the given + embeddable cartridge. Does nothing if the cartridge is not present in + this application. +

+

+
Specified by:
removeEmbeddedCartridge in interface IApplication
+
+
+
Parameters:
cartridge - the cartridge that shall be removed +
Throws: +
OpenShiftException
+
+
+
+ +

+removeEmbeddedCartridges

+
+public void removeEmbeddedCartridges(Collection<IEmbeddableCartridge> cartridges)
+                              throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Removes the given embedded cartridges in this application that are equal to the + given IEmbeddableCartridge. Does nothing if the cartridge is not present + in this application. +

+

+
Specified by:
removeEmbeddedCartridges in interface IApplication
+
+
+
Parameters:
cartridges - the cartridges that shall get removed +
Throws: +
OpenShiftException
+
+
+
+ +

+getGearGroups

+
+public Collection<IGearGroup> getGearGroups()
+                                     throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Returns the gear groups for this application. + The collection is never cached, so each call will trigger a request to the OpenShift Broker. +

+

+
Specified by:
getGearGroups in interface IApplication
+
+
+ +
Returns:
the collection of IGearGroup for this application. +
Throws: +
OpenShiftException
+
+
+
+ +

+waitForAccessible

+
+public boolean waitForAccessible(long timeout)
+                          throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Waits for this application to become accessible on its public url. +

+

+
Specified by:
waitForAccessible in interface IApplication
+
+
+ +
Returns:
+
Throws: +
OpenShiftException
See Also:
IApplication.getApplicationUrl()
+
+
+
+ +

+waitForAccessibleAsync

+
+public Future<Boolean> waitForAccessibleAsync(long timeout)
+                                       throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Returns a Future that the caller can use to wait for the application to + become accessible on its public url. +

+

+
Specified by:
waitForAccessibleAsync in interface IApplication
+
+
+ +
Returns:
+
Throws: +
OpenShiftException
See Also:
IApplication.getApplicationUrl(), +IApplication.waitForAccessible(long), +IOpenShiftConnection.getExecutorService(), +Future
+
+
+
+ +

+getConnection

+
+protected IOpenShiftConnection getConnection()
+
+
+
+
+
+
+
+
+
+ +

+canResolv

+
+protected boolean canResolv(String url)
+                     throws MalformedURLException
+
+
+
+
+
+ +
Throws: +
MalformedURLException
+
+
+
+ +

+refresh

+
+public void refresh()
+             throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Refresh the application but reloading its content from OpenShift. At the + same time, this operation automatically set the embedded cartridges back + to an 'unloaded' state. +

+

+
Specified by:
refresh in interface IApplication
Specified by:
refresh in interface IOpenShiftResource
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+setSSHSession

+
+public void setSSHSession(com.jcraft.jsch.Session session)
+
+
Description copied from interface: IApplication
+
Sets the SSH session that this application will use to connect to + OpenShift to perform some operations. This SSH session must be + initialized out of the library, since the user's SSH settings may depend + on the runtime environment (Eclipse, etc.). +

+

+
Specified by:
setSSHSession in interface IApplication
+
+
+
Parameters:
session - the SSH session
+
+
+
+ +

+getSSHSession

+
+public com.jcraft.jsch.Session getSSHSession()
+
+
Description copied from interface: IApplication
+
Returns the SSH session that this application uses to connect to + OpenShift. +

+

+
Specified by:
getSSHSession in interface IApplication
+
+
+ +
Returns:
the SSH session that this application uses to connect to + OpenShift.
+
+
+
+ +

+hasSSHSession

+
+public boolean hasSSHSession()
+
+
Description copied from interface: IApplication
+
Returns true if the application was already provided with an SSH session, + and this session is still valid (connected). +

+

+
Specified by:
hasSSHSession in interface IApplication
+
+
+ +
Returns:
true if the application was already provided with an SSH session, + and this session is still valid (connected).
+
+
+
+ +

+isPortFowardingStarted

+
+public boolean isPortFowardingStarted()
+                               throws OpenShiftSSHOperationException
+
+
Description copied from interface: IApplication
+
Returns true if the port-forwarding has been started, false otherwise. +

+

+
Specified by:
isPortFowardingStarted in interface IApplication
+
+
+ +
Returns:
true if the port-forwarding has been started, false otherwise. +
Throws: +
OpenShiftSSHOperationException
+
+
+
+ +

+refreshForwardablePorts

+
+public List<IApplicationPortForwarding> refreshForwardablePorts()
+                                                         throws OpenShiftSSHOperationException
+
+
Description copied from interface: IApplication
+
Refreshes the list of port-forwarding. Started ones are kept as-is. +

+

+
Specified by:
refreshForwardablePorts in interface IApplication
+
+
+ +
Returns:
the list of forwardable ports on OpenShift for this application. +
Throws: +
OpenShiftSSHOperationException
+
+
+
+ +

+getForwardablePorts

+
+public List<IApplicationPortForwarding> getForwardablePorts()
+                                                     throws OpenShiftSSHOperationException
+
+
Description copied from interface: IApplication
+
Returns the list of forwardable ports on OpenShift for this application. +

+

+
Specified by:
getForwardablePorts in interface IApplication
+
+
+ +
Returns:
the list of forwardable ports on OpenShift for this application. +
Throws: +
OpenShiftSSHOperationException
+
+
+
+ +

+getEnvironmentProperties

+
+public List<String> getEnvironmentProperties()
+                                      throws OpenShiftSSHOperationException
+
+
Description copied from interface: IApplication
+
Retrieves the list of environment properties. +

+

+
Specified by:
getEnvironmentProperties in interface IApplication
+
+
+ +
Returns:
the list of environment properties. +
Throws: +
OpenShiftSSHOperationException
+
+
+
+ +

+getEnvironmentVariables

+
+public Map<String,IEnvironmentVariable> getEnvironmentVariables()
+                                                         throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Retrieves the map of environment variables +

+

+
Specified by:
getEnvironmentVariables in interface IApplication
+
+
+ +
Returns:
the Map of environment variables +
Throws: +
OpenShiftSSHOperationException +
OpenShiftException
+
+
+
+ +

+getOrLoadEnvironmentVariables

+
+protected Map<String,IEnvironmentVariable> getOrLoadEnvironmentVariables()
+                                                                  throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+addEnvironmentVariable

+
+public IEnvironmentVariable addEnvironmentVariable(String name,
+                                                   String value)
+                                            throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Adds an environment variable to this application. +

+

+
Specified by:
addEnvironmentVariable in interface IApplication
+
+
+
Parameters:
name - key associated with the variable to add
value - value of the new variable +
Throws: +
OpenShiftSSHOperationException - - if the variable already exists +
OpenShiftException
+
+
+
+ +

+addEnvironmentVariables

+
+public Map<String,IEnvironmentVariable> addEnvironmentVariables(Map<String,String> environmentVariables)
+                                                         throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Adds a map of environment variables to the application +

+

+
Specified by:
addEnvironmentVariables in interface IApplication
+
+
+
Parameters:
environmentVariables - Map of environment variables +
Throws: +
OpenShiftSSHOperationException +
OpenShiftException
+
+
+
+ +

+removeEnvironmentVariable

+
+public void removeEnvironmentVariable(String targetName)
+
+
Description copied from interface: IApplication
+
Removes the environment variables with the given name from this application. +

+

+
Specified by:
removeEnvironmentVariable in interface IApplication
+
+
+
Parameters:
targetName - key associated with the IEnvironmentVariable to be removed
+
+
+
+ +

+removeEnvironmentVariable

+
+public void removeEnvironmentVariable(IEnvironmentVariable environmentVariable)
+
+
Description copied from interface: IApplication
+
Removes the environment variables with the given name from this application. +

+

+
Specified by:
removeEnvironmentVariable in interface IApplication
+
+
+
Parameters:
environmentVariable - IEnvironmentVariable instance which should be removed
+
+
+
+ +

+hasEnvironmentVariable

+
+public boolean hasEnvironmentVariable(String name)
+                               throws OpenShiftException
+
+
Description copied from interface: IApplication
+
Checks if the environment variable is present in the application. +

+

+
Specified by:
hasEnvironmentVariable in interface IApplication
+
+
+
Parameters:
name - Name of the environment variable +
Returns:
true if the current instance has IEnvironmentVariables to return
+ false if the current instance has no IEnvironmentVariables to return +
Throws: +
OpenShiftSSHOperationException +
OpenShiftException
+
+
+
+ +

+updateEnvironmentVariables

+
+protected void updateEnvironmentVariables()
+                                   throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getEnvironmentVariable

+
+public IEnvironmentVariable getEnvironmentVariable(String name)
+
+
Description copied from interface: IApplication
+
Return the environment variable for the specified name +

+

+
Specified by:
getEnvironmentVariable in interface IApplication
+
+
+
Parameters:
name - key to be used to locate the environment variable +
Returns:
IEnvironmentVariable associated with the provided key
+
+
+
+ +

+canGetEnvironmentVariables

+
+public boolean canGetEnvironmentVariables()
+
+
Description copied from interface: IApplication
+
Used to determine if environment variables exist and are available to be retrieved +

+

+
Specified by:
canGetEnvironmentVariables in interface IApplication
+
+
+ +
Returns:
Returns true if this application can list its environment variables.
+ Returns false if it cannot. Internally this translates to the presence of the link to list environment variables.
See Also:
#getEnvironmentVariablesMap(), +IApplication.getEnvironmentVariable(String), +LINK_LIST_ENVIRONMENT_VARIABLES
+
+
+
+ +

+canUpdateEnvironmentVariables

+
+public boolean canUpdateEnvironmentVariables()
+
+
Description copied from interface: IApplication
+
Used to determine if the current instance is able to update environment variables. +

+

+
Specified by:
canUpdateEnvironmentVariables in interface IApplication
+
+
+ +
Returns:
Returns true if this application can augment its environment variables.
+ Returns false if it cannot.
See Also:
IApplication.addEnvironmentVariable(String, String), +IApplication.addEnvironmentVariables(Map), +LINK_SET_UNSET_ENVIRONMENT_VARIABLES
+
+
+
+ +

+sshExecCmd

+
+protected List<String> sshExecCmd(String command,
+                                  ApplicationResource.SshStreams sshStream)
+                           throws OpenShiftSSHOperationException
+
+
+
+
+
+
Parameters:
command - +
Returns:
+
Throws: +
OpenShiftSSHOperationException
+
+
+
+ +

+startPortForwarding

+
+public List<IApplicationPortForwarding> startPortForwarding()
+                                                     throws OpenShiftSSHOperationException
+
+
+
Specified by:
startPortForwarding in interface IApplication
+
+
+ +
Returns:
the list of forwardable ports on OpenShift for this application. +
Throws: +
OpenShiftSSHOperationException
+
+
+
+ +

+stopPortForwarding

+
+public List<IApplicationPortForwarding> stopPortForwarding()
+                                                    throws OpenShiftSSHOperationException
+
+
Description copied from interface: IApplication
+
Stop the port-forwarding for all ports. +

+

+
Specified by:
stopPortForwarding in interface IApplication
+
+
+ +
Returns:
the list of forwardable ports on OpenShift for this application. +
Throws: +
OpenShiftSSHOperationException
+
+
+
+ +

+update

+
+protected void update(ApplicationResourceDTO dto)
+
+
+
+
+
+
+
+
+
+ +

+hashCode

+
+public int hashCode()
+
+
+
Overrides:
hashCode in class Object
+
+
+
+
+
+
+ +

+equals

+
+public boolean equals(Object object)
+
+
+
Overrides:
equals in class Object
+
+
+
+
+
+
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/CartridgeType.html b/documentation/com/openshift/internal/client/CartridgeType.html new file mode 100644 index 00000000..7646e400 --- /dev/null +++ b/documentation/com/openshift/internal/client/CartridgeType.html @@ -0,0 +1,342 @@ + + + + + + + +CartridgeType (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client +
+Enum CartridgeType

+
+java.lang.Object
+  extended by java.lang.Enum<CartridgeType>
+      extended by com.openshift.internal.client.CartridgeType
+
+
+
All Implemented Interfaces:
Serializable, Comparable<CartridgeType>
+
+
+
+
public enum CartridgeType
extends Enum<CartridgeType>
+ + +

+


+ +

+ + + + + + + + + + + + + +
+Enum Constant Summary
EMBEDDED + +
+           
STANDALONE + +
+           
+  + + + + + + + + + + + + + + + + + + + +
+Method Summary
+static CartridgeTypesafeValueOf(String type) + +
+           
+static CartridgeTypevalueOf(String name) + +
+          Returns the enum constant of this type with the specified name.
+static CartridgeType[]values() + +
+          Returns an array containing the constants of this enum type, in +the order they are declared.
+ + + + + + + +
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
+ + + + + + + +
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Enum Constant Detail
+ +

+EMBEDDED

+
+public static final CartridgeType EMBEDDED
+
+
+
+
+
+ +

+STANDALONE

+
+public static final CartridgeType STANDALONE
+
+
+
+
+ + + + + + + + +
+Method Detail
+ +

+values

+
+public static CartridgeType[] values()
+
+
Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
+for (CartridgeType c : CartridgeType.values())
+    System.out.println(c);
+
+

+

+ +
Returns:
an array containing the constants of this enum type, in +the order they are declared
+
+
+
+ +

+valueOf

+
+public static CartridgeType valueOf(String name)
+
+
Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.) +

+

+
Parameters:
name - the name of the enum constant to be returned. +
Returns:
the enum constant with the specified name +
Throws: +
IllegalArgumentException - if this enum type has no constant +with the specified name +
NullPointerException - if the argument is null
+
+
+
+ +

+safeValueOf

+
+public static CartridgeType safeValueOf(String type)
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/DomainResource.html b/documentation/com/openshift/internal/client/DomainResource.html new file mode 100644 index 00000000..46fa7342 --- /dev/null +++ b/documentation/com/openshift/internal/client/DomainResource.html @@ -0,0 +1,1180 @@ + + + + + + + +DomainResource (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client +
+Class DomainResource

+
+java.lang.Object
+  extended by com.openshift.internal.client.AbstractOpenShiftResource
+      extended by com.openshift.internal.client.DomainResource
+
+
+
All Implemented Interfaces:
IDomain, IOpenShiftResource
+
+
+
+
public class DomainResource
extends AbstractOpenShiftResource
implements IDomain
+ + +

+

+
Author:
+
André Dietisheim, Nicolas Spano
+
+
+ +

+ + + + + + + +
+Nested Class Summary
+ + + + + + + +
Nested classes/interfaces inherited from class com.openshift.internal.client.AbstractOpenShiftResource
AbstractOpenShiftResource.Parameters, AbstractOpenShiftResource.ServiceRequest
+  + + + + + + + + + + + + + + + + +
+Constructor Summary
+protected DomainResource(DomainResourceDTO domainDTO, + APIResource api) + +
+           
+protected DomainResource(String namespace, + String suffix, + Map<String,Link> links, + Messages messages, + APIResource api) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ booleancanCreateApplicationWithEnvironmentVariables() + +
+          Returns true if this domain can create application with environment variables.
+ IApplicationcreateApplication(String name, + IStandaloneCartridge cartridge) + +
+           
+ IApplicationcreateApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale) + +
+           
+ IApplicationcreateApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile) + +
+           
+ IApplicationcreateApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl) + +
+          Creates a new application with the given name and the given + cartridge/framework.
+ IApplicationcreateApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + IEmbeddableCartridge... cartridges) + +
+          Creates a new application with the given name and the given + cartridge/framework.
+ IApplicationcreateApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + IGearProfile gearProfile, + String initialGitUrl, + int timeout, + Map<String,String> environmentVariables, + IEmbeddableCartridge... cartridges) + +
+          Creates a new application with the given name and the given + cartridge/framework.
+ IApplicationcreateApplication(String name, + IStandaloneCartridge cartridge, + ApplicationScale scale, + String initialGitUrl) + +
+           
+ IApplicationcreateApplication(String name, + IStandaloneCartridge cartridge, + IGearProfile gearProfile) + +
+           
+ IApplicationcreateApplication(String name, + IStandaloneCartridge cartridge, + IGearProfile gearProfile, + String initialGitUrl) + +
+           
+ IApplicationcreateApplication(String name, + IStandaloneCartridge cartridge, + String initialGitUrl) + +
+           
+ voiddestroy() + +
+          Destroys the current domain.
+ voiddestroy(boolean force) + +
+          Destroys the current domain, using the 'force' parameter to also destroy the domain applications.
+ booleanequals(Object obj) + +
+           
+ IApplicationgetApplicationByName(String name) + +
+          Returns the application identified by the given name.
+ List<IApplication>getApplications() + +
+           
+ List<IApplication>getApplicationsByCartridge(IStandaloneCartridge cartridge) + +
+           
+ List<String>getAvailableCartridgeNames() + +
+          Returns the list of cartridges that can be used to create a new application.
+ List<IGearProfile>getAvailableGearProfiles() + +
+          Returns the list of available gear size that the user can choose when creating a new application (application's gear size can't be changed after creation).
+ StringgetId() + +
+           
+protected  List<IApplication>getOrLoadApplications() + +
+           
+ StringgetSuffix() + +
+          The domain suffix is the host part eg: 'rhcloud.com')
+ IUsergetUser() + +
+          Returns the currently connected user that manages this domain.
+ booleanhasApplicationByCartridge(IStandaloneCartridge cartridge) + +
+           
+ booleanhasApplicationByName(String name) + +
+          Returns true if the application identified by the given name exists in the domain.
+ inthashCode() + +
+           
+ voidrefresh() + +
+          Refresh the resource and its list of children resources that were + previously loaded
+protected  voidremoveApplication(IApplication application) + +
+           
+ voidrename(String id) + +
+          Rename the current domain with the given id....
+ StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.AbstractOpenShiftResource
getCreationLog, getLink, getMessages, hasCreationLog, setLinks
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
+ + + + + + + +
Methods inherited from interface com.openshift.client.IOpenShiftResource
getCreationLog, getMessages, hasCreationLog
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+DomainResource

+
+protected DomainResource(String namespace,
+                         String suffix,
+                         Map<String,Link> links,
+                         Messages messages,
+                         APIResource api)
+
+
+
+ +

+DomainResource

+
+protected DomainResource(DomainResourceDTO domainDTO,
+                         APIResource api)
+
+
+ + + + + + + + +
+Method Detail
+ +

+getId

+
+public String getId()
+
+
+
Specified by:
getId in interface IDomain
+
+
+ +
Returns:
the domain id (formerly known as 'namespace'). A unique litteral identifier on OpenShift.
+
+
+
+ +

+getSuffix

+
+public String getSuffix()
+
+
Description copied from interface: IDomain
+
The domain suffix is the host part eg: 'rhcloud.com') +

+

+
Specified by:
getSuffix in interface IDomain
+
+
+ +
Returns:
+
+
+
+ +

+rename

+
+public void rename(String id)
+            throws OpenShiftException
+
+
Description copied from interface: IDomain
+
Rename the current domain with the given id.... +

+

+
Specified by:
rename in interface IDomain
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getUser

+
+public IUser getUser()
+              throws OpenShiftException
+
+
Description copied from interface: IDomain
+
Returns the currently connected user that manages this domain. +

+

+
Specified by:
getUser in interface IDomain
+
+
+ +
Returns:
+
Throws: +
OpenShiftException
+
+
+
+ +

+createApplication

+
+public IApplication createApplication(String name,
+                                      IStandaloneCartridge cartridge)
+                               throws OpenShiftException
+
+
+
Specified by:
createApplication in interface IDomain
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+createApplication

+
+public IApplication createApplication(String name,
+                                      IStandaloneCartridge cartridge,
+                                      ApplicationScale scale)
+                               throws OpenShiftException
+
+
+
Specified by:
createApplication in interface IDomain
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+createApplication

+
+public IApplication createApplication(String name,
+                                      IStandaloneCartridge cartridge,
+                                      String initialGitUrl)
+                               throws OpenShiftException
+
+
+
Specified by:
createApplication in interface IDomain
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+createApplication

+
+public IApplication createApplication(String name,
+                                      IStandaloneCartridge cartridge,
+                                      ApplicationScale scale,
+                                      String initialGitUrl)
+                               throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+createApplication

+
+public IApplication createApplication(String name,
+                                      IStandaloneCartridge cartridge,
+                                      IGearProfile gearProfile)
+                               throws OpenShiftException
+
+
+
Specified by:
createApplication in interface IDomain
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+createApplication

+
+public IApplication createApplication(String name,
+                                      IStandaloneCartridge cartridge,
+                                      IGearProfile gearProfile,
+                                      String initialGitUrl)
+                               throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+createApplication

+
+public IApplication createApplication(String name,
+                                      IStandaloneCartridge cartridge,
+                                      ApplicationScale scale,
+                                      IGearProfile gearProfile)
+                               throws OpenShiftException
+
+
+
Specified by:
createApplication in interface IDomain
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+createApplication

+
+public IApplication createApplication(String name,
+                                      IStandaloneCartridge cartridge,
+                                      ApplicationScale scale,
+                                      IGearProfile gearProfile,
+                                      String initialGitUrl)
+                               throws OpenShiftException
+
+
Description copied from interface: IDomain
+
Creates a new application with the given name and the given + cartridge/framework. Optionally, adds scalability and a specific gear + profile and a git url to use for the initial template. +

+

+
Specified by:
createApplication in interface IDomain
+
+
+
Parameters:
name - the name of the application
cartridge - the cartridge (the application type, ex. jbossas-7, + jbossews-2, php.5.2, etc.
scale - or null (will use default on openshift, ie, false)
gearProfile - ("small", "micro", "medium", "large", "exlarge", "jumbo") or + null (will use default on openshift, ie, 'small')
initialGitUrl - the git url for the initial template app to be used +
Returns:
+
Throws: +
OpenShiftException
+
+
+
+ +

+createApplication

+
+public IApplication createApplication(String name,
+                                      IStandaloneCartridge cartridge,
+                                      ApplicationScale scale,
+                                      IGearProfile gearProfile,
+                                      String initialGitUrl,
+                                      int timeout,
+                                      IEmbeddableCartridge... cartridges)
+                               throws OpenShiftException
+
+
Description copied from interface: IDomain
+
Creates a new application with the given name and the given + cartridge/framework. Optionally, adds scalability, a specific gear + profile, a git url to use for the initial template, the timeout value and + the embeddable (add-on) cartridges for it. +

+

+
Specified by:
createApplication in interface IDomain
+
+
+
Parameters:
name - the name of the application
cartridge - the cartridge (the application type, ex. jbossas-7, + jbossews-2, php.5.2, etc.
scale - or null (will use default on openshift, ie, false)
gearProfile - ("small", "micro", "medium", "large", "exlarge", "jumbo") or + null (will use default on openshift, ie, 'small')
initialGitUrl - the git url for the initial template app to be used
timeout - the timeout value in milliseconds
cartridges - the embeddable cartridges that shall get added to the new + application (the add-on cartridges mysql, mongodb, postgresql, + etc.) +
Returns:
IApplication created +
Throws: +
OpenShiftException
+
+
+
+ +

+createApplication

+
+public IApplication createApplication(String name,
+                                      IStandaloneCartridge cartridge,
+                                      ApplicationScale scale,
+                                      IGearProfile gearProfile,
+                                      String initialGitUrl,
+                                      int timeout,
+                                      Map<String,String> environmentVariables,
+                                      IEmbeddableCartridge... cartridges)
+                               throws OpenShiftException
+
+
Description copied from interface: IDomain
+
Creates a new application with the given name and the given + cartridge/framework. Optionally, adds scalability, a specific gear + profile, a git url to use for the initial template, the timeout value, + environment variables and + the embeddable (add-on) cartridges for it. +

+

+
Specified by:
createApplication in interface IDomain
+
+
+
Parameters:
name - the name of the application
cartridge - the cartridge (the application type, ex. jbossas-7, + jbossews-2, php.5.2, etc.
scale - or null (will use default on openshift, ie, false)
gearProfile - ("small", "micro", "medium", "large", "exlarge", "jumbo") or + null (will use default on openshift, ie, 'small')
initialGitUrl - the git url for the initial template app to be used
timeout - the timeout value in milliseconds
environmentVariables - the environment variables to be added to the application
cartridges - the embeddable cartridges that shall get added to the new + application (the add-on cartridges mysql, mongodb, postgresql, + etc.) +
Returns:
IApplication created +
Throws: +
OpenShiftException
+
+
+
+ +

+hasApplicationByName

+
+public boolean hasApplicationByName(String name)
+                             throws OpenShiftException
+
+
Description copied from interface: IDomain
+
Returns true if the application identified by the given name exists in the domain. +

+

+
Specified by:
hasApplicationByName in interface IDomain
+
+
+ +
Returns:
+
Throws: +
OpenShiftException
+
+
+
+ +

+getApplicationByName

+
+public IApplication getApplicationByName(String name)
+                                  throws OpenShiftException
+
+
Description copied from interface: IDomain
+
Returns the application identified by the given name. +

+

+
Specified by:
getApplicationByName in interface IDomain
+
+
+ +
Returns:
+
Throws: +
OpenShiftException
+
+
+
+ +

+getApplicationsByCartridge

+
+public List<IApplication> getApplicationsByCartridge(IStandaloneCartridge cartridge)
+                                              throws OpenShiftException
+
+
+
Specified by:
getApplicationsByCartridge in interface IDomain
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+hasApplicationByCartridge

+
+public boolean hasApplicationByCartridge(IStandaloneCartridge cartridge)
+                                  throws OpenShiftException
+
+
+
Specified by:
hasApplicationByCartridge in interface IDomain
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+canCreateApplicationWithEnvironmentVariables

+
+public boolean canCreateApplicationWithEnvironmentVariables()
+
+
Description copied from interface: IDomain
+
Returns true if this domain can create application with environment variables. Returns false otherwise. +

+

+
Specified by:
canCreateApplicationWithEnvironmentVariables in interface IDomain
+
+
+ +
Returns:
true if can create an application with environment variables
See Also:
IApplication.getEnvironmentVariables()
+
+
+
+ +

+destroy

+
+public void destroy()
+             throws OpenShiftException
+
+
Description copied from interface: IDomain
+
Destroys the current domain. This method works only if it has not application. +

+

+
Specified by:
destroy in interface IDomain
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+destroy

+
+public void destroy(boolean force)
+             throws OpenShiftException
+
+
Description copied from interface: IDomain
+
Destroys the current domain, using the 'force' parameter to also destroy the domain applications. The domain cannot + be destroyed without setting 'force-true' if it still contains applications. +

+

+
Specified by:
destroy in interface IDomain
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getApplications

+
+public List<IApplication> getApplications()
+                                   throws OpenShiftException
+
+
+
Specified by:
getApplications in interface IDomain
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getOrLoadApplications

+
+protected List<IApplication> getOrLoadApplications()
+                                            throws OpenShiftException
+
+
+
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+removeApplication

+
+protected void removeApplication(IApplication application)
+
+
+
+
+
+
+
+
+
+ +

+getAvailableCartridgeNames

+
+public List<String> getAvailableCartridgeNames()
+                                        throws OpenShiftException
+
+
Description copied from interface: IDomain
+
Returns the list of cartridges that can be used to create a new application. +

+

+
Specified by:
getAvailableCartridgeNames in interface IDomain
+
+
+ +
Returns:
the list of cartridges that can be used to create a new application. +
Throws: +
OpenShiftException
+
+
+
+ +

+getAvailableGearProfiles

+
+public List<IGearProfile> getAvailableGearProfiles()
+                                            throws OpenShiftException
+
+
Description copied from interface: IDomain
+
Returns the list of available gear size that the user can choose when creating a new application (application's gear size can't be changed after creation). +

+

+
Specified by:
getAvailableGearProfiles in interface IDomain
+
+
+ +
Returns:
+
Throws: +
OpenShiftException
+
+
+
+ +

+refresh

+
+public void refresh()
+             throws OpenShiftException
+
+
Description copied from interface: IOpenShiftResource
+
Refresh the resource and its list of children resources that were + previously loaded +

+

+
Specified by:
refresh in interface IOpenShiftResource
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+hashCode

+
+public int hashCode()
+
+
+
Overrides:
hashCode in class Object
+
+
+
+
+
+
+ +

+equals

+
+public boolean equals(Object obj)
+
+
+
Overrides:
equals in class Object
+
+
+
+
+
+
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/EmbeddedCartridgeResource.html b/documentation/com/openshift/internal/client/EmbeddedCartridgeResource.html new file mode 100644 index 00000000..5a9ad815 --- /dev/null +++ b/documentation/com/openshift/internal/client/EmbeddedCartridgeResource.html @@ -0,0 +1,677 @@ + + + + + + + +EmbeddedCartridgeResource (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client +
+Class EmbeddedCartridgeResource

+
+java.lang.Object
+  extended by com.openshift.internal.client.AbstractOpenShiftResource
+      extended by com.openshift.internal.client.EmbeddedCartridgeResource
+
+
+
All Implemented Interfaces:
ICartridge, IEmbeddableCartridge, IEmbeddedCartridge, IOpenShiftResource
+
+
+
+
public class EmbeddedCartridgeResource
extends AbstractOpenShiftResource
implements IEmbeddedCartridge
+ + +

+A cartridge that is embedded into an application. +

+ +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + +
+Nested Class Summary
+ + + + + + + +
Nested classes/interfaces inherited from class com.openshift.internal.client.AbstractOpenShiftResource
AbstractOpenShiftResource.Parameters, AbstractOpenShiftResource.ServiceRequest
+  + + + + + + + +
+Field Summary
+ + + + + + + +
Fields inherited from interface com.openshift.client.cartridge.IEmbeddableCartridge
NAME_10GEN_MMS_AGENT, NAME_CRON, NAME_HAPROXY, NAME_JENKINS_CLIENT, NAME_METRICS, NAME_MONGODB, NAME_MYSQL, NAME_PHPMYADMIN, NAME_POSTGRESQL, NAME_ROCKMONGO, NAME_SWITCHYARD
+ + + + + + + +
Fields inherited from interface com.openshift.client.cartridge.ICartridge
NAME_VERSION_DELIMITER
+  + + + + + + + + + + + +
+Constructor Summary
+protected EmbeddedCartridgeResource(CartridgeResourceDTO dto, + ApplicationResource application) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ voiddestroy() + +
+          Destroys this cartridge (and removes it from the list of existing cartridges)
+ booleanequals(Object obj) + +
+          TODO: implement fully correct #equals and #hashcode.
+ IApplicationgetApplication() + +
+          Returns the application this cartridge is embedded into.
+ StringgetDescription() + +
+          Returns a description for this cartridge
+ StringgetDisplayName() + +
+          Returns a (human readable, nice) display name for this cartridge
+ StringgetName() + +
+          Returns the name of this cartridge
+ CartridgeResourcePropertiesgetProperties() + +
+          Returns the properties for this embedded cartridge
+protected  CartridgeTypegetType() + +
+           
+ URLgetUrl() + +
+          The url at which this cartridge may be reached
+ inthashCode() + +
+           
+ booleanisDownloadable() + +
+          Returns true if this is a downloadable cartridge whose code + may be downloaded at the url returned by ICartridge.getUrl() (cartridge + code will get downloaded upon creation).
+ voidrefresh() + +
+          Refreshes the content of this embedded cartridge.
+ StringtoString() + +
+           
+protected  voidupdate(CartridgeResourceDTO dto) + +
+           
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.AbstractOpenShiftResource
getCreationLog, getLink, getMessages, hasCreationLog, setLinks
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
+ + + + + + + +
Methods inherited from interface com.openshift.client.IOpenShiftResource
getCreationLog, getMessages, hasCreationLog
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+EmbeddedCartridgeResource

+
+protected EmbeddedCartridgeResource(CartridgeResourceDTO dto,
+                                    ApplicationResource application)
+
+
+ + + + + + + + +
+Method Detail
+ +

+getName

+
+public String getName()
+
+
Description copied from interface: ICartridge
+
Returns the name of this cartridge +

+

+
Specified by:
getName in interface ICartridge
+
+
+ +
Returns:
the name
+
+
+
+ +

+getDisplayName

+
+public String getDisplayName()
+
+
Description copied from interface: ICartridge
+
Returns a (human readable, nice) display name for this cartridge +

+

+
Specified by:
getDisplayName in interface ICartridge
+
+
+ +
Returns:
the display name
+
+
+
+ +

+getDescription

+
+public String getDescription()
+
+
Description copied from interface: ICartridge
+
Returns a description for this cartridge +

+

+
Specified by:
getDescription in interface ICartridge
+
+
+ +
Returns:
the description
+
+
+
+ +

+getType

+
+protected CartridgeType getType()
+
+
+
+
+
+
+
+
+
+ +

+getUrl

+
+public URL getUrl()
+
+
Description copied from interface: IEmbeddedCartridge
+
The url at which this cartridge may be reached +

+

+
Specified by:
getUrl in interface ICartridge
Specified by:
getUrl in interface IEmbeddedCartridge
+
+
+ +
Returns:
the url for this cartridge
See Also:
ICartridge.isDownloadable()
+
+
+
+ +

+isDownloadable

+
+public boolean isDownloadable()
+
+
Description copied from interface: ICartridge
+
Returns true if this is a downloadable cartridge whose code + may be downloaded at the url returned by ICartridge.getUrl() (cartridge + code will get downloaded upon creation). + Examples: +
    +
  • go standalone cartridge (https://github.com/smarterclayton/openshift-go-cart)
  • +
  • redis embedded cartridge (https://github.com/smarterclayton/openshift-redis-cart)
  • +
  • foreman embedded cartridge (https://github.com/ncdc/openshift-foreman-cartridge)
  • +
+

+

+
Specified by:
isDownloadable in interface ICartridge
+
+
+ +
Returns:
true if this is a downloadable cartridge
See Also:
ICartridge.getUrl()
+
+
+
+ +

+getApplication

+
+public IApplication getApplication()
+
+
Description copied from interface: IEmbeddedCartridge
+
Returns the application this cartridge is embedded into. +

+

+
Specified by:
getApplication in interface IEmbeddedCartridge
+
+
+ +
Returns:
application this is embedded into
+
+
+
+ +

+update

+
+protected void update(CartridgeResourceDTO dto)
+
+
+
+
+
+
+
+
+
+ +

+refresh

+
+public void refresh()
+             throws OpenShiftException
+
+
Refreshes the content of this embedded cartridge. Causes all embedded + cartridges of the same application to get updated. +

+

+
Specified by:
refresh in interface IOpenShiftResource
+
+
+ +
Throws: +
OpenShiftException
See Also:
update(CartridgeResourceDTO), +ApplicationResource.refreshEmbeddedCartridges()
+
+
+
+ +

+destroy

+
+public void destroy()
+             throws OpenShiftException
+
+
Description copied from interface: IEmbeddedCartridge
+
Destroys this cartridge (and removes it from the list of existing cartridges) +

+

+
Specified by:
destroy in interface IEmbeddedCartridge
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getProperties

+
+public CartridgeResourceProperties getProperties()
+
+
Description copied from interface: IEmbeddedCartridge
+
Returns the properties for this embedded cartridge +

+

+
Specified by:
getProperties in interface IEmbeddedCartridge
+
+
+ +
Returns:
the resource properties
+
+
+
+ +

+hashCode

+
+public int hashCode()
+
+
+
Overrides:
hashCode in class Object
+
+
+
+
+
+
+ +

+equals

+
+public boolean equals(Object obj)
+
+
TODO: implement fully correct #equals and #hashcode. The current + implementation only ensures that EmbeddedCartridgeResource may be + compared to EmbeddableCartridge. +

+

+
Overrides:
equals in class Object
+
+
+
+
+
+
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/EnvironmentVariableResource.html b/documentation/com/openshift/internal/client/EnvironmentVariableResource.html new file mode 100644 index 00000000..7a1cff7e --- /dev/null +++ b/documentation/com/openshift/internal/client/EnvironmentVariableResource.html @@ -0,0 +1,487 @@ + + + + + + + +EnvironmentVariableResource (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client +
+Class EnvironmentVariableResource

+
+java.lang.Object
+  extended by com.openshift.internal.client.AbstractOpenShiftResource
+      extended by com.openshift.internal.client.EnvironmentVariableResource
+
+
+
All Implemented Interfaces:
IEnvironmentVariable, IOpenShiftResource
+
+
+
+
public class EnvironmentVariableResource
extends AbstractOpenShiftResource
implements IEnvironmentVariable
+ + +

+

+
Author:
+
Syed Iqbal
+
+
+ +

+ + + + + + + +
+Nested Class Summary
+ + + + + + + +
Nested classes/interfaces inherited from class com.openshift.internal.client.AbstractOpenShiftResource
AbstractOpenShiftResource.Parameters, AbstractOpenShiftResource.ServiceRequest
+  + + + + + + + + + + + + + + + + +
+Constructor Summary
+protected EnvironmentVariableResource(EnvironmentVariableResourceDTO dto, + ApplicationResource application) + +
+           
+protected EnvironmentVariableResource(String name, + String value, + Messages messages, + Map<String,Link> links, + ApplicationResource application) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ voiddestroy() + +
+          Destroys this environment variable
+ IApplicationgetApplication() + +
+          Returns the application for this environment variable
+ StringgetName() + +
+           
+ StringgetValue() + +
+           
+ voidrefresh() + +
+          Refresh the resource and its list of children resources that were + previously loaded
+ StringtoString() + +
+           
+ voidupdate(String newValue) + +
+          Updates this environment variable to the given value.
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.AbstractOpenShiftResource
getCreationLog, getLink, getMessages, hasCreationLog, setLinks
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+ + + + + + + +
Methods inherited from interface com.openshift.client.IOpenShiftResource
getCreationLog, getMessages, hasCreationLog
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+EnvironmentVariableResource

+
+protected EnvironmentVariableResource(EnvironmentVariableResourceDTO dto,
+                                      ApplicationResource application)
+
+
+
+ +

+EnvironmentVariableResource

+
+protected EnvironmentVariableResource(String name,
+                                      String value,
+                                      Messages messages,
+                                      Map<String,Link> links,
+                                      ApplicationResource application)
+
+
+ + + + + + + + +
+Method Detail
+ +

+getName

+
+public String getName()
+
+
+
Specified by:
getName in interface IEnvironmentVariable
+
+
+ +
Returns:
Name of the environment variable
+
+
+
+ +

+getValue

+
+public String getValue()
+
+
+
Specified by:
getValue in interface IEnvironmentVariable
+
+
+ +
Returns:
Value of the environment variable
+
+
+
+ +

+update

+
+public void update(String newValue)
+            throws OpenShiftException
+
+
Description copied from interface: IEnvironmentVariable
+
Updates this environment variable to the given value. +

+

+
Specified by:
update in interface IEnvironmentVariable
+
+
+
Parameters:
newValue - new value for this environment variable +
Throws: +
OpenShiftException
+
+
+
+ +

+destroy

+
+public void destroy()
+             throws OpenShiftException
+
+
Description copied from interface: IEnvironmentVariable
+
Destroys this environment variable +

+

+
Specified by:
destroy in interface IEnvironmentVariable
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+refresh

+
+public void refresh()
+             throws OpenShiftException
+
+
Description copied from interface: IOpenShiftResource
+
Refresh the resource and its list of children resources that were + previously loaded +

+

+
Specified by:
refresh in interface IOpenShiftResource
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getApplication

+
+public IApplication getApplication()
+
+
Description copied from interface: IEnvironmentVariable
+
Returns the application for this environment variable +

+

+
Specified by:
getApplication in interface IEnvironmentVariable
+
+
+ +
Returns:
+
+
+
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/Field.html b/documentation/com/openshift/internal/client/Field.html new file mode 100644 index 00000000..81d8d535 --- /dev/null +++ b/documentation/com/openshift/internal/client/Field.html @@ -0,0 +1,325 @@ + + + + + + + +Field (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client +
+Class Field

+
+java.lang.Object
+  extended by com.openshift.internal.client.Field
+
+
+
All Implemented Interfaces:
IField
+
+
+
+
public class Field
extends Object
implements IField
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + +
+Field Summary
+ + + + + + + +
Fields inherited from interface com.openshift.client.IField
APPINFO, DEFAULT, RESULT
+  + + + + + + + + + + +
+Constructor Summary
Field(String field) + +
+           
+  + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ booleanequals(Object obj) + +
+           
+ StringgetValue() + +
+           
+ inthashCode() + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+Field

+
+public Field(String field)
+
+
+ + + + + + + + +
+Method Detail
+ +

+getValue

+
+public String getValue()
+
+
+
Specified by:
getValue in interface IField
+
+
+
+
+
+
+ +

+hashCode

+
+public int hashCode()
+
+
+
Overrides:
hashCode in class Object
+
+
+
+
+
+
+ +

+equals

+
+public boolean equals(Object obj)
+
+
+
Overrides:
equals in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/Gear.html b/documentation/com/openshift/internal/client/Gear.html new file mode 100644 index 00000000..b24c166e --- /dev/null +++ b/documentation/com/openshift/internal/client/Gear.html @@ -0,0 +1,351 @@ + + + + + + + +Gear (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client +
+Class Gear

+
+java.lang.Object
+  extended by com.openshift.internal.client.Gear
+
+
+
All Implemented Interfaces:
IGear
+
+
+
+
public class Gear
extends Object
implements IGear
+ + +

+A gear that a cartridge is running on. +

+ +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
Gear(String id, + GearState state, + String sshUrl) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ StringgetId() + +
+          Returns the id of this gear.
+ StringgetSshUrl() + +
+          The URL to use when connecting with SSH in the following form: + ssh://<username>@<host>
+ GearStategetState() + +
+          Returns the state of this gear
+ StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+Gear

+
+public Gear(String id,
+            GearState state,
+            String sshUrl)
+
+
+ + + + + + + + +
+Method Detail
+ +

+getId

+
+public String getId()
+
+
Description copied from interface: IGear
+
Returns the id of this gear. +

+

+
Specified by:
getId in interface IGear
+
+
+ +
Returns:
the id
+
+
+
+ +

+getState

+
+public GearState getState()
+
+
Description copied from interface: IGear
+
Returns the state of this gear +

+

+
Specified by:
getState in interface IGear
+
+
+ +
Returns:
the state
+
+
+
+ +

+getSshUrl

+
+public String getSshUrl()
+
+
Description copied from interface: IGear
+
The URL to use when connecting with SSH in the following form: + ssh://<username>@<host> +

+

+
Specified by:
getSshUrl in interface IGear
+
+
+ +
Returns:
the sshUrl
+
+
+
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/GearGroupResource.html b/documentation/com/openshift/internal/client/GearGroupResource.html new file mode 100644 index 00000000..30cb25a2 --- /dev/null +++ b/documentation/com/openshift/internal/client/GearGroupResource.html @@ -0,0 +1,444 @@ + + + + + + + +GearGroupResource (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client +
+Class GearGroupResource

+
+java.lang.Object
+  extended by com.openshift.internal.client.AbstractOpenShiftResource
+      extended by com.openshift.internal.client.GearGroupResource
+
+
+
All Implemented Interfaces:
IGearGroup, IOpenShiftResource
+
+
+
+
public class GearGroupResource
extends AbstractOpenShiftResource
implements IGearGroup
+ + +

+

+
Author:
+
Andre Dietisheim, Xavier Coulon
+
+
+ +

+ + + + + + + +
+Nested Class Summary
+ + + + + + + +
Nested classes/interfaces inherited from class com.openshift.internal.client.AbstractOpenShiftResource
AbstractOpenShiftResource.Parameters, AbstractOpenShiftResource.ServiceRequest
+  + + + + + + + + + + + + + + + + +
+Constructor Summary
+protected GearGroupResource(GearGroupResourceDTO dto, + ApplicationResource application, + IRestService service) + +
+          Constructor.
+protected GearGroupResource(String uuid, + String name, + Collection<GearResourceDTO> gearDTOs, + Map<String,CartridgeResourceDTO> cartridgeDTOs, + ApplicationResource application, + IRestService service) + +
+          Constructor.
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ Collection<ICartridge>getCartridges() + +
+          Returns the cartridges in this gear group resource
+ Collection<IGear>getGears() + +
+          Returns the gears in this gear group resource
+ StringgetName() + +
+          Returns the name of this gear groups
+ StringgetUUID() + +
+          Returns the uuid of this gear groups.
+ voidrefresh() + +
+          Refresh the resource and its list of children resources that were + previously loaded
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.AbstractOpenShiftResource
getCreationLog, getLink, getMessages, hasCreationLog, setLinks
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+GearGroupResource

+
+protected GearGroupResource(String uuid,
+                            String name,
+                            Collection<GearResourceDTO> gearDTOs,
+                            Map<String,CartridgeResourceDTO> cartridgeDTOs,
+                            ApplicationResource application,
+                            IRestService service)
+
+
Constructor. +

+

+
Parameters:
uuid - the gear group's UUID
name - the gear group's name
gearDTOs - the gear group's gears
cartridgeDTOs - the gear group's cartridges, indexed by their name
application - the gear group's parent application
service - the underlying REST Service
+
+
+ +

+GearGroupResource

+
+protected GearGroupResource(GearGroupResourceDTO dto,
+                            ApplicationResource application,
+                            IRestService service)
+
+
Constructor. +

+

+
Parameters:
dto - the associated GearGroupResourceDTO
application - the parent application
servicethe - underlying REST Service
+
+ + + + + + + + +
+Method Detail
+ +

+getUUID

+
+public final String getUUID()
+
+
Description copied from interface: IGearGroup
+
Returns the uuid of this gear groups. +

+

+
Specified by:
getUUID in interface IGearGroup
+
+
+ +
Returns:
the uuid
+
+
+
+ +

+getName

+
+public final String getName()
+
+
Description copied from interface: IGearGroup
+
Returns the name of this gear groups +

+

+
Specified by:
getName in interface IGearGroup
+
+
+ +
Returns:
the name
+
+
+
+ +

+getGears

+
+public Collection<IGear> getGears()
+
+
Description copied from interface: IGearGroup
+
Returns the gears in this gear group resource +

+

+
Specified by:
getGears in interface IGearGroup
+
+
+ +
Returns:
the gears
+
+
+
+ +

+getCartridges

+
+public Collection<ICartridge> getCartridges()
+
+
Description copied from interface: IGearGroup
+
Returns the cartridges in this gear group resource +

+

+
Specified by:
getCartridges in interface IGearGroup
+
+
+ +
Returns:
the cartridges
+
+
+
+ +

+refresh

+
+public void refresh()
+             throws OpenShiftException
+
+
Description copied from interface: IOpenShiftResource
+
Refresh the resource and its list of children resources that were + previously loaded +

+

+
Specified by:
refresh in interface IOpenShiftResource
+
+
+ +
Throws: +
OpenShiftException
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/GearProfile.html b/documentation/com/openshift/internal/client/GearProfile.html new file mode 100644 index 00000000..aa5d8a1f --- /dev/null +++ b/documentation/com/openshift/internal/client/GearProfile.html @@ -0,0 +1,347 @@ + + + + + + + +GearProfile (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client +
+Class GearProfile

+
+java.lang.Object
+  extended by com.openshift.internal.client.GearProfile
+
+
+
All Implemented Interfaces:
IGearProfile
+
+
+
+
public class GearProfile
extends Object
implements IGearProfile
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + +
+Field Summary
+ + + + + + + +
Fields inherited from interface com.openshift.client.IGearProfile
EXLARGE, JUMBO, LARGE, MEDIUM, MICRO, SMALL
+  + + + + + + + + + + +
+Constructor Summary
GearProfile(String name) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ booleanequals(Object obj) + +
+           
+ StringgetName() + +
+           
+ inthashCode() + +
+           
+ StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+GearProfile

+
+public GearProfile(String name)
+
+
+ + + + + + + + +
+Method Detail
+ +

+getName

+
+public String getName()
+
+
+
Specified by:
getName in interface IGearProfile
+
+
+
+
+
+
+ +

+hashCode

+
+public int hashCode()
+
+
+
Overrides:
hashCode in class Object
+
+
+
+
+
+
+ +

+equals

+
+public boolean equals(Object obj)
+
+
+
Overrides:
equals in class Object
+
+
+
+
+
+
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/IRestService.html b/documentation/com/openshift/internal/client/IRestService.html new file mode 100644 index 00000000..b5ae6bd4 --- /dev/null +++ b/documentation/com/openshift/internal/client/IRestService.html @@ -0,0 +1,474 @@ + + + + + + + +IRestService (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client +
+Interface IRestService

+
+
All Known Implementing Classes:
RestService
+
+
+
+
public interface IRestService
+ + +

+A rest service that executes request against the OpenShift server +

+ +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + +
+Field Summary
+static StringSERVICE_PATH + +
+           
+static StringSERVICE_VERSION + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ StringgetPlatformUrl() + +
+          Returns the OpenShift server.
+ StringgetServiceUrl() + +
+          Returns the url for the OpenShift service, the endpoint which this rest + service class is talking to.
+ RestResponserequest(Link link, + int timeout, + IMediaType mediaType, + Parameter... parameters) + +
+          Requests the given link sending the given parameters while encoding the + parameters with the given media type and respecting the given timeout.
+ RestResponserequest(Link link, + int timeout, + List<Parameter> urlParameters, + IMediaType mediaType, + Parameter... parameters) + +
+           
+ RestResponserequest(Link link, + int timeout, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+ RestResponserequest(Link link, + int timeout, + Parameter... parameters) + +
+           
+ RestResponserequest(Link link, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+ RestResponserequest(Link link, + Parameter... parameters) + +
+           
+  +

+ + + + + + + + +
+Field Detail
+ +

+SERVICE_VERSION

+
+static final String SERVICE_VERSION
+
+
+
See Also:
Constant Field Values
+
+
+ +

+SERVICE_PATH

+
+static final String SERVICE_PATH
+
+
+
See Also:
Constant Field Values
+
+ + + + + + + + +
+Method Detail
+ +

+request

+
+RestResponse request(Link link,
+                     Parameter... parameters)
+                     throws OpenShiftException
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+request

+
+RestResponse request(Link link,
+                     int timeout,
+                     Parameter... parameters)
+                     throws OpenShiftException
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+request

+
+RestResponse request(Link link,
+                     int timeout,
+                     IMediaType mediaType,
+                     Parameter... parameters)
+                     throws OpenShiftException
+
+
Requests the given link sending the given parameters while encoding the + parameters with the given media type and respecting the given timeout. +

+

+
Parameters:
link - the link to use
parameters - the parameters to send +
Returns:
the rest response +
Throws: +
OpenShiftException
See Also:
Link, +Parameter, +IMediaType, +IHttpClient.NO_TIMEOUT, +IHttpClient.SYSPROP_DEFAULT_CONNECT_TIMEOUT, +IHttpClient.SYSPROP_DEFAULT_READ_TIMEOUT, +IHttpClient.SYSPROP_OPENSHIFT_CONNECT_TIMEOUT, +IHttpClient.DEFAULT_CONNECT_TIMEOUT, +IHttpClient.DEFAULT_READ_TIMEOUT
+
+
+
+ +

+request

+
+RestResponse request(Link link,
+                     List<Parameter> urlParameters,
+                     Parameter... parameters)
+                     throws OpenShiftException
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+request

+
+RestResponse request(Link link,
+                     int timeout,
+                     List<Parameter> urlParameters,
+                     Parameter... parameters)
+                     throws OpenShiftException
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+request

+
+RestResponse request(Link link,
+                     int timeout,
+                     List<Parameter> urlParameters,
+                     IMediaType mediaType,
+                     Parameter... parameters)
+                     throws OpenShiftException
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getServiceUrl

+
+String getServiceUrl()
+
+
Returns the url for the OpenShift service, the endpoint which this rest + service class is talking to. +

+

+ +
Returns:
the url of the OpenShift service
+
+
+
+ +

+getPlatformUrl

+
+String getPlatformUrl()
+
+
Returns the OpenShift server. +

+

+ +
Returns:
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/RestService.html b/documentation/com/openshift/internal/client/RestService.html new file mode 100644 index 00000000..98910074 --- /dev/null +++ b/documentation/com/openshift/internal/client/RestService.html @@ -0,0 +1,577 @@ + + + + + + + +RestService (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client +
+Class RestService

+
+java.lang.Object
+  extended by com.openshift.internal.client.RestService
+
+
+
All Implemented Interfaces:
IRestService
+
+
+
+
public class RestService
extends Object
implements IRestService
+ + +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + +
+Field Summary
+ + + + + + + +
Fields inherited from interface com.openshift.internal.client.IRestService
SERVICE_PATH, SERVICE_VERSION
+  + + + + + + + + + + + + + + + + + + + +
+Constructor Summary
+ RestService(String server, + String clientId, + IMediaType defaultRequestMediaType, + String acceptedMediaType, + IRestResponseFactory factory, + IHttpClient client) + +
+           
+protected RestService(String server, + String clientId, + IMediaType defaultRequestMediaType, + String acceptedMediaType, + IRestResponseFactory factory, + IHttpClient client, + RestServiceProperties properties) + +
+           
+protected RestService(String server, + String clientId, + String protocolVersion, + IMediaType defaultRequestMediaType, + String acceptedMediaType, + IRestResponseFactory factory, + IHttpClient client, + RestServiceProperties properties) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ StringgetPlatformUrl() + +
+          Returns the OpenShift server.
+ StringgetServiceUrl() + +
+          Returns the url for the OpenShift service, the endpoint which this rest + service class is talking to.
+ RestResponserequest(Link link, + int timeout, + IMediaType requestMediaType, + Parameter... parameters) + +
+          Requests the given link sending the given parameters while encoding the + parameters with the given media type and respecting the given timeout.
+ RestResponserequest(Link link, + int timeout, + List<Parameter> urlParameters, + IMediaType requestMediaType, + Parameter... parameters) + +
+           
+ RestResponserequest(Link link, + int timeout, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+ RestResponserequest(Link link, + int timeout, + Parameter... parameters) + +
+           
+ RestResponserequest(Link link, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+ RestResponserequest(Link link, + Parameter... parameters) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+RestService

+
+public RestService(String server,
+                   String clientId,
+                   IMediaType defaultRequestMediaType,
+                   String acceptedMediaType,
+                   IRestResponseFactory factory,
+                   IHttpClient client)
+
+
+
+ +

+RestService

+
+protected RestService(String server,
+                      String clientId,
+                      IMediaType defaultRequestMediaType,
+                      String acceptedMediaType,
+                      IRestResponseFactory factory,
+                      IHttpClient client,
+                      RestServiceProperties properties)
+
+
+
+ +

+RestService

+
+protected RestService(String server,
+                      String clientId,
+                      String protocolVersion,
+                      IMediaType defaultRequestMediaType,
+                      String acceptedMediaType,
+                      IRestResponseFactory factory,
+                      IHttpClient client,
+                      RestServiceProperties properties)
+
+
+ + + + + + + + +
+Method Detail
+ +

+request

+
+public RestResponse request(Link link,
+                            Parameter... parameters)
+                     throws OpenShiftException
+
+
+
Specified by:
request in interface IRestService
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+request

+
+public RestResponse request(Link link,
+                            int timeout,
+                            Parameter... parameters)
+                     throws OpenShiftException
+
+
+
Specified by:
request in interface IRestService
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+request

+
+public RestResponse request(Link link,
+                            List<Parameter> urlParameters,
+                            Parameter... parameters)
+                     throws OpenShiftException
+
+
+
Specified by:
request in interface IRestService
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+request

+
+public RestResponse request(Link link,
+                            int timeout,
+                            IMediaType requestMediaType,
+                            Parameter... parameters)
+                     throws OpenShiftException
+
+
Description copied from interface: IRestService
+
Requests the given link sending the given parameters while encoding the + parameters with the given media type and respecting the given timeout. +

+

+
Specified by:
request in interface IRestService
+
+
+
Parameters:
link - the link to use
parameters - the parameters to send +
Returns:
the rest response +
Throws: +
OpenShiftException
See Also:
Link, +Parameter, +IMediaType, +IHttpClient.NO_TIMEOUT, +IHttpClient.SYSPROP_DEFAULT_CONNECT_TIMEOUT, +IHttpClient.SYSPROP_DEFAULT_READ_TIMEOUT, +IHttpClient.SYSPROP_OPENSHIFT_CONNECT_TIMEOUT, +IHttpClient.DEFAULT_CONNECT_TIMEOUT, +IHttpClient.DEFAULT_READ_TIMEOUT
+
+
+
+ +

+request

+
+public RestResponse request(Link link,
+                            int timeout,
+                            List<Parameter> urlParameters,
+                            Parameter... parameters)
+                     throws OpenShiftException
+
+
+
Specified by:
request in interface IRestService
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+request

+
+public RestResponse request(Link link,
+                            int timeout,
+                            List<Parameter> urlParameters,
+                            IMediaType requestMediaType,
+                            Parameter... parameters)
+                     throws OpenShiftException
+
+
+
Specified by:
request in interface IRestService
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getServiceUrl

+
+public String getServiceUrl()
+
+
Description copied from interface: IRestService
+
Returns the url for the OpenShift service, the endpoint which this rest + service class is talking to. +

+

+
Specified by:
getServiceUrl in interface IRestService
+
+
+ +
Returns:
the url of the OpenShift service
+
+
+
+ +

+getPlatformUrl

+
+public String getPlatformUrl()
+
+
Description copied from interface: IRestService
+
Returns the OpenShift server. +

+

+
Specified by:
getPlatformUrl in interface IRestService
+
+
+ +
Returns:
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/RestServiceProperties.html b/documentation/com/openshift/internal/client/RestServiceProperties.html new file mode 100644 index 00000000..fe553e65 --- /dev/null +++ b/documentation/com/openshift/internal/client/RestServiceProperties.html @@ -0,0 +1,336 @@ + + + + + + + +RestServiceProperties (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client +
+Class RestServiceProperties

+
+java.lang.Object
+  extended by com.openshift.internal.client.RestServiceProperties
+
+
+
+
public class RestServiceProperties
extends Object
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
RestServiceProperties() + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ StringgetClientId() + +
+           
+protected  PropertiesgetProperties() + +
+           
+ StringgetUseragent(String clientId) + +
+           
+protected  StringgetUseragentPattern() + +
+           
+ StringgetVersion() + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+RestServiceProperties

+
+public RestServiceProperties()
+
+
+ + + + + + + + +
+Method Detail
+ +

+getVersion

+
+public String getVersion()
+
+
+
+
+
+
+ +

+getUseragent

+
+public String getUseragent(String clientId)
+
+
+
+
+
+
+ +

+getUseragentPattern

+
+protected String getUseragentPattern()
+
+
+
+
+
+
+ +

+getClientId

+
+public String getClientId()
+
+
+
+
+
+
+ +

+getProperties

+
+protected Properties getProperties()
+                            throws IOException
+
+
+ +
Throws: +
IOException
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/SSHKeyResource.html b/documentation/com/openshift/internal/client/SSHKeyResource.html new file mode 100644 index 00000000..027d9a84 --- /dev/null +++ b/documentation/com/openshift/internal/client/SSHKeyResource.html @@ -0,0 +1,520 @@ + + + + + + + +SSHKeyResource (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client +
+Class SSHKeyResource

+
+java.lang.Object
+  extended by com.openshift.internal.client.AbstractOpenShiftResource
+      extended by com.openshift.internal.client.SSHKeyResource
+
+
+
All Implemented Interfaces:
IOpenShiftResource, IOpenShiftSSHKey, ISSHPublicKey
+
+
+
+
public class SSHKeyResource
extends AbstractOpenShiftResource
implements IOpenShiftSSHKey
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + +
+Nested Class Summary
+ + + + + + + +
Nested classes/interfaces inherited from class com.openshift.internal.client.AbstractOpenShiftResource
AbstractOpenShiftResource.Parameters, AbstractOpenShiftResource.ServiceRequest
+  + + + + + + + + + + + + +
+Constructor Summary
+protected SSHKeyResource(KeyResourceDTO dto, + UserResource user) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ voiddestroy() + +
+           
+ SSHKeyTypegetKeyType() + +
+          Returns the type of the key (ssh-rsa or ssh-dss)
+ StringgetName() + +
+          Returns the name that is used to store this key on OpenShift.
+ StringgetPublicKey() + +
+          Returns the content of the public key (key content without ssh-rsa + identifier nor comment) of the ssh key
+ voidrefresh() + +
+          Refresh the resource and its list of children resources that were + previously loaded
+ voidsetKeyType(SSHKeyType type, + String publicKey) + +
+          Sets the new type and public key of this ssh key to the OpenShift PaaS
+ voidsetPublicKey(String publicKey) + +
+          Sets the public key portion of this ssh key to the OpenShift PaaS.
+ StringtoString() + +
+           
+protected  voidupdate(KeyResourceDTO dto) + +
+           
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.AbstractOpenShiftResource
getCreationLog, getLink, getMessages, hasCreationLog, setLinks
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+SSHKeyResource

+
+protected SSHKeyResource(KeyResourceDTO dto,
+                         UserResource user)
+                  throws OpenShiftUnknonwSSHKeyTypeException
+
+
+ +
Throws: +
OpenShiftUnknonwSSHKeyTypeException
+
+ + + + + + + + +
+Method Detail
+ +

+setKeyType

+
+public void setKeyType(SSHKeyType type,
+                       String publicKey)
+                throws OpenShiftException
+
+
Description copied from interface: IOpenShiftSSHKey
+
Sets the new type and public key of this ssh key to the OpenShift PaaS +

+

+
Specified by:
setKeyType in interface IOpenShiftSSHKey
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getName

+
+public String getName()
+
+
Description copied from interface: IOpenShiftSSHKey
+
Returns the name that is used to store this key on OpenShift. +

+

+
Specified by:
getName in interface IOpenShiftSSHKey
+
+
+ +
Returns:
+
+
+
+ +

+getKeyType

+
+public SSHKeyType getKeyType()
+
+
Description copied from interface: ISSHPublicKey
+
Returns the type of the key (ssh-rsa or ssh-dss) +

+

+
Specified by:
getKeyType in interface ISSHPublicKey
+
+
+ +
Returns:
the type of key, either ssh-rsa or ssh-dss
+
+
+
+ +

+setPublicKey

+
+public void setPublicKey(String publicKey)
+                  throws OpenShiftException
+
+
Description copied from interface: IOpenShiftSSHKey
+
Sets the public key portion of this ssh key to the OpenShift PaaS. +

+

+
Specified by:
setPublicKey in interface IOpenShiftSSHKey
+
+
+
Parameters:
publicKey - the new public key porition of this key +
Throws: +
OpenShiftException
+
+
+
+ +

+getPublicKey

+
+public String getPublicKey()
+
+
Description copied from interface: ISSHPublicKey
+
Returns the content of the public key (key content without ssh-rsa + identifier nor comment) of the ssh key +

+

+
Specified by:
getPublicKey in interface ISSHPublicKey
+
+
+ +
Returns:
the content of the public key (without signature, without + comment)
+
+
+
+ +

+refresh

+
+public void refresh()
+             throws OpenShiftException
+
+
Description copied from interface: IOpenShiftResource
+
Refresh the resource and its list of children resources that were + previously loaded +

+

+
Specified by:
refresh in interface IOpenShiftResource
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+destroy

+
+public void destroy()
+             throws OpenShiftException
+
+
+
Specified by:
destroy in interface IOpenShiftSSHKey
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+update

+
+protected void update(KeyResourceDTO dto)
+               throws OpenShiftUnknonwSSHKeyTypeException
+
+
+
+
+
+ +
Throws: +
OpenShiftUnknonwSSHKeyTypeException
+
+
+
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/Severity.html b/documentation/com/openshift/internal/client/Severity.html new file mode 100644 index 00000000..98d6084f --- /dev/null +++ b/documentation/com/openshift/internal/client/Severity.html @@ -0,0 +1,325 @@ + + + + + + + +Severity (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client +
+Class Severity

+
+java.lang.Object
+  extended by com.openshift.internal.client.Severity
+
+
+
All Implemented Interfaces:
ISeverity
+
+
+
+
public class Severity
extends Object
implements ISeverity
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + +
+Field Summary
+ + + + + + + +
Fields inherited from interface com.openshift.client.ISeverity
DEBUG, ERROR, INFO, RESULT
+  + + + + + + + + + + +
+Constructor Summary
Severity(String severity) + +
+           
+  + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ booleanequals(Object obj) + +
+           
+ StringgetValue() + +
+           
+ inthashCode() + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+Severity

+
+public Severity(String severity)
+
+
+ + + + + + + + +
+Method Detail
+ +

+getValue

+
+public String getValue()
+
+
+
Specified by:
getValue in interface ISeverity
+
+
+
+
+
+
+ +

+hashCode

+
+public int hashCode()
+
+
+
Overrides:
hashCode in class Object
+
+
+
+
+
+
+ +

+equals

+
+public boolean equals(Object obj)
+
+
+
Overrides:
equals in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/UserResource.html b/documentation/com/openshift/internal/client/UserResource.html new file mode 100644 index 00000000..68f5bc1a --- /dev/null +++ b/documentation/com/openshift/internal/client/UserResource.html @@ -0,0 +1,845 @@ + + + + + + + +UserResource (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client +
+Class UserResource

+
+java.lang.Object
+  extended by com.openshift.internal.client.AbstractOpenShiftResource
+      extended by com.openshift.internal.client.UserResource
+
+
+
All Implemented Interfaces:
IOpenShiftResource, IUser
+
+
+
+
public class UserResource
extends AbstractOpenShiftResource
implements IUser
+ + +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + +
+Nested Class Summary
+ + + + + + + +
Nested classes/interfaces inherited from class com.openshift.internal.client.AbstractOpenShiftResource
AbstractOpenShiftResource.Parameters, AbstractOpenShiftResource.ServiceRequest
+  + + + + + + + +
+Field Summary
+ + + + + + + +
Fields inherited from interface com.openshift.client.IUser
ID
+  + + + + + + + + + + +
+Constructor Summary
UserResource(APIResource api, + UserResourceDTO dto, + String password) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ IDomaincreateDomain(String id) + +
+           
+ voiddeleteKey(String name) + +
+           
+ IOpenShiftConnectiongetConnection() + +
+           
+ intgetConsumedGears() + +
+           
+ IDomaingetDefaultDomain() + +
+           
+ IDomaingetDomain(String id) + +
+           
+ List<IDomain>getDomains() + +
+           
+ intgetMaxGears() + +
+           
+ StringgetPassword() + +
+           
+ StringgetRhlogin() + +
+           
+ StringgetServer() + +
+           
+ IOpenShiftSSHKeygetSSHKeyByName(String name) + +
+           
+ IOpenShiftSSHKeygetSSHKeyByPublicKey(String publicKey) + +
+           
+ List<IOpenShiftSSHKey>getSSHKeys() + +
+           
+ booleanhasDomain() + +
+           
+ booleanhasDomain(String id) + +
+           
+ booleanhasSSHKeyName(String name) + +
+           
+ booleanhasSSHPublicKey(String publicKey) + +
+           
+ IOpenShiftSSHKeyputSSHKey(String name, + ISSHPublicKey key) + +
+          Adds the given ssh key with the given name.
+ voidrefresh() + +
+          Refresh the resource and its list of children resources that were + previously loaded
+protected  voidremoveSSHKey(SSHKeyResource key) + +
+           
+ StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.AbstractOpenShiftResource
getCreationLog, getLink, getMessages, hasCreationLog, setLinks
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+ + + + + + + +
Methods inherited from interface com.openshift.client.IOpenShiftResource
getCreationLog, getMessages, hasCreationLog
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+UserResource

+
+public UserResource(APIResource api,
+                    UserResourceDTO dto,
+                    String password)
+
+
+ + + + + + + + +
+Method Detail
+ +

+getConnection

+
+public IOpenShiftConnection getConnection()
+
+
+
Specified by:
getConnection in interface IUser
+
+
+
+
+
+
+ +

+getRhlogin

+
+public String getRhlogin()
+
+
+
Specified by:
getRhlogin in interface IUser
+
+
+
+
+
+
+ +

+getPassword

+
+public String getPassword()
+
+
+
Specified by:
getPassword in interface IUser
+
+
+
+
+
+
+ +

+getServer

+
+public String getServer()
+
+
+
Specified by:
getServer in interface IUser
+
+
+
+
+
+
+ +

+getMaxGears

+
+public int getMaxGears()
+
+
+
Specified by:
getMaxGears in interface IUser
+
+
+
+
+
+
+ +

+getConsumedGears

+
+public int getConsumedGears()
+
+
+
Specified by:
getConsumedGears in interface IUser
+
+
+
+
+
+
+ +

+createDomain

+
+public IDomain createDomain(String id)
+                     throws OpenShiftException
+
+
+
Specified by:
createDomain in interface IUser
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getDomains

+
+public List<IDomain> getDomains()
+                         throws OpenShiftException
+
+
+
Specified by:
getDomains in interface IUser
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getDefaultDomain

+
+public IDomain getDefaultDomain()
+                         throws OpenShiftException
+
+
+
Specified by:
getDefaultDomain in interface IUser
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getDomain

+
+public IDomain getDomain(String id)
+                  throws OpenShiftException
+
+
+
Specified by:
getDomain in interface IUser
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+hasDomain

+
+public boolean hasDomain()
+                  throws OpenShiftException
+
+
+
Specified by:
hasDomain in interface IUser
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+hasDomain

+
+public boolean hasDomain(String id)
+                  throws OpenShiftException
+
+
+
Specified by:
hasDomain in interface IUser
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+refresh

+
+public void refresh()
+             throws OpenShiftException
+
+
Description copied from interface: IOpenShiftResource
+
Refresh the resource and its list of children resources that were + previously loaded +

+

+
Specified by:
refresh in interface IOpenShiftResource
+
+
+ +
Throws: +
OpenShiftException
+
+
+
+ +

+getSSHKeys

+
+public List<IOpenShiftSSHKey> getSSHKeys()
+                                  throws OpenShiftUnknonwSSHKeyTypeException,
+                                         OpenShiftException
+
+
+
Specified by:
getSSHKeys in interface IUser
+
+
+ +
Throws: +
OpenShiftUnknonwSSHKeyTypeException +
OpenShiftException
+
+
+
+ +

+deleteKey

+
+public void deleteKey(String name)
+
+
+
Specified by:
deleteKey in interface IUser
+
+
+
+
+
+
+ +

+getSSHKeyByName

+
+public IOpenShiftSSHKey getSSHKeyByName(String name)
+                                 throws OpenShiftUnknonwSSHKeyTypeException,
+                                        OpenShiftException
+
+
+
Specified by:
getSSHKeyByName in interface IUser
+
+
+ +
Throws: +
OpenShiftUnknonwSSHKeyTypeException +
OpenShiftException
+
+
+
+ +

+getSSHKeyByPublicKey

+
+public IOpenShiftSSHKey getSSHKeyByPublicKey(String publicKey)
+                                      throws OpenShiftUnknonwSSHKeyTypeException,
+                                             OpenShiftException
+
+
+
Specified by:
getSSHKeyByPublicKey in interface IUser
+
+
+ +
Throws: +
OpenShiftUnknonwSSHKeyTypeException +
OpenShiftException
+
+
+
+ +

+hasSSHKeyName

+
+public boolean hasSSHKeyName(String name)
+                      throws OpenShiftUnknonwSSHKeyTypeException,
+                             OpenShiftException
+
+
+
Specified by:
hasSSHKeyName in interface IUser
+
+
+ +
Throws: +
OpenShiftUnknonwSSHKeyTypeException +
OpenShiftException
+
+
+
+ +

+hasSSHPublicKey

+
+public boolean hasSSHPublicKey(String publicKey)
+                        throws OpenShiftUnknonwSSHKeyTypeException,
+                               OpenShiftException
+
+
+
Specified by:
hasSSHPublicKey in interface IUser
+
+
+ +
Throws: +
OpenShiftUnknonwSSHKeyTypeException +
OpenShiftException
+
+
+
+ +

+putSSHKey

+
+public IOpenShiftSSHKey putSSHKey(String name,
+                                  ISSHPublicKey key)
+                           throws OpenShiftException
+
+
Adds the given ssh key with the given name. Key names and public keys have to be unique. Throws + OpenShiftSSHKeyException if either the key name or the public key are already used. +

+

+
Specified by:
putSSHKey in interface IUser
+
+
+
Parameters:
name - the name to identify the key
key - the key to add +
Returns:
+
Throws: +
OpenShiftException
+
+
+
+ +

+removeSSHKey

+
+protected void removeSSHKey(SSHKeyResource key)
+
+
+
+
+
+
+
+
+
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/cartridge/AbstractCartridgeQuery.html b/documentation/com/openshift/internal/client/cartridge/AbstractCartridgeQuery.html new file mode 100644 index 00000000..7550af76 --- /dev/null +++ b/documentation/com/openshift/internal/client/cartridge/AbstractCartridgeQuery.html @@ -0,0 +1,370 @@ + + + + + + + +AbstractCartridgeQuery (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.cartridge +
+Class AbstractCartridgeQuery

+
+java.lang.Object
+  extended by com.openshift.internal.client.cartridge.AbstractCartridgeQuery
+
+
+
Direct Known Subclasses:
LatestVersionQuery, StringPropertyQuery
+
+
+
+
public abstract class AbstractCartridgeQuery
extends Object
+ + +

+A base class for a constraint that shall match available embeddable + cartridges (on the platform). Among several matching ones, the one with the + highest version is chosen. application. +

+ +

+

+
Author:
+
Andre Dietisheim
+
See Also:
for cartridges that have already been added and + configured to an application.
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
AbstractCartridgeQuery() + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ + + + + +
+<C extends ICartridge> +
+C
+
get(Collection<C> cartridges) + +
+           
+ + + + + +
+<C extends ICartridge> +
+Collection<C>
+
getAll(Collection<C> cartridges) + +
+           
+protected  IOpenShiftConnectiongetConnection(IApplication application) + +
+           
+protected  IOpenShiftConnectiongetConnection(IDomain domain) + +
+           
+abstract + + + + +
+<C extends ICartridge> +
+boolean
+
matches(C cartridge) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+AbstractCartridgeQuery

+
+public AbstractCartridgeQuery()
+
+
+ + + + + + + + +
+Method Detail
+ +

+getAll

+
+public <C extends ICartridge> Collection<C> getAll(Collection<C> cartridges)
+
+
+
+
+
+
+ +

+get

+
+public <C extends ICartridge> C get(Collection<C> cartridges)
+
+
+
+
+
+
+ +

+matches

+
+public abstract <C extends ICartridge> boolean matches(C cartridge)
+
+
+
+
+
+
+ +

+getConnection

+
+protected IOpenShiftConnection getConnection(IApplication application)
+
+
+
+
+
+
+ +

+getConnection

+
+protected IOpenShiftConnection getConnection(IDomain domain)
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/cartridge/BaseCartridge.html b/documentation/com/openshift/internal/client/cartridge/BaseCartridge.html new file mode 100644 index 00000000..5f6c94dd --- /dev/null +++ b/documentation/com/openshift/internal/client/cartridge/BaseCartridge.html @@ -0,0 +1,552 @@ + + + + + + + +BaseCartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.cartridge +
+Class BaseCartridge

+
+java.lang.Object
+  extended by com.openshift.internal.client.cartridge.BaseCartridge
+
+
+
All Implemented Interfaces:
ICartridge
+
+
+
Direct Known Subclasses:
EmbeddableCartridge, StandaloneCartridge
+
+
+
+
public abstract class BaseCartridge
extends Object
implements ICartridge
+ + +

+A (base) cartridge for an OpenShift application. +

+ +

+

+
Author:
+
Andre Dietisheim
+
See Also:
EmbeddableCartridge, +StandaloneCartridge
+
+ +

+ + + + + + + +
+Field Summary
+ + + + + + + +
Fields inherited from interface com.openshift.client.cartridge.ICartridge
NAME_VERSION_DELIMITER
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Constructor Summary
+protected BaseCartridge(String name) + +
+           
+protected BaseCartridge(String name, + String displayName, + String description) + +
+           
+protected BaseCartridge(String name, + URL url) + +
+           
+protected BaseCartridge(String name, + URL url, + String displayName, + String description) + +
+           
+protected BaseCartridge(URL url) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ booleanequals(Object obj) + +
+           
+ StringgetDescription() + +
+          Returns a description for this cartridge
+ StringgetDisplayName() + +
+          Returns a (human readable, nice) display name for this cartridge
+ StringgetName() + +
+          Returns the name of this cartridge
+ URLgetUrl() + +
+          Returns the url at which the code for this cartridge may get downloaded.
+ inthashCode() + +
+           
+ booleanisDownloadable() + +
+          Returns true if this is a downloadable cartridge whose code + may be downloaded at the url returned by ICartridge.getUrl() (cartridge + code will get downloaded upon creation).
+ StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+BaseCartridge

+
+protected BaseCartridge(String name)
+
+
+
+ +

+BaseCartridge

+
+protected BaseCartridge(URL url)
+
+
+
+ +

+BaseCartridge

+
+protected BaseCartridge(String name,
+                        URL url)
+
+
+
+ +

+BaseCartridge

+
+protected BaseCartridge(String name,
+                        String displayName,
+                        String description)
+
+
+
+ +

+BaseCartridge

+
+protected BaseCartridge(String name,
+                        URL url,
+                        String displayName,
+                        String description)
+
+
+ + + + + + + + +
+Method Detail
+ +

+getName

+
+public String getName()
+
+
Description copied from interface: ICartridge
+
Returns the name of this cartridge +

+

+
Specified by:
getName in interface ICartridge
+
+
+ +
Returns:
the name
+
+
+
+ +

+getDisplayName

+
+public String getDisplayName()
+
+
Description copied from interface: ICartridge
+
Returns a (human readable, nice) display name for this cartridge +

+

+
Specified by:
getDisplayName in interface ICartridge
+
+
+ +
Returns:
the display name
+
+
+
+ +

+getDescription

+
+public String getDescription()
+
+
Description copied from interface: ICartridge
+
Returns a description for this cartridge +

+

+
Specified by:
getDescription in interface ICartridge
+
+
+ +
Returns:
the description
+
+
+
+ +

+isDownloadable

+
+public boolean isDownloadable()
+
+
Description copied from interface: ICartridge
+
Returns true if this is a downloadable cartridge whose code + may be downloaded at the url returned by ICartridge.getUrl() (cartridge + code will get downloaded upon creation). + Examples: +
    +
  • go standalone cartridge (https://github.com/smarterclayton/openshift-go-cart)
  • +
  • redis embedded cartridge (https://github.com/smarterclayton/openshift-redis-cart)
  • +
  • foreman embedded cartridge (https://github.com/ncdc/openshift-foreman-cartridge)
  • +
+

+

+
Specified by:
isDownloadable in interface ICartridge
+
+
+ +
Returns:
true if this is a downloadable cartridge
See Also:
ICartridge.getUrl()
+
+
+
+ +

+getUrl

+
+public URL getUrl()
+
+
Description copied from interface: ICartridge
+
Returns the url at which the code for this cartridge may get downloaded. + Returns null if this is not a downloadable cartridge. +

+

+
Specified by:
getUrl in interface ICartridge
+
+
+ +
Returns:
the url if downloadable cartridge or null
See Also:
ICartridge.isDownloadable()
+
+
+
+ +

+hashCode

+
+public int hashCode()
+
+
+
Overrides:
hashCode in class Object
+
+
+
+
+
+
+ +

+equals

+
+public boolean equals(Object obj)
+
+
+
Overrides:
equals in class Object
+
+
+
+
+
+
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/cartridge/class-use/AbstractCartridgeQuery.html b/documentation/com/openshift/internal/client/cartridge/class-use/AbstractCartridgeQuery.html new file mode 100644 index 00000000..a59753cb --- /dev/null +++ b/documentation/com/openshift/internal/client/cartridge/class-use/AbstractCartridgeQuery.html @@ -0,0 +1,205 @@ + + + + + + + +Uses of Class com.openshift.internal.client.cartridge.AbstractCartridgeQuery (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.cartridge.AbstractCartridgeQuery

+
+ + + + + + + + + +
+Packages that use AbstractCartridgeQuery
com.openshift.client.cartridge.selector  
+  +

+ + + + + +
+Uses of AbstractCartridgeQuery in com.openshift.client.cartridge.selector
+  +

+ + + + + + + + + + + + + + + + + + + + + +
Subclasses of AbstractCartridgeQuery in com.openshift.client.cartridge.selector
+ classLatestEmbeddableCartridge + +
+          A selector that shall select the latest version of an embedded cartidge that's given by name.
+ classLatestStandaloneCartridge + +
+          A selector that shall select the latest version of a standalone cartidge that's given by name.
+ classLatestVersionQuery + +
+          A constraint that shall match available embeddable and standalone cartridges by name.
+ classStringPropertyQuery + +
+          A constraint that shall match available cartridges by url.
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/cartridge/class-use/BaseCartridge.html b/documentation/com/openshift/internal/client/cartridge/class-use/BaseCartridge.html new file mode 100644 index 00000000..39d640a8 --- /dev/null +++ b/documentation/com/openshift/internal/client/cartridge/class-use/BaseCartridge.html @@ -0,0 +1,189 @@ + + + + + + + +Uses of Class com.openshift.internal.client.cartridge.BaseCartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.cartridge.BaseCartridge

+
+ + + + + + + + + +
+Packages that use BaseCartridge
com.openshift.client.cartridge  
+  +

+ + + + + +
+Uses of BaseCartridge in com.openshift.client.cartridge
+  +

+ + + + + + + + + + + + + +
Subclasses of BaseCartridge in com.openshift.client.cartridge
+ classEmbeddableCartridge + +
+          An cartridge that may be embedded (added) into an application.
+ classStandaloneCartridge + +
+          A cartridge that is available on the openshift server.
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/cartridge/package-frame.html b/documentation/com/openshift/internal/client/cartridge/package-frame.html new file mode 100644 index 00000000..b01706d9 --- /dev/null +++ b/documentation/com/openshift/internal/client/cartridge/package-frame.html @@ -0,0 +1,35 @@ + + + + + + + +com.openshift.internal.client.cartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + +com.openshift.internal.client.cartridge + + + + +
+Classes  + +
+AbstractCartridgeQuery +
+BaseCartridge
+ + + + diff --git a/documentation/com/openshift/internal/client/cartridge/package-summary.html b/documentation/com/openshift/internal/client/cartridge/package-summary.html new file mode 100644 index 00000000..d874c272 --- /dev/null +++ b/documentation/com/openshift/internal/client/cartridge/package-summary.html @@ -0,0 +1,163 @@ + + + + + + + +com.openshift.internal.client.cartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+

+Package com.openshift.internal.client.cartridge +

+ + + + + + + + + + + + + +
+Class Summary
AbstractCartridgeQueryA base class for a constraint that shall match available embeddable + cartridges (on the platform).
BaseCartridgeA (base) cartridge for an OpenShift application.
+  + +

+

+
+
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/cartridge/package-tree.html b/documentation/com/openshift/internal/client/cartridge/package-tree.html new file mode 100644 index 00000000..b8e00d65 --- /dev/null +++ b/documentation/com/openshift/internal/client/cartridge/package-tree.html @@ -0,0 +1,155 @@ + + + + + + + +com.openshift.internal.client.cartridge Class Hierarchy (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Hierarchy For Package com.openshift.internal.client.cartridge +

+
+
+
Package Hierarchies:
All Packages
+
+

+Class Hierarchy +

+ +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/cartridge/package-use.html b/documentation/com/openshift/internal/client/cartridge/package-use.html new file mode 100644 index 00000000..31f173fa --- /dev/null +++ b/documentation/com/openshift/internal/client/cartridge/package-use.html @@ -0,0 +1,191 @@ + + + + + + + +Uses of Package com.openshift.internal.client.cartridge (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Package
com.openshift.internal.client.cartridge

+
+ + + + + + + + + + + + + +
+Packages that use com.openshift.internal.client.cartridge
com.openshift.client.cartridge  
com.openshift.client.cartridge.selector  
+  +

+ + + + + + + + +
+Classes in com.openshift.internal.client.cartridge used by com.openshift.client.cartridge
BaseCartridge + +
+          A (base) cartridge for an OpenShift application.
+  +

+ + + + + + + + +
+Classes in com.openshift.internal.client.cartridge used by com.openshift.client.cartridge.selector
AbstractCartridgeQuery + +
+          A base class for a constraint that shall match available embeddable + cartridges (on the platform).
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/class-use/APIResource.html b/documentation/com/openshift/internal/client/class-use/APIResource.html new file mode 100644 index 00000000..4c3880f9 --- /dev/null +++ b/documentation/com/openshift/internal/client/class-use/APIResource.html @@ -0,0 +1,198 @@ + + + + + + + +Uses of Class com.openshift.internal.client.APIResource (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.APIResource

+
+ + + + + + + + + +
+Packages that use APIResource
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of APIResource in com.openshift.internal.client
+  +

+ + + + + + + + + + + + + + +
Constructors in com.openshift.internal.client with parameters of type APIResource
DomainResource(DomainResourceDTO domainDTO, + APIResource api) + +
+           
DomainResource(String namespace, + String suffix, + Map<String,Link> links, + Messages messages, + APIResource api) + +
+           
UserResource(APIResource api, + UserResourceDTO dto, + String password) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/class-use/AbstractOpenShiftConnectionFactory.html b/documentation/com/openshift/internal/client/class-use/AbstractOpenShiftConnectionFactory.html new file mode 100644 index 00000000..9314d700 --- /dev/null +++ b/documentation/com/openshift/internal/client/class-use/AbstractOpenShiftConnectionFactory.html @@ -0,0 +1,181 @@ + + + + + + + +Uses of Class com.openshift.internal.client.AbstractOpenShiftConnectionFactory (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.AbstractOpenShiftConnectionFactory

+
+ + + + + + + + + +
+Packages that use AbstractOpenShiftConnectionFactory
com.openshift.client  
+  +

+ + + + + +
+Uses of AbstractOpenShiftConnectionFactory in com.openshift.client
+  +

+ + + + + + + + + +
Subclasses of AbstractOpenShiftConnectionFactory in com.openshift.client
+ classOpenShiftConnectionFactory + +
+          Connection Factory, used to establish a connection and retrieve a user.
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/class-use/AbstractOpenShiftResource.Parameters.html b/documentation/com/openshift/internal/client/class-use/AbstractOpenShiftResource.Parameters.html new file mode 100644 index 00000000..f5282f24 --- /dev/null +++ b/documentation/com/openshift/internal/client/class-use/AbstractOpenShiftResource.Parameters.html @@ -0,0 +1,239 @@ + + + + + + + +Uses of Class com.openshift.internal.client.AbstractOpenShiftResource.Parameters (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.AbstractOpenShiftResource.Parameters

+
+ + + + + + + + + +
+Packages that use AbstractOpenShiftResource.Parameters
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of AbstractOpenShiftResource.Parameters in com.openshift.internal.client
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client that return AbstractOpenShiftResource.Parameters
+protected  AbstractOpenShiftResource.ParametersAbstractOpenShiftResource.Parameters.add(Parameter parameter) + +
+           
+protected  AbstractOpenShiftResource.ParametersAbstractOpenShiftResource.Parameters.add(String name, + String value) + +
+           
+protected  AbstractOpenShiftResource.ParametersAbstractOpenShiftResource.Parameters.addCartridge(IEmbeddableCartridge embeddable) + +
+           
+protected  AbstractOpenShiftResource.ParametersAbstractOpenShiftResource.Parameters.addCartridges(IStandaloneCartridge standalone, + IEmbeddableCartridge[] embeddables) + +
+           
+protected  AbstractOpenShiftResource.ParametersAbstractOpenShiftResource.Parameters.addEnvironmentVariables(Map<String,String> environmentVariables) + +
+           
+protected  AbstractOpenShiftResource.ParametersAbstractOpenShiftResource.Parameters.gearProfile(IGearProfile gearProfile) + +
+           
+protected  AbstractOpenShiftResource.ParametersAbstractOpenShiftResource.Parameters.include(String includedResource) + +
+           
+protected  AbstractOpenShiftResource.ParametersAbstractOpenShiftResource.Parameters.scale(ApplicationScale scale) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/class-use/AbstractOpenShiftResource.ServiceRequest.html b/documentation/com/openshift/internal/client/class-use/AbstractOpenShiftResource.ServiceRequest.html new file mode 100644 index 00000000..da7f9300 --- /dev/null +++ b/documentation/com/openshift/internal/client/class-use/AbstractOpenShiftResource.ServiceRequest.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.AbstractOpenShiftResource.ServiceRequest (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.AbstractOpenShiftResource.ServiceRequest

+
+No usage of com.openshift.internal.client.AbstractOpenShiftResource.ServiceRequest +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/class-use/AbstractOpenShiftResource.html b/documentation/com/openshift/internal/client/class-use/AbstractOpenShiftResource.html new file mode 100644 index 00000000..37459c59 --- /dev/null +++ b/documentation/com/openshift/internal/client/class-use/AbstractOpenShiftResource.html @@ -0,0 +1,238 @@ + + + + + + + +Uses of Class com.openshift.internal.client.AbstractOpenShiftResource (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.AbstractOpenShiftResource

+
+ + + + + + + + + +
+Packages that use AbstractOpenShiftResource
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of AbstractOpenShiftResource in com.openshift.internal.client
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Subclasses of AbstractOpenShiftResource in com.openshift.internal.client
+ classAPIResource + +
+           
+ classApplicationResource + +
+          The ApplicationResource object is an implementation of com.openshift.client.IApplication, and provides + a runtime model for the real application that resides on the OpenShift platform being accessed.
+ classDomainResource + +
+           
+ classEmbeddedCartridgeResource + +
+          A cartridge that is embedded into an application.
+ classEnvironmentVariableResource + +
+           
+ classGearGroupResource + +
+           
+ classSSHKeyResource + +
+           
+ classUserResource + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/class-use/ApplicationResource.SshStreams.html b/documentation/com/openshift/internal/client/class-use/ApplicationResource.SshStreams.html new file mode 100644 index 00000000..3e403184 --- /dev/null +++ b/documentation/com/openshift/internal/client/class-use/ApplicationResource.SshStreams.html @@ -0,0 +1,207 @@ + + + + + + + +Uses of Class com.openshift.internal.client.ApplicationResource.SshStreams (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.ApplicationResource.SshStreams

+
+ + + + + + + + + +
+Packages that use ApplicationResource.SshStreams
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of ApplicationResource.SshStreams in com.openshift.internal.client
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.internal.client that return ApplicationResource.SshStreams
+static ApplicationResource.SshStreamsApplicationResource.SshStreams.valueOf(String name) + +
+          Returns the enum constant of this type with the specified name.
+static ApplicationResource.SshStreams[]ApplicationResource.SshStreams.values() + +
+          Returns an array containing the constants of this enum type, in +the order they are declared.
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client with parameters of type ApplicationResource.SshStreams
+protected  List<String>ApplicationResource.sshExecCmd(String command, + ApplicationResource.SshStreams sshStream) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/class-use/ApplicationResource.html b/documentation/com/openshift/internal/client/class-use/ApplicationResource.html new file mode 100644 index 00000000..ecd41b83 --- /dev/null +++ b/documentation/com/openshift/internal/client/class-use/ApplicationResource.html @@ -0,0 +1,216 @@ + + + + + + + +Uses of Class com.openshift.internal.client.ApplicationResource (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.ApplicationResource

+
+ + + + + + + + + +
+Packages that use ApplicationResource
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of ApplicationResource in com.openshift.internal.client
+  +

+ + + + + + + + + + + + + + + + + + + + +
Constructors in com.openshift.internal.client with parameters of type ApplicationResource
EmbeddedCartridgeResource(CartridgeResourceDTO dto, + ApplicationResource application) + +
+           
EnvironmentVariableResource(EnvironmentVariableResourceDTO dto, + ApplicationResource application) + +
+           
EnvironmentVariableResource(String name, + String value, + Messages messages, + Map<String,Link> links, + ApplicationResource application) + +
+           
GearGroupResource(GearGroupResourceDTO dto, + ApplicationResource application, + IRestService service) + +
+          Constructor.
GearGroupResource(String uuid, + String name, + Collection<GearResourceDTO> gearDTOs, + Map<String,CartridgeResourceDTO> cartridgeDTOs, + ApplicationResource application, + IRestService service) + +
+          Constructor.
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/class-use/CartridgeType.html b/documentation/com/openshift/internal/client/class-use/CartridgeType.html new file mode 100644 index 00000000..078872e6 --- /dev/null +++ b/documentation/com/openshift/internal/client/class-use/CartridgeType.html @@ -0,0 +1,251 @@ + + + + + + + +Uses of Class com.openshift.internal.client.CartridgeType (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.CartridgeType

+
+ + + + + + + + + + + + + +
+Packages that use CartridgeType
com.openshift.internal.client  
com.openshift.internal.client.response  
+  +

+ + + + + +
+Uses of CartridgeType in com.openshift.internal.client
+  +

+ + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client that return CartridgeType
+protected  CartridgeTypeEmbeddedCartridgeResource.getType() + +
+           
+static CartridgeTypeCartridgeType.safeValueOf(String type) + +
+           
+static CartridgeTypeCartridgeType.valueOf(String name) + +
+          Returns the enum constant of this type with the specified name.
+static CartridgeType[]CartridgeType.values() + +
+          Returns an array containing the constants of this enum type, in +the order they are declared.
+  +

+ + + + + +
+Uses of CartridgeType in com.openshift.internal.client.response
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.response that return CartridgeType
+ CartridgeTypeCartridgeResourceDTO.getType() + +
+           
+  +

+ + + + + + + + +
Constructors in com.openshift.internal.client.response with parameters of type CartridgeType
CartridgeResourceDTO(String name, + CartridgeType type, + CartridgeResourceProperties properties) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/class-use/DomainResource.html b/documentation/com/openshift/internal/client/class-use/DomainResource.html new file mode 100644 index 00000000..b8718058 --- /dev/null +++ b/documentation/com/openshift/internal/client/class-use/DomainResource.html @@ -0,0 +1,199 @@ + + + + + + + +Uses of Class com.openshift.internal.client.DomainResource (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.DomainResource

+
+ + + + + + + + + +
+Packages that use DomainResource
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of DomainResource in com.openshift.internal.client
+  +

+ + + + + + + + + + + +
Constructors in com.openshift.internal.client with parameters of type DomainResource
ApplicationResource(ApplicationResourceDTO dto, + DomainResource domain) + +
+           
ApplicationResource(String name, + String uuid, + String creationTime, + Messages messages, + String applicationUrl, + String sshUrl, + String gitUrl, + String initialGitUrl, + IGearProfile gearProfile, + ApplicationScale scale, + List<String> aliases, + Map<String,CartridgeResourceDTO> cartridgesByName, + Map<String,Link> links, + DomainResource domain) + +
+          Instantiates a new application.
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/class-use/EmbeddedCartridgeResource.html b/documentation/com/openshift/internal/client/class-use/EmbeddedCartridgeResource.html new file mode 100644 index 00000000..b8ba2a4a --- /dev/null +++ b/documentation/com/openshift/internal/client/class-use/EmbeddedCartridgeResource.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.EmbeddedCartridgeResource (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.EmbeddedCartridgeResource

+
+No usage of com.openshift.internal.client.EmbeddedCartridgeResource +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/class-use/EnvironmentVariableResource.html b/documentation/com/openshift/internal/client/class-use/EnvironmentVariableResource.html new file mode 100644 index 00000000..2ae0471a --- /dev/null +++ b/documentation/com/openshift/internal/client/class-use/EnvironmentVariableResource.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.EnvironmentVariableResource (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.EnvironmentVariableResource

+
+No usage of com.openshift.internal.client.EnvironmentVariableResource +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/class-use/Field.html b/documentation/com/openshift/internal/client/class-use/Field.html new file mode 100644 index 00000000..1bffd4b6 --- /dev/null +++ b/documentation/com/openshift/internal/client/class-use/Field.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.Field (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.Field

+
+No usage of com.openshift.internal.client.Field +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/class-use/Gear.html b/documentation/com/openshift/internal/client/class-use/Gear.html new file mode 100644 index 00000000..5ea8f77d --- /dev/null +++ b/documentation/com/openshift/internal/client/class-use/Gear.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.Gear (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.Gear

+
+No usage of com.openshift.internal.client.Gear +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/class-use/GearGroupResource.html b/documentation/com/openshift/internal/client/class-use/GearGroupResource.html new file mode 100644 index 00000000..f5f97ed5 --- /dev/null +++ b/documentation/com/openshift/internal/client/class-use/GearGroupResource.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.GearGroupResource (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.GearGroupResource

+
+No usage of com.openshift.internal.client.GearGroupResource +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/class-use/GearProfile.html b/documentation/com/openshift/internal/client/class-use/GearProfile.html new file mode 100644 index 00000000..1b826da3 --- /dev/null +++ b/documentation/com/openshift/internal/client/class-use/GearProfile.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.GearProfile (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.GearProfile

+
+No usage of com.openshift.internal.client.GearProfile +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/class-use/IRestService.html b/documentation/com/openshift/internal/client/class-use/IRestService.html new file mode 100644 index 00000000..f0a7f0bf --- /dev/null +++ b/documentation/com/openshift/internal/client/class-use/IRestService.html @@ -0,0 +1,249 @@ + + + + + + + +Uses of Interface com.openshift.internal.client.IRestService (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Interface
com.openshift.internal.client.IRestService

+
+ + + + + + + + + +
+Packages that use IRestService
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of IRestService in com.openshift.internal.client
+  +

+ + + + + + + + + +
Classes in com.openshift.internal.client that implement IRestService
+ classRestService + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client with parameters of type IRestService
+protected  IOpenShiftConnectionAbstractOpenShiftConnectionFactory.getConnection(IRestService service, + String login, + String password) + +
+           
+  +

+ + + + + + + + + + + + + + + + + + + + +
Constructors in com.openshift.internal.client with parameters of type IRestService
AbstractOpenShiftResource(IRestService service) + +
+          Instantiates a new abstract open shift resource.
AbstractOpenShiftResource(IRestService service, + Map<String,Link> links, + Messages messages) + +
+          Instantiates a new abstract open shift resource.
APIResource(String login, + String password, + IRestService service, + Map<String,Link> links) + +
+           
GearGroupResource(GearGroupResourceDTO dto, + ApplicationResource application, + IRestService service) + +
+          Constructor.
GearGroupResource(String uuid, + String name, + Collection<GearResourceDTO> gearDTOs, + Map<String,CartridgeResourceDTO> cartridgeDTOs, + ApplicationResource application, + IRestService service) + +
+          Constructor.
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/class-use/RestService.html b/documentation/com/openshift/internal/client/class-use/RestService.html new file mode 100644 index 00000000..c1d1e803 --- /dev/null +++ b/documentation/com/openshift/internal/client/class-use/RestService.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.RestService (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.RestService

+
+No usage of com.openshift.internal.client.RestService +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/class-use/RestServiceProperties.html b/documentation/com/openshift/internal/client/class-use/RestServiceProperties.html new file mode 100644 index 00000000..877dbedd --- /dev/null +++ b/documentation/com/openshift/internal/client/class-use/RestServiceProperties.html @@ -0,0 +1,198 @@ + + + + + + + +Uses of Class com.openshift.internal.client.RestServiceProperties (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.RestServiceProperties

+
+ + + + + + + + + +
+Packages that use RestServiceProperties
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of RestServiceProperties in com.openshift.internal.client
+  +

+ + + + + + + + + + + +
Constructors in com.openshift.internal.client with parameters of type RestServiceProperties
RestService(String server, + String clientId, + IMediaType defaultRequestMediaType, + String acceptedMediaType, + IRestResponseFactory factory, + IHttpClient client, + RestServiceProperties properties) + +
+           
RestService(String server, + String clientId, + String protocolVersion, + IMediaType defaultRequestMediaType, + String acceptedMediaType, + IRestResponseFactory factory, + IHttpClient client, + RestServiceProperties properties) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/class-use/SSHKeyResource.html b/documentation/com/openshift/internal/client/class-use/SSHKeyResource.html new file mode 100644 index 00000000..dd3a89bd --- /dev/null +++ b/documentation/com/openshift/internal/client/class-use/SSHKeyResource.html @@ -0,0 +1,181 @@ + + + + + + + +Uses of Class com.openshift.internal.client.SSHKeyResource (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.SSHKeyResource

+
+ + + + + + + + + +
+Packages that use SSHKeyResource
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of SSHKeyResource in com.openshift.internal.client
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client with parameters of type SSHKeyResource
+protected  voidUserResource.removeSSHKey(SSHKeyResource key) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/class-use/Severity.html b/documentation/com/openshift/internal/client/class-use/Severity.html new file mode 100644 index 00000000..edbca722 --- /dev/null +++ b/documentation/com/openshift/internal/client/class-use/Severity.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.Severity (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.Severity

+
+No usage of com.openshift.internal.client.Severity +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/class-use/UserResource.html b/documentation/com/openshift/internal/client/class-use/UserResource.html new file mode 100644 index 00000000..ab360578 --- /dev/null +++ b/documentation/com/openshift/internal/client/class-use/UserResource.html @@ -0,0 +1,180 @@ + + + + + + + +Uses of Class com.openshift.internal.client.UserResource (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.UserResource

+
+ + + + + + + + + +
+Packages that use UserResource
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of UserResource in com.openshift.internal.client
+  +

+ + + + + + + + +
Constructors in com.openshift.internal.client with parameters of type UserResource
SSHKeyResource(KeyResourceDTO dto, + UserResource user) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/BadRequestException.html b/documentation/com/openshift/internal/client/httpclient/BadRequestException.html new file mode 100644 index 00000000..8b4764fd --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/BadRequestException.html @@ -0,0 +1,261 @@ + + + + + + + +BadRequestException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.httpclient +
+Class BadRequestException

+
+java.lang.Object
+  extended by java.lang.Throwable
+      extended by java.lang.Exception
+          extended by java.lang.RuntimeException
+              extended by com.openshift.internal.client.httpclient.HttpClientException
+                  extended by com.openshift.internal.client.httpclient.BadRequestException
+
+
+
All Implemented Interfaces:
Serializable
+
+
+
+
public class BadRequestException
extends HttpClientException
+ + +

+

+
Author:
+
André Dietisheim
+
See Also:
Serialized Form
+
+ +

+ + + + + + + + + + + + + + +
+Constructor Summary
BadRequestException(String message, + Throwable cause) + +
+           
BadRequestException(Throwable cause) + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+BadRequestException

+
+public BadRequestException(String message,
+                           Throwable cause)
+
+
+
+ +

+BadRequestException

+
+public BadRequestException(Throwable cause)
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/EncodingException.html b/documentation/com/openshift/internal/client/httpclient/EncodingException.html new file mode 100644 index 00000000..345e6972 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/EncodingException.html @@ -0,0 +1,247 @@ + + + + + + + +EncodingException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.httpclient +
+Class EncodingException

+
+java.lang.Object
+  extended by java.lang.Throwable
+      extended by java.lang.Exception
+          extended by java.lang.RuntimeException
+              extended by com.openshift.internal.client.httpclient.HttpClientException
+                  extended by com.openshift.internal.client.httpclient.EncodingException
+
+
+
All Implemented Interfaces:
Serializable
+
+
+
+
public class EncodingException
extends HttpClientException
+ + +

+

+
Author:
+
Ioannis Canellos
+
See Also:
Serialized Form
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
EncodingException(String message, + Throwable t) + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+EncodingException

+
+public EncodingException(String message,
+                         Throwable t)
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/HttpClientException.html b/documentation/com/openshift/internal/client/httpclient/HttpClientException.html new file mode 100644 index 00000000..94d59d5c --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/HttpClientException.html @@ -0,0 +1,277 @@ + + + + + + + +HttpClientException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.httpclient +
+Class HttpClientException

+
+java.lang.Object
+  extended by java.lang.Throwable
+      extended by java.lang.Exception
+          extended by java.lang.RuntimeException
+              extended by com.openshift.internal.client.httpclient.HttpClientException
+
+
+
All Implemented Interfaces:
Serializable
+
+
+
Direct Known Subclasses:
BadRequestException, EncodingException, InternalServerErrorException, NotFoundException, UnauthorizedException
+
+
+
+
public class HttpClientException
extends RuntimeException
+ + +

+

+
Author:
+
André Dietisheim
+
See Also:
Serialized Form
+
+ +

+ + + + + + + + + + + + + + + + + +
+Constructor Summary
HttpClientException(String message) + +
+           
HttpClientException(String message, + Throwable cause) + +
+           
HttpClientException(Throwable cause) + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+HttpClientException

+
+public HttpClientException(String message,
+                           Throwable cause)
+
+
+
+ +

+HttpClientException

+
+public HttpClientException(String message)
+
+
+
+ +

+HttpClientException

+
+public HttpClientException(Throwable cause)
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/InternalServerErrorException.html b/documentation/com/openshift/internal/client/httpclient/InternalServerErrorException.html new file mode 100644 index 00000000..d850bace --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/InternalServerErrorException.html @@ -0,0 +1,261 @@ + + + + + + + +InternalServerErrorException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.httpclient +
+Class InternalServerErrorException

+
+java.lang.Object
+  extended by java.lang.Throwable
+      extended by java.lang.Exception
+          extended by java.lang.RuntimeException
+              extended by com.openshift.internal.client.httpclient.HttpClientException
+                  extended by com.openshift.internal.client.httpclient.InternalServerErrorException
+
+
+
All Implemented Interfaces:
Serializable
+
+
+
+
public class InternalServerErrorException
extends HttpClientException
+ + +

+

+
Author:
+
André Dietisheim
+
See Also:
Serialized Form
+
+ +

+ + + + + + + + + + + + + + +
+Constructor Summary
InternalServerErrorException(String message) + +
+           
InternalServerErrorException(String message, + Throwable cause) + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+InternalServerErrorException

+
+public InternalServerErrorException(String message,
+                                    Throwable cause)
+
+
+
+ +

+InternalServerErrorException

+
+public InternalServerErrorException(String message)
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/NotFoundException.html b/documentation/com/openshift/internal/client/httpclient/NotFoundException.html new file mode 100644 index 00000000..ede2e9d0 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/NotFoundException.html @@ -0,0 +1,261 @@ + + + + + + + +NotFoundException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.httpclient +
+Class NotFoundException

+
+java.lang.Object
+  extended by java.lang.Throwable
+      extended by java.lang.Exception
+          extended by java.lang.RuntimeException
+              extended by com.openshift.internal.client.httpclient.HttpClientException
+                  extended by com.openshift.internal.client.httpclient.NotFoundException
+
+
+
All Implemented Interfaces:
Serializable
+
+
+
+
public class NotFoundException
extends HttpClientException
+ + +

+

+
Author:
+
André Dietisheim
+
See Also:
Serialized Form
+
+ +

+ + + + + + + + + + + + + + +
+Constructor Summary
NotFoundException(String message) + +
+           
NotFoundException(String message, + Throwable cause) + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+NotFoundException

+
+public NotFoundException(String message,
+                         Throwable cause)
+
+
+
+ +

+NotFoundException

+
+public NotFoundException(String message)
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/UnauthorizedException.html b/documentation/com/openshift/internal/client/httpclient/UnauthorizedException.html new file mode 100644 index 00000000..5b98af5b --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/UnauthorizedException.html @@ -0,0 +1,261 @@ + + + + + + + +UnauthorizedException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.httpclient +
+Class UnauthorizedException

+
+java.lang.Object
+  extended by java.lang.Throwable
+      extended by java.lang.Exception
+          extended by java.lang.RuntimeException
+              extended by com.openshift.internal.client.httpclient.HttpClientException
+                  extended by com.openshift.internal.client.httpclient.UnauthorizedException
+
+
+
All Implemented Interfaces:
Serializable
+
+
+
+
public class UnauthorizedException
extends HttpClientException
+ + +

+

+
Author:
+
André Dietisheim
+
See Also:
Serialized Form
+
+ +

+ + + + + + + + + + + + + + +
+Constructor Summary
UnauthorizedException(String message, + Throwable cause) + +
+           
UnauthorizedException(Throwable cause) + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+UnauthorizedException

+
+public UnauthorizedException(String message,
+                             Throwable cause)
+
+
+
+ +

+UnauthorizedException

+
+public UnauthorizedException(Throwable cause)
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/UrlConnectionHttpClient.html b/documentation/com/openshift/internal/client/httpclient/UrlConnectionHttpClient.html new file mode 100644 index 00000000..4e8100c3 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/UrlConnectionHttpClient.html @@ -0,0 +1,883 @@ + + + + + + + +UrlConnectionHttpClient (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.httpclient +
+Class UrlConnectionHttpClient

+
+java.lang.Object
+  extended by com.openshift.internal.client.httpclient.UrlConnectionHttpClient
+
+
+
All Implemented Interfaces:
IHttpClient
+
+
+
+
public class UrlConnectionHttpClient
extends Object
implements IHttpClient
+ + +

+

+
Author:
+
Andre Dietisheim, Nicolas Spano
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Field Summary
+protected  StringacceptedMediaType + +
+           
+protected  StringacceptedVersion + +
+           
+protected  StringauthIV + +
+           
+protected  StringauthKey + +
+           
+protected  Stringpassword + +
+           
+protected  booleansslChecks + +
+           
+protected  StringuserAgent + +
+           
+protected  Stringusername + +
+           
+ + + + + + + +
Fields inherited from interface com.openshift.client.IHttpClient
AMPERSAND, AUTHORIZATION_BASIC, COLON, COMMA, DEFAULT_CONNECT_TIMEOUT, DEFAULT_READ_TIMEOUT, EQUALS, HTTP, MEDIATYPE_APPLICATION_FORMURLENCODED, MEDIATYPE_APPLICATION_JSON, MEDIATYPE_APPLICATION_XML, NO_TIMEOUT, PROPERTY_ACCEPT, PROPERTY_AUTHIV, PROPERTY_AUTHKEY, PROPERTY_AUTHORIZATION, PROPERTY_CONTENT_TYPE, PROPERTY_USER_AGENT, QUESTION_MARK, SEMICOLON, SLASH, SPACE, STATUS_BAD_REQUEST, STATUS_INTERNAL_SERVER_ERROR, STATUS_NOT_FOUND, STATUS_OK, STATUS_UNAUTHORIZED, SYSPROP_DEFAULT_CONNECT_TIMEOUT, SYSPROP_DEFAULT_READ_TIMEOUT, SYSPROP_OPENSHIFT_CONNECT_TIMEOUT, SYSPROP_OPENSHIFT_READ_TIMEOUT, VERSION
+  + + + + + + + + + + + + + +
+Constructor Summary
UrlConnectionHttpClient(String username, + String password, + String userAgent, + boolean sslChecks, + String acceptedMediaType, + String version) + +
+           
UrlConnectionHttpClient(String username, + String password, + String userAgent, + boolean sslChecks, + String acceptedMediaType, + String version, + String authKey, + String authIV) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+protected  HttpURLConnectioncreateConnection(URL url, + String username, + String password, + String authKey, + String authIV, + String userAgent, + String acceptedVersion, + String acceptedMediaType, + int timeout) + +
+           
+protected  StringcreateErrorMessage(IOException ioe, + HttpURLConnection connection) + +
+           
+ Stringdelete(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ Stringdelete(URL url, + int timeout) + +
+           
+ Stringget(URL url, + int timeout) + +
+           
+ Stringhead(URL url, + int timeout) + +
+           
+ Stringpatch(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ Stringpost(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ Stringput(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+protected  Stringrequest(HttpMethod httpMethod, + URL url, + IMediaType requestMediaType, + int timeout, + Parameter... parameters) + +
+           
+protected  Stringrequest(HttpMethod httpMethod, + URL url, + IMediaType requestMediaType, + int timeout, + ParameterValueMap parameters) + +
+           
+ voidsetAcceptedMediaType(String acceptedMediaType) + +
+           
+ voidsetAcceptVersion(String version) + +
+           
+ voidsetUserAgent(String userAgent) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Field Detail
+ +

+userAgent

+
+protected String userAgent
+
+
+
+
+
+ +

+sslChecks

+
+protected boolean sslChecks
+
+
+
+
+
+ +

+username

+
+protected String username
+
+
+
+
+
+ +

+password

+
+protected String password
+
+
+
+
+
+ +

+authKey

+
+protected String authKey
+
+
+
+
+
+ +

+authIV

+
+protected String authIV
+
+
+
+
+
+ +

+acceptedMediaType

+
+protected String acceptedMediaType
+
+
+
+
+
+ +

+acceptedVersion

+
+protected String acceptedVersion
+
+
+
+
+ + + + + + + + +
+Constructor Detail
+ +

+UrlConnectionHttpClient

+
+public UrlConnectionHttpClient(String username,
+                               String password,
+                               String userAgent,
+                               boolean sslChecks,
+                               String acceptedMediaType,
+                               String version)
+
+
+
+ +

+UrlConnectionHttpClient

+
+public UrlConnectionHttpClient(String username,
+                               String password,
+                               String userAgent,
+                               boolean sslChecks,
+                               String acceptedMediaType,
+                               String version,
+                               String authKey,
+                               String authIV)
+
+
+ + + + + + + + +
+Method Detail
+ +

+get

+
+public String get(URL url,
+                  int timeout)
+           throws HttpClientException,
+                  SocketTimeoutException
+
+
+
Specified by:
get in interface IHttpClient
+
+
+ +
Throws: +
HttpClientException +
SocketTimeoutException
+
+
+
+ +

+head

+
+public String head(URL url,
+                   int timeout)
+            throws HttpClientException,
+                   SocketTimeoutException
+
+
+
Specified by:
head in interface IHttpClient
+
+
+ +
Throws: +
HttpClientException +
SocketTimeoutException
+
+
+
+ +

+put

+
+public String put(URL url,
+                  IMediaType mediaType,
+                  int timeout,
+                  Parameter... parameters)
+           throws HttpClientException,
+                  SocketTimeoutException,
+                  EncodingException
+
+
+
Specified by:
put in interface IHttpClient
+
+
+ +
Throws: +
HttpClientException +
SocketTimeoutException +
EncodingException
+
+
+
+ +

+post

+
+public String post(URL url,
+                   IMediaType mediaType,
+                   int timeout,
+                   Parameter... parameters)
+            throws HttpClientException,
+                   SocketTimeoutException,
+                   EncodingException
+
+
+
Specified by:
post in interface IHttpClient
+
+
+ +
Throws: +
HttpClientException +
SocketTimeoutException +
EncodingException
+
+
+
+ +

+patch

+
+public String patch(URL url,
+                    IMediaType mediaType,
+                    int timeout,
+                    Parameter... parameters)
+             throws HttpClientException,
+                    SocketTimeoutException,
+                    EncodingException
+
+
+
Specified by:
patch in interface IHttpClient
+
+
+ +
Throws: +
HttpClientException +
SocketTimeoutException +
EncodingException
+
+
+
+ +

+delete

+
+public String delete(URL url,
+                     IMediaType mediaType,
+                     int timeout,
+                     Parameter... parameters)
+              throws HttpClientException,
+                     SocketTimeoutException,
+                     EncodingException
+
+
+
Specified by:
delete in interface IHttpClient
+
+
+ +
Throws: +
HttpClientException +
SocketTimeoutException +
EncodingException
+
+
+
+ +

+delete

+
+public String delete(URL url,
+                     int timeout)
+              throws HttpClientException,
+                     SocketTimeoutException,
+                     EncodingException
+
+
+
Specified by:
delete in interface IHttpClient
+
+
+ +
Throws: +
HttpClientException +
SocketTimeoutException +
EncodingException
+
+
+
+ +

+request

+
+protected String request(HttpMethod httpMethod,
+                         URL url,
+                         IMediaType requestMediaType,
+                         int timeout,
+                         Parameter... parameters)
+                  throws SocketTimeoutException,
+                         HttpClientException
+
+
+
+
+
+ +
Throws: +
SocketTimeoutException +
HttpClientException
+
+
+
+ +

+request

+
+protected String request(HttpMethod httpMethod,
+                         URL url,
+                         IMediaType requestMediaType,
+                         int timeout,
+                         ParameterValueMap parameters)
+                  throws SocketTimeoutException,
+                         HttpClientException
+
+
+
+
+
+ +
Throws: +
SocketTimeoutException +
HttpClientException
+
+
+
+ +

+createErrorMessage

+
+protected String createErrorMessage(IOException ioe,
+                                    HttpURLConnection connection)
+                             throws IOException
+
+
+
+
+
+ +
Throws: +
IOException
+
+
+
+ +

+createConnection

+
+protected HttpURLConnection createConnection(URL url,
+                                             String username,
+                                             String password,
+                                             String authKey,
+                                             String authIV,
+                                             String userAgent,
+                                             String acceptedVersion,
+                                             String acceptedMediaType,
+                                             int timeout)
+                                      throws IOException
+
+
+
+
+
+ +
Throws: +
IOException
+
+
+
+ +

+setUserAgent

+
+public void setUserAgent(String userAgent)
+
+
+
Specified by:
setUserAgent in interface IHttpClient
+
+
+
+
+
+
+ +

+setAcceptVersion

+
+public void setAcceptVersion(String version)
+
+
+
Specified by:
setAcceptVersion in interface IHttpClient
+
+
+
+
+
+
+ +

+setAcceptedMediaType

+
+public void setAcceptedMediaType(String acceptedMediaType)
+
+
+
Specified by:
setAcceptedMediaType in interface IHttpClient
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/UrlConnectionHttpClientBuilder.html b/documentation/com/openshift/internal/client/httpclient/UrlConnectionHttpClientBuilder.html new file mode 100644 index 00000000..b96670f8 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/UrlConnectionHttpClientBuilder.html @@ -0,0 +1,379 @@ + + + + + + + +UrlConnectionHttpClientBuilder (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.httpclient +
+Class UrlConnectionHttpClientBuilder

+
+java.lang.Object
+  extended by com.openshift.internal.client.httpclient.UrlConnectionHttpClientBuilder
+
+
+
+
public class UrlConnectionHttpClientBuilder
extends Object
+ + +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
UrlConnectionHttpClientBuilder() + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ IHttpClientclient() + +
+           
+ UrlConnectionHttpClientBuildersetAcceptMediaType(String mediaType) + +
+           
+ UrlConnectionHttpClientBuildersetCredentials(String username, + String password) + +
+           
+ UrlConnectionHttpClientBuildersetCredentials(String username, + String password, + String authKey, + String authIV) + +
+           
+ UrlConnectionHttpClientBuildersetSSLChecks(boolean check) + +
+           
+ UrlConnectionHttpClientBuildersetUserAgent(String userAgent) + +
+           
+ UrlConnectionHttpClientBuildersetVersion(String version) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+UrlConnectionHttpClientBuilder

+
+public UrlConnectionHttpClientBuilder()
+
+
+ + + + + + + + +
+Method Detail
+ +

+setUserAgent

+
+public UrlConnectionHttpClientBuilder setUserAgent(String userAgent)
+
+
+
+
+
+
+ +

+setSSLChecks

+
+public UrlConnectionHttpClientBuilder setSSLChecks(boolean check)
+
+
+
+
+
+
+ +

+setCredentials

+
+public UrlConnectionHttpClientBuilder setCredentials(String username,
+                                                     String password)
+
+
+
+
+
+
+ +

+setCredentials

+
+public UrlConnectionHttpClientBuilder setCredentials(String username,
+                                                     String password,
+                                                     String authKey,
+                                                     String authIV)
+
+
+
+
+
+
+ +

+setAcceptMediaType

+
+public UrlConnectionHttpClientBuilder setAcceptMediaType(String mediaType)
+
+
+
+
+
+
+ +

+setVersion

+
+public UrlConnectionHttpClientBuilder setVersion(String version)
+
+
+
+
+
+
+ +

+client

+
+public IHttpClient client()
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/class-use/BadRequestException.html b/documentation/com/openshift/internal/client/httpclient/class-use/BadRequestException.html new file mode 100644 index 00000000..ddc1c290 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/class-use/BadRequestException.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.httpclient.BadRequestException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.httpclient.BadRequestException

+
+No usage of com.openshift.internal.client.httpclient.BadRequestException +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/class-use/EncodingException.html b/documentation/com/openshift/internal/client/httpclient/class-use/EncodingException.html new file mode 100644 index 00000000..877f53fe --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/class-use/EncodingException.html @@ -0,0 +1,348 @@ + + + + + + + +Uses of Class com.openshift.internal.client.httpclient.EncodingException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.httpclient.EncodingException

+
+ + + + + + + + + + + + + + + + + +
+Packages that use EncodingException
com.openshift.client  
com.openshift.internal.client.httpclient  
com.openshift.internal.client.httpclient.request  
+  +

+ + + + + +
+Uses of EncodingException in com.openshift.client
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client that throw EncodingException
+ StringIHttpClient.delete(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringIHttpClient.delete(URL url, + int timeout) + +
+           
+ StringIHttpClient.patch(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringIHttpClient.post(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringIHttpClient.put(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+  +

+ + + + + +
+Uses of EncodingException in com.openshift.internal.client.httpclient
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client.httpclient that throw EncodingException
+ StringUrlConnectionHttpClient.delete(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringUrlConnectionHttpClient.delete(URL url, + int timeout) + +
+           
+ StringUrlConnectionHttpClient.patch(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringUrlConnectionHttpClient.post(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringUrlConnectionHttpClient.put(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+  +

+ + + + + +
+Uses of EncodingException in com.openshift.internal.client.httpclient.request
+  +

+ + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client.httpclient.request that throw EncodingException
+ voidJsonMediaType.writeTo(ParameterValueMap parameterMap, + OutputStream out) + +
+           
+ voidIMediaType.writeTo(ParameterValueMap parameterMap, + OutputStream out) + +
+           
+ voidFormUrlEncodedMediaType.writeTo(ParameterValueMap parameterMap, + OutputStream out) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/class-use/HttpClientException.html b/documentation/com/openshift/internal/client/httpclient/class-use/HttpClientException.html new file mode 100644 index 00000000..e62ea10a --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/class-use/HttpClientException.html @@ -0,0 +1,432 @@ + + + + + + + +Uses of Class com.openshift.internal.client.httpclient.HttpClientException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.httpclient.HttpClientException

+
+ + + + + + + + + + + + + +
+Packages that use HttpClientException
com.openshift.client  
com.openshift.internal.client.httpclient  
+  +

+ + + + + +
+Uses of HttpClientException in com.openshift.client
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client that throw HttpClientException
+ StringIHttpClient.delete(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringIHttpClient.delete(URL url, + int timeout) + +
+           
+ StringIHttpClient.get(URL url, + int timeout) + +
+           
+ StringIHttpClient.head(URL url, + int timeout) + +
+           
+ StringIHttpClient.patch(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringIHttpClient.post(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringIHttpClient.put(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+  +

+ + + + + + + + + + + +
Constructors in com.openshift.client with parameters of type HttpClientException
InvalidCredentialsOpenShiftException(String url, + HttpClientException cause, + RestResponse restResponse) + +
+           
NotFoundOpenShiftException(String url, + HttpClientException e, + RestResponse restResponse) + +
+           
+  +

+ + + + + +
+Uses of HttpClientException in com.openshift.internal.client.httpclient
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Subclasses of HttpClientException in com.openshift.internal.client.httpclient
+ classBadRequestException + +
+           
+ classEncodingException + +
+           
+ classInternalServerErrorException + +
+           
+ classNotFoundException + +
+           
+ classUnauthorizedException + +
+           
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client.httpclient that throw HttpClientException
+ StringUrlConnectionHttpClient.delete(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringUrlConnectionHttpClient.delete(URL url, + int timeout) + +
+           
+ StringUrlConnectionHttpClient.get(URL url, + int timeout) + +
+           
+ StringUrlConnectionHttpClient.head(URL url, + int timeout) + +
+           
+ StringUrlConnectionHttpClient.patch(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringUrlConnectionHttpClient.post(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringUrlConnectionHttpClient.put(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+protected  StringUrlConnectionHttpClient.request(HttpMethod httpMethod, + URL url, + IMediaType requestMediaType, + int timeout, + Parameter... parameters) + +
+           
+protected  StringUrlConnectionHttpClient.request(HttpMethod httpMethod, + URL url, + IMediaType requestMediaType, + int timeout, + ParameterValueMap parameters) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/class-use/InternalServerErrorException.html b/documentation/com/openshift/internal/client/httpclient/class-use/InternalServerErrorException.html new file mode 100644 index 00000000..e9dba25e --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/class-use/InternalServerErrorException.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.httpclient.InternalServerErrorException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.httpclient.InternalServerErrorException

+
+No usage of com.openshift.internal.client.httpclient.InternalServerErrorException +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/class-use/NotFoundException.html b/documentation/com/openshift/internal/client/httpclient/class-use/NotFoundException.html new file mode 100644 index 00000000..febc938d --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/class-use/NotFoundException.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.httpclient.NotFoundException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.httpclient.NotFoundException

+
+No usage of com.openshift.internal.client.httpclient.NotFoundException +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/class-use/UnauthorizedException.html b/documentation/com/openshift/internal/client/httpclient/class-use/UnauthorizedException.html new file mode 100644 index 00000000..d079d4c7 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/class-use/UnauthorizedException.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.httpclient.UnauthorizedException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.httpclient.UnauthorizedException

+
+No usage of com.openshift.internal.client.httpclient.UnauthorizedException +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/class-use/UrlConnectionHttpClient.html b/documentation/com/openshift/internal/client/httpclient/class-use/UrlConnectionHttpClient.html new file mode 100644 index 00000000..ea390a57 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/class-use/UrlConnectionHttpClient.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.httpclient.UrlConnectionHttpClient (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.httpclient.UrlConnectionHttpClient

+
+No usage of com.openshift.internal.client.httpclient.UrlConnectionHttpClient +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/class-use/UrlConnectionHttpClientBuilder.html b/documentation/com/openshift/internal/client/httpclient/class-use/UrlConnectionHttpClientBuilder.html new file mode 100644 index 00000000..a121c26e --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/class-use/UrlConnectionHttpClientBuilder.html @@ -0,0 +1,225 @@ + + + + + + + +Uses of Class com.openshift.internal.client.httpclient.UrlConnectionHttpClientBuilder (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.httpclient.UrlConnectionHttpClientBuilder

+
+ + + + + + + + + +
+Packages that use UrlConnectionHttpClientBuilder
com.openshift.internal.client.httpclient  
+  +

+ + + + + +
+Uses of UrlConnectionHttpClientBuilder in com.openshift.internal.client.httpclient
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client.httpclient that return UrlConnectionHttpClientBuilder
+ UrlConnectionHttpClientBuilderUrlConnectionHttpClientBuilder.setAcceptMediaType(String mediaType) + +
+           
+ UrlConnectionHttpClientBuilderUrlConnectionHttpClientBuilder.setCredentials(String username, + String password) + +
+           
+ UrlConnectionHttpClientBuilderUrlConnectionHttpClientBuilder.setCredentials(String username, + String password, + String authKey, + String authIV) + +
+           
+ UrlConnectionHttpClientBuilderUrlConnectionHttpClientBuilder.setSSLChecks(boolean check) + +
+           
+ UrlConnectionHttpClientBuilderUrlConnectionHttpClientBuilder.setUserAgent(String userAgent) + +
+           
+ UrlConnectionHttpClientBuilderUrlConnectionHttpClientBuilder.setVersion(String version) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/package-frame.html b/documentation/com/openshift/internal/client/httpclient/package-frame.html new file mode 100644 index 00000000..6dbdcdd5 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/package-frame.html @@ -0,0 +1,56 @@ + + + + + + + +com.openshift.internal.client.httpclient (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + +com.openshift.internal.client.httpclient + + + + +
+Classes  + +
+UrlConnectionHttpClient +
+UrlConnectionHttpClientBuilder
+ + + + + + +
+Exceptions  + +
+BadRequestException +
+EncodingException +
+HttpClientException +
+InternalServerErrorException +
+NotFoundException +
+UnauthorizedException
+ + + + diff --git a/documentation/com/openshift/internal/client/httpclient/package-summary.html b/documentation/com/openshift/internal/client/httpclient/package-summary.html new file mode 100644 index 00000000..63402853 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/package-summary.html @@ -0,0 +1,196 @@ + + + + + + + +com.openshift.internal.client.httpclient (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+

+Package com.openshift.internal.client.httpclient +

+ + + + + + + + + + + + + +
+Class Summary
UrlConnectionHttpClient 
UrlConnectionHttpClientBuilder 
+  + +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Exception Summary
BadRequestException 
EncodingException 
HttpClientException 
InternalServerErrorException 
NotFoundException 
UnauthorizedException 
+  + +

+

+
+
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/package-tree.html b/documentation/com/openshift/internal/client/httpclient/package-tree.html new file mode 100644 index 00000000..9f85566a --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/package-tree.html @@ -0,0 +1,164 @@ + + + + + + + +com.openshift.internal.client.httpclient Class Hierarchy (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Hierarchy For Package com.openshift.internal.client.httpclient +

+
+
+
Package Hierarchies:
All Packages
+
+

+Class Hierarchy +

+ +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/package-use.html b/documentation/com/openshift/internal/client/httpclient/package-use.html new file mode 100644 index 00000000..e55b6947 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/package-use.html @@ -0,0 +1,227 @@ + + + + + + + +Uses of Package com.openshift.internal.client.httpclient (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Package
com.openshift.internal.client.httpclient

+
+ + + + + + + + + + + + + + + + + +
+Packages that use com.openshift.internal.client.httpclient
com.openshift.client  
com.openshift.internal.client.httpclient  
com.openshift.internal.client.httpclient.request  
+  +

+ + + + + + + + + + + +
+Classes in com.openshift.internal.client.httpclient used by com.openshift.client
EncodingException + +
+           
HttpClientException + +
+           
+  +

+ + + + + + + + + + + + + + +
+Classes in com.openshift.internal.client.httpclient used by com.openshift.internal.client.httpclient
EncodingException + +
+           
HttpClientException + +
+           
UrlConnectionHttpClientBuilder + +
+           
+  +

+ + + + + + + + +
+Classes in com.openshift.internal.client.httpclient used by com.openshift.internal.client.httpclient.request
EncodingException + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/request/FormUrlEncodedMediaType.html b/documentation/com/openshift/internal/client/httpclient/request/FormUrlEncodedMediaType.html new file mode 100644 index 00000000..b4fbc1de --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/request/FormUrlEncodedMediaType.html @@ -0,0 +1,307 @@ + + + + + + + +FormUrlEncodedMediaType (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.httpclient.request +
+Class FormUrlEncodedMediaType

+
+java.lang.Object
+  extended by com.openshift.internal.client.httpclient.request.FormUrlEncodedMediaType
+
+
+
All Implemented Interfaces:
IMediaType
+
+
+
+
public class FormUrlEncodedMediaType
extends Object
implements IMediaType
+ + +

+A class that encodes request parameters to formurl-encoded format so that they may get sent to + the server. There are 4 types that are recognized and correctly encoded: +

    +
  • Parameter (key-/value-pair, keys are always strings, values may be + StringValue, ParameterValueArray, ParameterValueMap))
  • +
  • StringValue (string value: paramname="value")/li> +
  • ParameterValueArray (array of values: paramname[]="value"¶mname[]="value")
  • +
  • ParameterValueMap (map of values: paramname[key]="value"¶mname[key]="value)"
  • +
+

+ +

+

+
Author:
+
Andre Dietisheim
+
See Also:
IHttpClient.post(java.net.URL, IMediaType, int, + com.openshift.internal.client.httpclient.request.Parameter...), +IHttpClient.put(java.net.URL, IMediaType, int, + com.openshift.internal.client.httpclient.request.Parameter...), +IHttpClient.delete(java.net.URL, IMediaType, int, + com.openshift.internal.client.httpclient.request.Parameter...)
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
FormUrlEncodedMediaType() + +
+           
+  + + + + + + + + + + + + + + + +
+Method Summary
+ StringgetType() + +
+           
+ voidwriteTo(ParameterValueMap parameterMap, + OutputStream out) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+FormUrlEncodedMediaType

+
+public FormUrlEncodedMediaType()
+
+
+ + + + + + + + +
+Method Detail
+ +

+getType

+
+public String getType()
+
+
+
Specified by:
getType in interface IMediaType
+
+
+
+
+
+
+ +

+writeTo

+
+public void writeTo(ParameterValueMap parameterMap,
+                    OutputStream out)
+             throws EncodingException
+
+
+
Specified by:
writeTo in interface IMediaType
+
+
+ +
Throws: +
EncodingException
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/request/IMediaType.html b/documentation/com/openshift/internal/client/httpclient/request/IMediaType.html new file mode 100644 index 00000000..17fe6c76 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/request/IMediaType.html @@ -0,0 +1,244 @@ + + + + + + + +IMediaType (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.httpclient.request +
+Interface IMediaType

+
+
All Known Implementing Classes:
FormUrlEncodedMediaType, JsonMediaType
+
+
+
+
public interface IMediaType
+ + +

+A media type that encodes and writes request parameters before they get sent by the client. +

+ +

+

+
Author:
+
Andre Dietisheim
+
See Also:
IHttpClient.post(java.net.URL, IMediaType, int, com.openshift.internal.client.httpclient.request.Parameter...), +IHttpClient.put(java.net.URL, IMediaType, int, com.openshift.internal.client.httpclient.request.Parameter...), +IHttpClient.delete(java.net.URL, IMediaType, int, com.openshift.internal.client.httpclient.request.Parameter...)
+
+ +

+ + + + + + + + + + + + + + + + +
+Method Summary
+ StringgetType() + +
+           
+ voidwriteTo(ParameterValueMap parameterMap, + OutputStream out) + +
+           
+  +

+ + + + + + + + +
+Method Detail
+ +

+getType

+
+String getType()
+
+
+
+
+
+
+ +

+writeTo

+
+void writeTo(ParameterValueMap parameterMap,
+             OutputStream out)
+             throws EncodingException
+
+
+ +
Throws: +
EncodingException
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/request/JsonMediaType.html b/documentation/com/openshift/internal/client/httpclient/request/JsonMediaType.html new file mode 100644 index 00000000..aac08da4 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/request/JsonMediaType.html @@ -0,0 +1,304 @@ + + + + + + + +JsonMediaType (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.httpclient.request +
+Class JsonMediaType

+
+java.lang.Object
+  extended by com.openshift.internal.client.httpclient.request.JsonMediaType
+
+
+
All Implemented Interfaces:
IMediaType
+
+
+
+
public class JsonMediaType
extends Object
implements IMediaType
+ + +

+A class that encodes request parameters to json so that they may get sent to + the server. There are 4 types that are recognized and correctly encoded: +

    +
  • Parameter (key-/value-pair, keys are always strings, values may be + StringValue, ParameterValueArray, ParameterValueMap))
  • +
  • StringValue (string value, in json: string)/li> +
  • ParameterValueArray (array of values, in json: array
  • +
  • ParameterValueMap (map of values, in json: object
  • +
+

+ +

+

+
Author:
+
Andre Dietisheim
+
See Also:
IHttpClient.post(java.net.URL, IMediaType, int, com.openshift.internal.client.httpclient.request.Parameter...), +IHttpClient.put(java.net.URL, IMediaType, int, com.openshift.internal.client.httpclient.request.Parameter...), +IHttpClient.delete(java.net.URL, IMediaType, int, com.openshift.internal.client.httpclient.request.Parameter...)
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
JsonMediaType() + +
+           
+  + + + + + + + + + + + + + + + +
+Method Summary
+ StringgetType() + +
+           
+ voidwriteTo(ParameterValueMap parameterMap, + OutputStream out) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+JsonMediaType

+
+public JsonMediaType()
+
+
+ + + + + + + + +
+Method Detail
+ +

+getType

+
+public String getType()
+
+
+
Specified by:
getType in interface IMediaType
+
+
+
+
+
+
+ +

+writeTo

+
+public void writeTo(ParameterValueMap parameterMap,
+                    OutputStream out)
+             throws EncodingException
+
+
+
Specified by:
writeTo in interface IMediaType
+
+
+ +
Throws: +
EncodingException
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/request/Parameter.html b/documentation/com/openshift/internal/client/httpclient/request/Parameter.html new file mode 100644 index 00000000..355a23d0 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/request/Parameter.html @@ -0,0 +1,359 @@ + + + + + + + +Parameter (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.httpclient.request +
+Class Parameter

+
+java.lang.Object
+  extended by com.openshift.internal.client.httpclient.request.ParameterValue<ParameterValue<?>>
+      extended by com.openshift.internal.client.httpclient.request.Parameter
+
+
+
Direct Known Subclasses:
StringParameter
+
+
+
+
public class Parameter
extends ParameterValue<ParameterValue<?>>
+ + +

+A parameter wrapper to pass param key/values to the service when executing a + remote operation from a link. +

+ +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + +
+Constructor Summary
Parameter(String name, + ParameterValue<?> value) + +
+           
Parameter(String name, + String value) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ booleanequals(Object obj) + +
+           
+ StringgetName() + +
+           
+ inthashCode() + +
+           
+ StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.httpclient.request.ParameterValue
getValue
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+Parameter

+
+public Parameter(String name,
+                 String value)
+
+
+
+ +

+Parameter

+
+public Parameter(String name,
+                 ParameterValue<?> value)
+
+
+ + + + + + + + +
+Method Detail
+ +

+getName

+
+public String getName()
+
+
+
+
+
+
+ +

+hashCode

+
+public int hashCode()
+
+
+
Overrides:
hashCode in class ParameterValue<ParameterValue<?>>
+
+
+
+
+
+
+ +

+equals

+
+public boolean equals(Object obj)
+
+
+
Overrides:
equals in class ParameterValue<ParameterValue<?>>
+
+
+
+
+
+
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class ParameterValue<ParameterValue<?>>
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/request/ParameterValue.html b/documentation/com/openshift/internal/client/httpclient/request/ParameterValue.html new file mode 100644 index 00000000..6eea7909 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/request/ParameterValue.html @@ -0,0 +1,326 @@ + + + + + + + +ParameterValue (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.httpclient.request +
+Class ParameterValue<V>

+
+java.lang.Object
+  extended by com.openshift.internal.client.httpclient.request.ParameterValue<V>
+
+
+
Direct Known Subclasses:
Parameter, ParameterValueArray, ParameterValueMap, StringValue
+
+
+
+
public abstract class ParameterValue<V>
extends Object
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
ParameterValue(V value) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ booleanequals(Object obj) + +
+           
+ VgetValue() + +
+           
+ inthashCode() + +
+           
+ StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+ParameterValue

+
+public ParameterValue(V value)
+
+
+ + + + + + + + +
+Method Detail
+ +

+hashCode

+
+public int hashCode()
+
+
+
Overrides:
hashCode in class Object
+
+
+
+
+
+
+ +

+equals

+
+public boolean equals(Object obj)
+
+
+
Overrides:
equals in class Object
+
+
+
+
+
+
+ +

+getValue

+
+public V getValue()
+
+
+
+
+
+
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/request/ParameterValueArray.html b/documentation/com/openshift/internal/client/httpclient/request/ParameterValueArray.html new file mode 100644 index 00000000..13038b2c --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/request/ParameterValueArray.html @@ -0,0 +1,343 @@ + + + + + + + +ParameterValueArray (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.httpclient.request +
+Class ParameterValueArray

+
+java.lang.Object
+  extended by com.openshift.internal.client.httpclient.request.ParameterValue<List<ParameterValue<?>>>
+      extended by com.openshift.internal.client.httpclient.request.ParameterValueArray
+
+
+
+
public class ParameterValueArray
extends ParameterValue<List<ParameterValue<?>>>
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + +
+Constructor Summary
ParameterValueArray() + +
+           
ParameterValueArray(List<ParameterValue<?>> values) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ ParameterValueArrayadd(ParameterValue<?> value) + +
+           
+ ParameterValueArrayadd(String name, + String value) + +
+           
+ ParameterValueArrayaddAll(List<? extends ParameterValue<?>> values) + +
+           
+ StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.httpclient.request.ParameterValue
equals, getValue, hashCode
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+ParameterValueArray

+
+public ParameterValueArray()
+
+
+
+ +

+ParameterValueArray

+
+public ParameterValueArray(List<ParameterValue<?>> values)
+
+
+ + + + + + + + +
+Method Detail
+ +

+add

+
+public ParameterValueArray add(String name,
+                               String value)
+
+
+
+
+
+
+ +

+add

+
+public ParameterValueArray add(ParameterValue<?> value)
+
+
+
+
+
+
+ +

+addAll

+
+public ParameterValueArray addAll(List<? extends ParameterValue<?>> values)
+
+
+
+
+
+
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class ParameterValue<List<ParameterValue<?>>>
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/request/ParameterValueMap.html b/documentation/com/openshift/internal/client/httpclient/request/ParameterValueMap.html new file mode 100644 index 00000000..2b998381 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/request/ParameterValueMap.html @@ -0,0 +1,417 @@ + + + + + + + +ParameterValueMap (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.httpclient.request +
+Class ParameterValueMap

+
+java.lang.Object
+  extended by com.openshift.internal.client.httpclient.request.ParameterValue<Map<String,Parameter>>
+      extended by com.openshift.internal.client.httpclient.request.ParameterValueMap
+
+
+
+
public class ParameterValueMap
extends ParameterValue<Map<String,Parameter>>
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + + + +
+Constructor Summary
ParameterValueMap() + +
+           
ParameterValueMap(List<Parameter> parameters) + +
+           
ParameterValueMap(Parameter... parameters) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ ParameterValueMapadd(Parameter parameter) + +
+           
+ ParameterValueMapadd(String name, + String value) + +
+           
+ ParameterValueMapaddAll(List<? extends Parameter> parameters) + +
+           
+ booleanequals(Object obj) + +
+           
+ ParametergetParamater(String name) + +
+           
+ booleanisEmpty() + +
+           
+ StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.httpclient.request.ParameterValue
getValue, hashCode
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+ParameterValueMap

+
+public ParameterValueMap(List<Parameter> parameters)
+
+
+
+ +

+ParameterValueMap

+
+public ParameterValueMap(Parameter... parameters)
+
+
+
+ +

+ParameterValueMap

+
+public ParameterValueMap()
+
+
+ + + + + + + + +
+Method Detail
+ +

+addAll

+
+public ParameterValueMap addAll(List<? extends Parameter> parameters)
+
+
+
+
+
+
+ +

+add

+
+public ParameterValueMap add(String name,
+                             String value)
+
+
+
+
+
+
+ +

+add

+
+public ParameterValueMap add(Parameter parameter)
+
+
+
+
+
+
+ +

+getParamater

+
+public Parameter getParamater(String name)
+
+
+
+
+
+
+ +

+isEmpty

+
+public boolean isEmpty()
+
+
+
+
+
+
+ +

+equals

+
+public boolean equals(Object obj)
+
+
+
Overrides:
equals in class ParameterValue<Map<String,Parameter>>
+
+
+
+
+
+
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class ParameterValue<Map<String,Parameter>>
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/request/StringParameter.html b/documentation/com/openshift/internal/client/httpclient/request/StringParameter.html new file mode 100644 index 00000000..c75ee4a1 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/request/StringParameter.html @@ -0,0 +1,282 @@ + + + + + + + +StringParameter (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.httpclient.request +
+Class StringParameter

+
+java.lang.Object
+  extended by com.openshift.internal.client.httpclient.request.ParameterValue<ParameterValue<?>>
+      extended by com.openshift.internal.client.httpclient.request.Parameter
+          extended by com.openshift.internal.client.httpclient.request.StringParameter
+
+
+
+
public class StringParameter
extends Parameter
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
StringParameter(String name, + String value) + +
+           
+  + + + + + + + + + + + +
+Method Summary
+ StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.httpclient.request.Parameter
equals, getName, hashCode
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.httpclient.request.ParameterValue
getValue
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+StringParameter

+
+public StringParameter(String name,
+                       String value)
+
+
+ + + + + + + + +
+Method Detail
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class Parameter
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/request/StringValue.html b/documentation/com/openshift/internal/client/httpclient/request/StringValue.html new file mode 100644 index 00000000..ce65ddbc --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/request/StringValue.html @@ -0,0 +1,270 @@ + + + + + + + +StringValue (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.httpclient.request +
+Class StringValue

+
+java.lang.Object
+  extended by com.openshift.internal.client.httpclient.request.ParameterValue<String>
+      extended by com.openshift.internal.client.httpclient.request.StringValue
+
+
+
+
public class StringValue
extends ParameterValue<String>
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
StringValue(String value) + +
+           
+  + + + + + + + + + + + +
+Method Summary
+ StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.httpclient.request.ParameterValue
equals, getValue, hashCode
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+StringValue

+
+public StringValue(String value)
+
+
+ + + + + + + + +
+Method Detail
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class ParameterValue<String>
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/request/class-use/FormUrlEncodedMediaType.html b/documentation/com/openshift/internal/client/httpclient/request/class-use/FormUrlEncodedMediaType.html new file mode 100644 index 00000000..feb74813 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/request/class-use/FormUrlEncodedMediaType.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.httpclient.request.FormUrlEncodedMediaType (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.httpclient.request.FormUrlEncodedMediaType

+
+No usage of com.openshift.internal.client.httpclient.request.FormUrlEncodedMediaType +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/request/class-use/IMediaType.html b/documentation/com/openshift/internal/client/httpclient/request/class-use/IMediaType.html new file mode 100644 index 00000000..4fc95262 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/request/class-use/IMediaType.html @@ -0,0 +1,492 @@ + + + + + + + +Uses of Interface com.openshift.internal.client.httpclient.request.IMediaType (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Interface
com.openshift.internal.client.httpclient.request.IMediaType

+
+ + + + + + + + + + + + + + + + + + + + + +
+Packages that use IMediaType
com.openshift.client  
com.openshift.internal.client  
com.openshift.internal.client.httpclient  
com.openshift.internal.client.httpclient.request  
+  +

+ + + + + +
+Uses of IMediaType in com.openshift.client
+  +

+ + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client with parameters of type IMediaType
+ StringIHttpClient.delete(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringIHttpClient.patch(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringIHttpClient.post(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringIHttpClient.put(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+  +

+ + + + + +
+Uses of IMediaType in com.openshift.internal.client
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client with parameters of type IMediaType
+protected + + + + +
+<DTO> DTO
+
AbstractOpenShiftResource.ServiceRequest.execute(int timeout, + IMediaType mediaType, + Parameter... parameters) + +
+           
+protected + + + + +
+<DTO> DTO
+
AbstractOpenShiftResource.ServiceRequest.execute(int timeout, + List<Parameter> urlParameter, + IMediaType mediaType, + Parameter... parameters) + +
+           
+ RestResponseRestService.request(Link link, + int timeout, + IMediaType requestMediaType, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + int timeout, + IMediaType mediaType, + Parameter... parameters) + +
+          Requests the given link sending the given parameters while encoding the + parameters with the given media type and respecting the given timeout.
+ RestResponseRestService.request(Link link, + int timeout, + List<Parameter> urlParameters, + IMediaType requestMediaType, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + int timeout, + List<Parameter> urlParameters, + IMediaType mediaType, + Parameter... parameters) + +
+           
+  +

+ + + + + + + + + + + + + + +
Constructors in com.openshift.internal.client with parameters of type IMediaType
RestService(String server, + String clientId, + IMediaType defaultRequestMediaType, + String acceptedMediaType, + IRestResponseFactory factory, + IHttpClient client) + +
+           
RestService(String server, + String clientId, + IMediaType defaultRequestMediaType, + String acceptedMediaType, + IRestResponseFactory factory, + IHttpClient client, + RestServiceProperties properties) + +
+           
RestService(String server, + String clientId, + String protocolVersion, + IMediaType defaultRequestMediaType, + String acceptedMediaType, + IRestResponseFactory factory, + IHttpClient client, + RestServiceProperties properties) + +
+           
+  +

+ + + + + +
+Uses of IMediaType in com.openshift.internal.client.httpclient
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client.httpclient with parameters of type IMediaType
+ StringUrlConnectionHttpClient.delete(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringUrlConnectionHttpClient.patch(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringUrlConnectionHttpClient.post(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringUrlConnectionHttpClient.put(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+protected  StringUrlConnectionHttpClient.request(HttpMethod httpMethod, + URL url, + IMediaType requestMediaType, + int timeout, + Parameter... parameters) + +
+           
+protected  StringUrlConnectionHttpClient.request(HttpMethod httpMethod, + URL url, + IMediaType requestMediaType, + int timeout, + ParameterValueMap parameters) + +
+           
+  +

+ + + + + +
+Uses of IMediaType in com.openshift.internal.client.httpclient.request
+  +

+ + + + + + + + + + + + + +
Classes in com.openshift.internal.client.httpclient.request that implement IMediaType
+ classFormUrlEncodedMediaType + +
+          A class that encodes request parameters to formurl-encoded format so that they may get sent to + the server.
+ classJsonMediaType + +
+          A class that encodes request parameters to json so that they may get sent to + the server.
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/request/class-use/JsonMediaType.html b/documentation/com/openshift/internal/client/httpclient/request/class-use/JsonMediaType.html new file mode 100644 index 00000000..b3e60bd3 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/request/class-use/JsonMediaType.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.httpclient.request.JsonMediaType (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.httpclient.request.JsonMediaType

+
+No usage of com.openshift.internal.client.httpclient.request.JsonMediaType +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/request/class-use/Parameter.html b/documentation/com/openshift/internal/client/httpclient/request/class-use/Parameter.html new file mode 100644 index 00000000..3b8e9ade --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/request/class-use/Parameter.html @@ -0,0 +1,868 @@ + + + + + + + +Uses of Class com.openshift.internal.client.httpclient.request.Parameter (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.httpclient.request.Parameter

+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+Packages that use Parameter
com.openshift.client  
com.openshift.internal.client  
com.openshift.internal.client.httpclient  
com.openshift.internal.client.httpclient.request  
com.openshift.internal.client.response  
+  +

+ + + + + +
+Uses of Parameter in com.openshift.client
+  +

+ + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.client with parameters of type Parameter
+ StringIHttpClient.delete(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringIHttpClient.patch(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringIHttpClient.post(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringIHttpClient.put(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+  +

+ + + + + +
+Uses of Parameter in com.openshift.internal.client
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client that return Parameter
+protected  Parameter[]AbstractOpenShiftResource.Parameters.toArray() + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client that return types with arguments of type Parameter
+protected  List<Parameter>AbstractOpenShiftResource.Parameters.toList() + +
+           
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client with parameters of type Parameter
+protected  AbstractOpenShiftResource.ParametersAbstractOpenShiftResource.Parameters.add(Parameter parameter) + +
+           
+protected + + + + +
+<DTO> DTO
+
AbstractOpenShiftResource.ServiceRequest.execute(int timeout, + IMediaType mediaType, + Parameter... parameters) + +
+           
+protected + + + + +
+<DTO> DTO
+
AbstractOpenShiftResource.ServiceRequest.execute(int timeout, + List<Parameter> urlParameter, + IMediaType mediaType, + Parameter... parameters) + +
+           
+protected + + + + +
+<DTO> DTO
+
AbstractOpenShiftResource.ServiceRequest.execute(int timeout, + List<Parameter> urlParameter, + Parameter... parameters) + +
+           
+protected + + + + +
+<DTO> DTO
+
AbstractOpenShiftResource.ServiceRequest.execute(int timeout, + Parameter... parameters) + +
+           
+protected + + + + +
+<DTO> DTO
+
AbstractOpenShiftResource.ServiceRequest.execute(List<Parameter> urlParameter, + Parameter... parameters) + +
+           
+protected + + + + +
+<DTO> DTO
+
AbstractOpenShiftResource.ServiceRequest.execute(Parameter... parameters) + +
+           
+ RestResponseRestService.request(Link link, + int timeout, + IMediaType requestMediaType, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + int timeout, + IMediaType mediaType, + Parameter... parameters) + +
+          Requests the given link sending the given parameters while encoding the + parameters with the given media type and respecting the given timeout.
+ RestResponseRestService.request(Link link, + int timeout, + List<Parameter> urlParameters, + IMediaType requestMediaType, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + int timeout, + List<Parameter> urlParameters, + IMediaType mediaType, + Parameter... parameters) + +
+           
+ RestResponseRestService.request(Link link, + int timeout, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + int timeout, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+ RestResponseRestService.request(Link link, + int timeout, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + int timeout, + Parameter... parameters) + +
+           
+ RestResponseRestService.request(Link link, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+ RestResponseRestService.request(Link link, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + Parameter... parameters) + +
+           
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Method parameters in com.openshift.internal.client with type arguments of type Parameter
+protected + + + + +
+<DTO> DTO
+
AbstractOpenShiftResource.ServiceRequest.execute(int timeout, + List<Parameter> urlParameter, + IMediaType mediaType, + Parameter... parameters) + +
+           
+protected + + + + +
+<DTO> DTO
+
AbstractOpenShiftResource.ServiceRequest.execute(int timeout, + List<Parameter> urlParameter, + Parameter... parameters) + +
+           
+protected + + + + +
+<DTO> DTO
+
AbstractOpenShiftResource.ServiceRequest.execute(List<Parameter> urlParameter, + Parameter... parameters) + +
+           
+ RestResponseRestService.request(Link link, + int timeout, + List<Parameter> urlParameters, + IMediaType requestMediaType, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + int timeout, + List<Parameter> urlParameters, + IMediaType mediaType, + Parameter... parameters) + +
+           
+ RestResponseRestService.request(Link link, + int timeout, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + int timeout, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+ RestResponseRestService.request(Link link, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+  +

+ + + + + +
+Uses of Parameter in com.openshift.internal.client.httpclient
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client.httpclient with parameters of type Parameter
+ StringUrlConnectionHttpClient.delete(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringUrlConnectionHttpClient.patch(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringUrlConnectionHttpClient.post(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+ StringUrlConnectionHttpClient.put(URL url, + IMediaType mediaType, + int timeout, + Parameter... parameters) + +
+           
+protected  StringUrlConnectionHttpClient.request(HttpMethod httpMethod, + URL url, + IMediaType requestMediaType, + int timeout, + Parameter... parameters) + +
+           
+  +

+ + + + + +
+Uses of Parameter in com.openshift.internal.client.httpclient.request
+  +

+ + + + + + + + + +
Subclasses of Parameter in com.openshift.internal.client.httpclient.request
+ classStringParameter + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.httpclient.request that return Parameter
+ ParameterParameterValueMap.getParamater(String name) + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.httpclient.request with parameters of type Parameter
+ ParameterValueMapParameterValueMap.add(Parameter parameter) + +
+           
+  +

+ + + + + + + + + +
Method parameters in com.openshift.internal.client.httpclient.request with type arguments of type Parameter
+ ParameterValueMapParameterValueMap.addAll(List<? extends Parameter> parameters) + +
+           
+  +

+ + + + + + + + +
Constructors in com.openshift.internal.client.httpclient.request with parameters of type Parameter
ParameterValueMap(Parameter... parameters) + +
+           
+  +

+ + + + + + + + +
Constructor parameters in com.openshift.internal.client.httpclient.request with type arguments of type Parameter
ParameterValueMap(List<Parameter> parameters) + +
+           
+  +

+ + + + + +
+Uses of Parameter in com.openshift.internal.client.response
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.internal.client.response with parameters of type Parameter
+ StringLink.getHref(String server, + String servicePath, + Parameter... urlParameters) + +
+           
+ voidLink.validateRequestParameters(Parameter[] parameters) + +
+           
+  +

+ + + + + + + + + +
Method parameters in com.openshift.internal.client.response with type arguments of type Parameter
+ StringLink.getHref(String server, + String servicePath, + List<Parameter> urlParameters) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/request/class-use/ParameterValue.html b/documentation/com/openshift/internal/client/httpclient/request/class-use/ParameterValue.html new file mode 100644 index 00000000..80dad600 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/request/class-use/ParameterValue.html @@ -0,0 +1,275 @@ + + + + + + + +Uses of Class com.openshift.internal.client.httpclient.request.ParameterValue (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.httpclient.request.ParameterValue

+
+ + + + + + + + + +
+Packages that use ParameterValue
com.openshift.internal.client.httpclient.request  
+  +

+ + + + + +
+Uses of ParameterValue in com.openshift.internal.client.httpclient.request
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Subclasses of ParameterValue in com.openshift.internal.client.httpclient.request
+ classParameter + +
+          A parameter wrapper to pass param key/values to the service when executing a + remote operation from a link.
+ classParameterValueArray + +
+           
+ classParameterValueMap + +
+           
+ classStringParameter + +
+           
+ classStringValue + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.httpclient.request with parameters of type ParameterValue
+ ParameterValueArrayParameterValueArray.add(ParameterValue<?> value) + +
+           
+  +

+ + + + + + + + + +
Method parameters in com.openshift.internal.client.httpclient.request with type arguments of type ParameterValue
+ ParameterValueArrayParameterValueArray.addAll(List<? extends ParameterValue<?>> values) + +
+           
+  +

+ + + + + + + + +
Constructors in com.openshift.internal.client.httpclient.request with parameters of type ParameterValue
Parameter(String name, + ParameterValue<?> value) + +
+           
+  +

+ + + + + + + + +
Constructor parameters in com.openshift.internal.client.httpclient.request with type arguments of type ParameterValue
ParameterValueArray(List<ParameterValue<?>> values) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/request/class-use/ParameterValueArray.html b/documentation/com/openshift/internal/client/httpclient/request/class-use/ParameterValueArray.html new file mode 100644 index 00000000..089c4e69 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/request/class-use/ParameterValueArray.html @@ -0,0 +1,198 @@ + + + + + + + +Uses of Class com.openshift.internal.client.httpclient.request.ParameterValueArray (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.httpclient.request.ParameterValueArray

+
+ + + + + + + + + +
+Packages that use ParameterValueArray
com.openshift.internal.client.httpclient.request  
+  +

+ + + + + +
+Uses of ParameterValueArray in com.openshift.internal.client.httpclient.request
+  +

+ + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client.httpclient.request that return ParameterValueArray
+ ParameterValueArrayParameterValueArray.add(ParameterValue<?> value) + +
+           
+ ParameterValueArrayParameterValueArray.add(String name, + String value) + +
+           
+ ParameterValueArrayParameterValueArray.addAll(List<? extends ParameterValue<?>> values) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/request/class-use/ParameterValueMap.html b/documentation/com/openshift/internal/client/httpclient/request/class-use/ParameterValueMap.html new file mode 100644 index 00000000..e80664f3 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/request/class-use/ParameterValueMap.html @@ -0,0 +1,266 @@ + + + + + + + +Uses of Class com.openshift.internal.client.httpclient.request.ParameterValueMap (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.httpclient.request.ParameterValueMap

+
+ + + + + + + + + + + + + +
+Packages that use ParameterValueMap
com.openshift.internal.client.httpclient  
com.openshift.internal.client.httpclient.request  
+  +

+ + + + + +
+Uses of ParameterValueMap in com.openshift.internal.client.httpclient
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.httpclient with parameters of type ParameterValueMap
+protected  StringUrlConnectionHttpClient.request(HttpMethod httpMethod, + URL url, + IMediaType requestMediaType, + int timeout, + ParameterValueMap parameters) + +
+           
+  +

+ + + + + +
+Uses of ParameterValueMap in com.openshift.internal.client.httpclient.request
+  +

+ + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client.httpclient.request that return ParameterValueMap
+ ParameterValueMapParameterValueMap.add(Parameter parameter) + +
+           
+ ParameterValueMapParameterValueMap.add(String name, + String value) + +
+           
+ ParameterValueMapParameterValueMap.addAll(List<? extends Parameter> parameters) + +
+           
+  +

+ + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client.httpclient.request with parameters of type ParameterValueMap
+ voidJsonMediaType.writeTo(ParameterValueMap parameterMap, + OutputStream out) + +
+           
+ voidIMediaType.writeTo(ParameterValueMap parameterMap, + OutputStream out) + +
+           
+ voidFormUrlEncodedMediaType.writeTo(ParameterValueMap parameterMap, + OutputStream out) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/request/class-use/StringParameter.html b/documentation/com/openshift/internal/client/httpclient/request/class-use/StringParameter.html new file mode 100644 index 00000000..c77164d0 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/request/class-use/StringParameter.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.httpclient.request.StringParameter (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.httpclient.request.StringParameter

+
+No usage of com.openshift.internal.client.httpclient.request.StringParameter +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/request/class-use/StringValue.html b/documentation/com/openshift/internal/client/httpclient/request/class-use/StringValue.html new file mode 100644 index 00000000..a7743b36 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/request/class-use/StringValue.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.httpclient.request.StringValue (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.httpclient.request.StringValue

+
+No usage of com.openshift.internal.client.httpclient.request.StringValue +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/request/package-frame.html b/documentation/com/openshift/internal/client/httpclient/request/package-frame.html new file mode 100644 index 00000000..76d6be44 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/request/package-frame.html @@ -0,0 +1,58 @@ + + + + + + + +com.openshift.internal.client.httpclient.request (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + +com.openshift.internal.client.httpclient.request + + + + +
+Interfaces  + +
+IMediaType
+ + + + + + +
+Classes  + +
+FormUrlEncodedMediaType +
+JsonMediaType +
+Parameter +
+ParameterValue +
+ParameterValueArray +
+ParameterValueMap +
+StringParameter +
+StringValue
+ + + + diff --git a/documentation/com/openshift/internal/client/httpclient/request/package-summary.html b/documentation/com/openshift/internal/client/httpclient/request/package-summary.html new file mode 100644 index 00000000..190ee8aa --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/request/package-summary.html @@ -0,0 +1,203 @@ + + + + + + + +com.openshift.internal.client.httpclient.request (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+

+Package com.openshift.internal.client.httpclient.request +

+ + + + + + + + + +
+Interface Summary
IMediaTypeA media type that encodes and writes request parameters before they get sent by the client.
+  + +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class Summary
FormUrlEncodedMediaTypeA class that encodes request parameters to formurl-encoded format so that they may get sent to + the server.
JsonMediaTypeA class that encodes request parameters to json so that they may get sent to + the server.
ParameterA parameter wrapper to pass param key/values to the service when executing a + remote operation from a link.
ParameterValue<V> 
ParameterValueArray 
ParameterValueMap 
StringParameter 
StringValue 
+  + +

+

+
+
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/request/package-tree.html b/documentation/com/openshift/internal/client/httpclient/request/package-tree.html new file mode 100644 index 00000000..a6576022 --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/request/package-tree.html @@ -0,0 +1,165 @@ + + + + + + + +com.openshift.internal.client.httpclient.request Class Hierarchy (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Hierarchy For Package com.openshift.internal.client.httpclient.request +

+
+
+
Package Hierarchies:
All Packages
+
+

+Class Hierarchy +

+ +

+Interface Hierarchy +

+
    +
  • com.openshift.internal.client.httpclient.request.IMediaType
+
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/httpclient/request/package-use.html b/documentation/com/openshift/internal/client/httpclient/request/package-use.html new file mode 100644 index 00000000..66b6d65a --- /dev/null +++ b/documentation/com/openshift/internal/client/httpclient/request/package-use.html @@ -0,0 +1,300 @@ + + + + + + + +Uses of Package com.openshift.internal.client.httpclient.request (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Package
com.openshift.internal.client.httpclient.request

+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+Packages that use com.openshift.internal.client.httpclient.request
com.openshift.client  
com.openshift.internal.client  
com.openshift.internal.client.httpclient  
com.openshift.internal.client.httpclient.request  
com.openshift.internal.client.response  
+  +

+ + + + + + + + + + + +
+Classes in com.openshift.internal.client.httpclient.request used by com.openshift.client
IMediaType + +
+          A media type that encodes and writes request parameters before they get sent by the client.
Parameter + +
+          A parameter wrapper to pass param key/values to the service when executing a + remote operation from a link.
+  +

+ + + + + + + + + + + +
+Classes in com.openshift.internal.client.httpclient.request used by com.openshift.internal.client
IMediaType + +
+          A media type that encodes and writes request parameters before they get sent by the client.
Parameter + +
+          A parameter wrapper to pass param key/values to the service when executing a + remote operation from a link.
+  +

+ + + + + + + + + + + + + + +
+Classes in com.openshift.internal.client.httpclient.request used by com.openshift.internal.client.httpclient
IMediaType + +
+          A media type that encodes and writes request parameters before they get sent by the client.
Parameter + +
+          A parameter wrapper to pass param key/values to the service when executing a + remote operation from a link.
ParameterValueMap + +
+           
+  +

+ + + + + + + + + + + + + + + + + + + + +
+Classes in com.openshift.internal.client.httpclient.request used by com.openshift.internal.client.httpclient.request
IMediaType + +
+          A media type that encodes and writes request parameters before they get sent by the client.
Parameter + +
+          A parameter wrapper to pass param key/values to the service when executing a + remote operation from a link.
ParameterValue + +
+           
ParameterValueArray + +
+           
ParameterValueMap + +
+           
+  +

+ + + + + + + + +
+Classes in com.openshift.internal.client.httpclient.request used by com.openshift.internal.client.response
Parameter + +
+          A parameter wrapper to pass param key/values to the service when executing a + remote operation from a link.
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/package-frame.html b/documentation/com/openshift/internal/client/package-frame.html new file mode 100644 index 00000000..3f80f08b --- /dev/null +++ b/documentation/com/openshift/internal/client/package-frame.html @@ -0,0 +1,89 @@ + + + + + + + +com.openshift.internal.client (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + +com.openshift.internal.client + + + + +
+Interfaces  + +
+IRestService
+ + + + + + +
+Classes  + +
+AbstractOpenShiftConnectionFactory +
+AbstractOpenShiftResource +
+AbstractOpenShiftResource.Parameters +
+APIResource +
+ApplicationResource +
+DomainResource +
+EmbeddedCartridgeResource +
+EnvironmentVariableResource +
+Field +
+Gear +
+GearGroupResource +
+GearProfile +
+RestService +
+RestServiceProperties +
+Severity +
+SSHKeyResource +
+UserResource
+ + + + + + +
+Enums  + +
+ApplicationResource.SshStreams +
+CartridgeType
+ + + + diff --git a/documentation/com/openshift/internal/client/package-summary.html b/documentation/com/openshift/internal/client/package-summary.html new file mode 100644 index 00000000..b1bac7a9 --- /dev/null +++ b/documentation/com/openshift/internal/client/package-summary.html @@ -0,0 +1,255 @@ + + + + + + + +com.openshift.internal.client (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+

+Package com.openshift.internal.client +

+ + + + + + + + + +
+Interface Summary
IRestServiceA rest service that executes request against the OpenShift server
+  + +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class Summary
AbstractOpenShiftConnectionFactoryConnection Factory, used to establish a connection and retrieve a user.
AbstractOpenShiftResourceThe Class AbstractOpenShiftResource.
AbstractOpenShiftResource.Parameters 
APIResource 
ApplicationResourceThe ApplicationResource object is an implementation of com.openshift.client.IApplication, and provides + a runtime model for the real application that resides on the OpenShift platform being accessed.
DomainResource 
EmbeddedCartridgeResourceA cartridge that is embedded into an application.
EnvironmentVariableResource 
Field 
GearA gear that a cartridge is running on.
GearGroupResource 
GearProfile 
RestService 
RestServiceProperties 
Severity 
SSHKeyResource 
UserResource 
+  + +

+ + + + + + + + + + + + + +
+Enum Summary
ApplicationResource.SshStreams 
CartridgeType 
+  + +

+

+
+
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/package-tree.html b/documentation/com/openshift/internal/client/package-tree.html new file mode 100644 index 00000000..b80a40d5 --- /dev/null +++ b/documentation/com/openshift/internal/client/package-tree.html @@ -0,0 +1,185 @@ + + + + + + + +com.openshift.internal.client Class Hierarchy (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Hierarchy For Package com.openshift.internal.client +

+
+
+
Package Hierarchies:
All Packages
+
+

+Class Hierarchy +

+ +

+Interface Hierarchy +

+ +

+Enum Hierarchy +

+ +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/package-use.html b/documentation/com/openshift/internal/client/package-use.html new file mode 100644 index 00000000..9f93dcfa --- /dev/null +++ b/documentation/com/openshift/internal/client/package-use.html @@ -0,0 +1,270 @@ + + + + + + + +Uses of Package com.openshift.internal.client (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Package
com.openshift.internal.client

+
+ + + + + + + + + + + + + + + + + +
+Packages that use com.openshift.internal.client
com.openshift.client  
com.openshift.internal.client  
com.openshift.internal.client.response  
+  +

+ + + + + + + + +
+Classes in com.openshift.internal.client used by com.openshift.client
AbstractOpenShiftConnectionFactory + +
+          Connection Factory, used to establish a connection and retrieve a user.
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Classes in com.openshift.internal.client used by com.openshift.internal.client
AbstractOpenShiftResource + +
+          The Class AbstractOpenShiftResource.
AbstractOpenShiftResource.Parameters + +
+           
APIResource + +
+           
ApplicationResource + +
+          The ApplicationResource object is an implementation of com.openshift.client.IApplication, and provides + a runtime model for the real application that resides on the OpenShift platform being accessed.
ApplicationResource.SshStreams + +
+           
CartridgeType + +
+           
DomainResource + +
+           
IRestService + +
+          A rest service that executes request against the OpenShift server
RestServiceProperties + +
+           
SSHKeyResource + +
+           
UserResource + +
+           
+  +

+ + + + + + + + +
+Classes in com.openshift.internal.client used by com.openshift.internal.client.response
CartridgeType + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/ApplicationResourceDTO.html b/documentation/com/openshift/internal/client/response/ApplicationResourceDTO.html new file mode 100644 index 00000000..5a30d3b3 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/ApplicationResourceDTO.html @@ -0,0 +1,510 @@ + + + + + + + +ApplicationResourceDTO (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.response +
+Class ApplicationResourceDTO

+
+java.lang.Object
+  extended by com.openshift.internal.client.response.BaseResourceDTO
+      extended by com.openshift.internal.client.response.ApplicationResourceDTO
+
+
+
+
public class ApplicationResourceDTO
extends BaseResourceDTO
+ + +

+The Class ApplicationDTO. +

+ +

+

+
Author:
+
Xavier Coulon
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ List<String>getAliases() + +
+           
+ ApplicationScalegetApplicationScale() + +
+           
+ StringgetApplicationUrl() + +
+           
+ Map<String,CartridgeResourceDTO>getCartridges() + +
+           
+ StringgetCreationTime() + +
+          Gets the creation time.
+ StringgetDomainId() + +
+          Gets the domain id.
+ StringgetFramework() + +
+          Gets the framework.
+ IGearProfilegetGearProfile() + +
+           
+ StringgetGitUrl() + +
+           
+ StringgetInitialGitUrl() + +
+           
+ StringgetName() + +
+          Gets the name.
+ StringgetSshUrl() + +
+           
+ StringgetUuid() + +
+          Gets the uuid.
+ StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.response.BaseResourceDTO
getLink, getLinks, getMessages
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Method Detail
+ +

+getFramework

+
+public final String getFramework()
+
+
Gets the framework. +

+

+ +
Returns:
the framework
+
+
+
+ +

+getDomainId

+
+public final String getDomainId()
+
+
Gets the domain id. +

+

+ +
Returns:
the domainId
+
+
+
+ +

+getCreationTime

+
+public final String getCreationTime()
+
+
Gets the creation time. +

+

+ +
Returns:
the creationTime
+
+
+
+ +

+getName

+
+public final String getName()
+
+
Gets the name. +

+

+ +
Returns:
the name
+
+
+
+ +

+getApplicationScale

+
+public final ApplicationScale getApplicationScale()
+
+
+ +
Returns:
the scalable
+
+
+
+ +

+getGearProfile

+
+public final IGearProfile getGearProfile()
+
+
+ +
Returns:
the gearProfile
+
+
+
+ +

+getUuid

+
+public final String getUuid()
+
+
Gets the uuid. +

+

+ +
Returns:
the uuid
+
+
+
+ +

+getApplicationUrl

+
+public final String getApplicationUrl()
+
+
+ +
Returns:
the url at which this application may be reached
+
+
+
+ +

+getSshUrl

+
+public String getSshUrl()
+
+
+ +
Returns:
the url to use to connect with ssh
+
+
+
+ +

+getGitUrl

+
+public final String getGitUrl()
+
+
+ +
Returns:
the url at which this applications git repo may be reached at
+
+
+
+ +

+getInitialGitUrl

+
+public final String getInitialGitUrl()
+
+
+ +
Returns:
the initial git repo url for the initial code of this application
+
+
+
+ +

+getAliases

+
+public List<String> getAliases()
+
+
+ +
Returns:
the aliases
+
+
+
+ +

+getCartridges

+
+public Map<String,CartridgeResourceDTO> getCartridges()
+
+
+
+
+
+
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/BaseResourceDTO.html b/documentation/com/openshift/internal/client/response/BaseResourceDTO.html new file mode 100644 index 00000000..1c6beed5 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/BaseResourceDTO.html @@ -0,0 +1,335 @@ + + + + + + + +BaseResourceDTO (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.response +
+Class BaseResourceDTO

+
+java.lang.Object
+  extended by com.openshift.internal.client.response.BaseResourceDTO
+
+
+
Type Parameters:
T - the generic type
+
+
Direct Known Subclasses:
ApplicationResourceDTO, CartridgeResourceDTO, DomainResourceDTO, EnvironmentVariableResourceDTO, GearGroupResourceDTO, GearResourceDTO, KeyResourceDTO, UserResourceDTO
+
+
+
+
public abstract class BaseResourceDTO
extends Object
+ + +

+The Class BaseResourceDTO. +

+ +

+


+ +

+ + + + + + + + + + + + + + + + +
+Constructor Summary
+protected BaseResourceDTO() + +
+           
+protected BaseResourceDTO(Map<String,Link> links, + Messages messages) + +
+          Instantiates a new base resource dto.
+  + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ LinkgetLink(String name) + +
+          Gets the link.
+ Map<String,Link>getLinks() + +
+          Gets the links.
+ MessagesgetMessages() + +
+          Returns the messages that were reported when this resource was created.
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+BaseResourceDTO

+
+protected BaseResourceDTO()
+
+
+
+ +

+BaseResourceDTO

+
+protected BaseResourceDTO(Map<String,Link> links,
+                          Messages messages)
+
+
Instantiates a new base resource dto. +

+

+
Parameters:
links - the links
+
+ + + + + + + + +
+Method Detail
+ +

+getLinks

+
+public final Map<String,Link> getLinks()
+
+
Gets the links. +

+

+ +
Returns:
all the links
+
+
+
+ +

+getLink

+
+public final Link getLink(String name)
+
+
Gets the link. +

+

+
Parameters:
name - the name of the link to look for. +
Returns:
the named link
+
+
+
+ +

+getMessages

+
+public Messages getMessages()
+
+
Returns the messages that were reported when this resource was created. + May be null if retrieved in a session in which we did not + create this resource. +

+

+ +
Returns:
the messages that were reported when this resource was created
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/CartridgeResourceDTO.html b/documentation/com/openshift/internal/client/response/CartridgeResourceDTO.html new file mode 100644 index 00000000..d7be432c --- /dev/null +++ b/documentation/com/openshift/internal/client/response/CartridgeResourceDTO.html @@ -0,0 +1,420 @@ + + + + + + + +CartridgeResourceDTO (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.response +
+Class CartridgeResourceDTO

+
+java.lang.Object
+  extended by com.openshift.internal.client.response.BaseResourceDTO
+      extended by com.openshift.internal.client.response.CartridgeResourceDTO
+
+
+
+
public class CartridgeResourceDTO
extends BaseResourceDTO
+ + +

+

+
Author:
+
Xavier Coulon, Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + + +
+Constructor Summary
+protected CartridgeResourceDTO(String name, + CartridgeType type, + CartridgeResourceProperties properties) + +
+           
+protected CartridgeResourceDTO(String name, + String displayName, + String description, + String type, + URL url, + CartridgeResourceProperties properties, + Map<String,Link> links, + Messages messages) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ StringgetDescription() + +
+           
+ StringgetDisplayName() + +
+           
+ StringgetName() + +
+           
+ CartridgeResourcePropertiesgetProperties() + +
+           
+ CartridgeTypegetType() + +
+           
+ URLgetUrl() + +
+           
+ StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.response.BaseResourceDTO
getLink, getLinks, getMessages
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+CartridgeResourceDTO

+
+protected CartridgeResourceDTO(String name,
+                               CartridgeType type,
+                               CartridgeResourceProperties properties)
+
+
+
+ +

+CartridgeResourceDTO

+
+protected CartridgeResourceDTO(String name,
+                               String displayName,
+                               String description,
+                               String type,
+                               URL url,
+                               CartridgeResourceProperties properties,
+                               Map<String,Link> links,
+                               Messages messages)
+
+
+ + + + + + + + +
+Method Detail
+ +

+getName

+
+public String getName()
+
+
+
+
+
+
+ +

+getDisplayName

+
+public String getDisplayName()
+
+
+
+
+
+
+ +

+getDescription

+
+public String getDescription()
+
+
+
+
+
+
+ +

+getType

+
+public CartridgeType getType()
+
+
+
+
+
+
+ +

+getUrl

+
+public URL getUrl()
+
+
+
+
+
+
+ +

+getProperties

+
+public CartridgeResourceProperties getProperties()
+
+
+
+
+
+
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/CartridgeResourceProperties.html b/documentation/com/openshift/internal/client/response/CartridgeResourceProperties.html new file mode 100644 index 00000000..9ab084a9 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/CartridgeResourceProperties.html @@ -0,0 +1,469 @@ + + + + + + + +CartridgeResourceProperties (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.response +
+Class CartridgeResourceProperties

+
+java.lang.Object
+  extended by com.openshift.internal.client.response.CartridgeResourceProperties
+
+
+
+
public class CartridgeResourceProperties
extends Object
+ + +

+Properties that hold informations available in cartridges +

+ +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Field Summary
+static StringCONNECTION_URL + +
+           
+static StringDATABASE_NAME + +
+           
+static StringJOB_URL + +
+           
+static StringPASSWORD + +
+           
+static StringUSERNAME + +
+           
+  + + + + + + + + + + +
+Constructor Summary
CartridgeResourceProperties() + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ voidadd(String name, + CartridgeResourceProperty property) + +
+           
+ List<CartridgeResourceProperty>getAll() + +
+           
+ CartridgeResourcePropertygetProperty(String name) + +
+           
+ StringgetPropertyValue(String name) + +
+           
+ intsize() + +
+           
+ StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Field Detail
+ +

+CONNECTION_URL

+
+public static final String CONNECTION_URL
+
+
+
See Also:
Constant Field Values
+
+
+ +

+JOB_URL

+
+public static final String JOB_URL
+
+
+
See Also:
Constant Field Values
+
+
+ +

+USERNAME

+
+public static final String USERNAME
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PASSWORD

+
+public static final String PASSWORD
+
+
+
See Also:
Constant Field Values
+
+
+ +

+DATABASE_NAME

+
+public static final String DATABASE_NAME
+
+
+
See Also:
Constant Field Values
+
+ + + + + + + + +
+Constructor Detail
+ +

+CartridgeResourceProperties

+
+public CartridgeResourceProperties()
+
+
+ + + + + + + + +
+Method Detail
+ +

+getPropertyValue

+
+public String getPropertyValue(String name)
+
+
+
+
+
+
+ +

+add

+
+public void add(String name,
+                CartridgeResourceProperty property)
+
+
+
+
+
+
+ +

+getProperty

+
+public CartridgeResourceProperty getProperty(String name)
+
+
+
+
+
+
+ +

+getAll

+
+public List<CartridgeResourceProperty> getAll()
+
+
+
+
+
+
+ +

+size

+
+public int size()
+
+
+
+
+
+
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/CartridgeResourceProperty.html b/documentation/com/openshift/internal/client/response/CartridgeResourceProperty.html new file mode 100644 index 00000000..a16d7ab8 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/CartridgeResourceProperty.html @@ -0,0 +1,391 @@ + + + + + + + +CartridgeResourceProperty (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.response +
+Class CartridgeResourceProperty

+
+java.lang.Object
+  extended by com.openshift.internal.client.response.CartridgeResourceProperty
+
+
+
+
public class CartridgeResourceProperty
extends Object
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + + +
+Constructor Summary
+protected CartridgeResourceProperty(String name, + String value) + +
+          Constructor called when embedded cartridges are listed within an + application.
+protected CartridgeResourceProperty(String name, + String type, + String description, + String value) + +
+          Constructor called when embedded cartridges are listed on their own (when + /cartridges resource is queried.
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ StringgetDescription() + +
+           
+ StringgetName() + +
+           
+ StringgetType() + +
+           
+ StringgetValue() + +
+           
+ StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+CartridgeResourceProperty

+
+protected CartridgeResourceProperty(String name,
+                                    String value)
+
+
Constructor called when embedded cartridges are listed within an + application. +

+ ex. +

+ "metrics-0.1":{
+          "connection_url":"https://eap6-foobarz.rhcloud.com/metrics/",
+          "info":"Connection URL: https://eap6-foobarz.rhcloud.com/metrics/"
+ }
+ 
+ 
+

+

+
+ +

+CartridgeResourceProperty

+
+protected CartridgeResourceProperty(String name,
+                                    String type,
+                                    String description,
+                                    String value)
+
+
Constructor called when embedded cartridges are listed on their own (when + /cartridges resource is queried. +

+ ex. + +

+ "properties":[
+  {
+          "name":"connection_url",
+          "type":"cart_data",
+          "description":"Application metrics URL",
+          "value":"https://eap6-foobarz.rhcloud.com/metrics/"
+ }
+ 
+

+

+ + + + + + + + +
+Method Detail
+ +

+getName

+
+public String getName()
+
+
+
+
+
+
+ +

+getType

+
+public String getType()
+
+
+
+
+
+
+ +

+getDescription

+
+public String getDescription()
+
+
+
+
+
+
+ +

+getValue

+
+public String getValue()
+
+
+
+
+
+
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/DomainResourceDTO.html b/documentation/com/openshift/internal/client/response/DomainResourceDTO.html new file mode 100644 index 00000000..e234c5bb --- /dev/null +++ b/documentation/com/openshift/internal/client/response/DomainResourceDTO.html @@ -0,0 +1,254 @@ + + + + + + + +DomainResourceDTO (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.response +
+Class DomainResourceDTO

+
+java.lang.Object
+  extended by com.openshift.internal.client.response.BaseResourceDTO
+      extended by com.openshift.internal.client.response.DomainResourceDTO
+
+
+
+
public class DomainResourceDTO
extends BaseResourceDTO
+ + +

+

+
Author:
+
Xavier Coulon
+
+
+ +

+ + + + + + + + + + + + + + + + +
+Method Summary
+ StringgetId() + +
+           
+ StringgetSuffix() + +
+           
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.response.BaseResourceDTO
getLink, getLinks, getMessages
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Method Detail
+ +

+getId

+
+public final String getId()
+
+
+ +
Returns:
the id
+
+
+
+ +

+getSuffix

+
+public String getSuffix()
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/EnumDataType.html b/documentation/com/openshift/internal/client/response/EnumDataType.html new file mode 100644 index 00000000..2a0411ba --- /dev/null +++ b/documentation/com/openshift/internal/client/response/EnumDataType.html @@ -0,0 +1,535 @@ + + + + + + + +EnumDataType (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.response +
+Enum EnumDataType

+
+java.lang.Object
+  extended by java.lang.Enum<EnumDataType>
+      extended by com.openshift.internal.client.response.EnumDataType
+
+
+
All Implemented Interfaces:
Serializable, Comparable<EnumDataType>
+
+
+
+
public enum EnumDataType
extends Enum<EnumDataType>
+ + +

+The Enum EnumDataType. +

+ +

+


+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Enum Constant Summary
application + +
+           
applications + +
+           
cartridge + +
+          The standalone cartridge type.
cartridges + +
+          The standalone cartridges type.
domain + +
+           
domains + +
+           
embedded + +
+          The embedded cartridge type.
environment_variable + +
+          The environmetn-variable type
environment_variables + +
+          The environment-variables type
gear_groups + +
+           
key + +
+          one user's key.
keys + +
+          the user's keys.
links + +
+          Links / the root node that allows for navigation amongst resources.
user + +
+           
+  + + + + + + + + + + + + + + + +
+Method Summary
+static EnumDataTypevalueOf(String name) + +
+          Returns the enum constant of this type with the specified name.
+static EnumDataType[]values() + +
+          Returns an array containing the constants of this enum type, in +the order they are declared.
+ + + + + + + +
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
+ + + + + + + +
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Enum Constant Detail
+ +

+links

+
+public static final EnumDataType links
+
+
Links / the root node that allows for navigation amongst resources. +

+

+
+
+
+ +

+user

+
+public static final EnumDataType user
+
+
+
+
+
+ +

+keys

+
+public static final EnumDataType keys
+
+
the user's keys. +

+

+
+
+
+ +

+key

+
+public static final EnumDataType key
+
+
one user's key. +

+

+
+
+
+ +

+domains

+
+public static final EnumDataType domains
+
+
+
+
+
+ +

+domain

+
+public static final EnumDataType domain
+
+
+
+
+
+ +

+applications

+
+public static final EnumDataType applications
+
+
+
+
+
+ +

+application

+
+public static final EnumDataType application
+
+
+
+
+
+ +

+embedded

+
+public static final EnumDataType embedded
+
+
The embedded cartridge type. +

+

+
+
+
+ +

+gear_groups

+
+public static final EnumDataType gear_groups
+
+
+
+
+
+ +

+cartridges

+
+public static final EnumDataType cartridges
+
+
The standalone cartridges type. +

+

+
+
+
+ +

+cartridge

+
+public static final EnumDataType cartridge
+
+
The standalone cartridge type. +

+

+
+
+
+ +

+environment_variables

+
+public static final EnumDataType environment_variables
+
+
The environment-variables type +

+

+
+
+
+ +

+environment_variable

+
+public static final EnumDataType environment_variable
+
+
The environmetn-variable type +

+

+
+
+ + + + + + + + +
+Method Detail
+ +

+values

+
+public static EnumDataType[] values()
+
+
Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
+for (EnumDataType c : EnumDataType.values())
+    System.out.println(c);
+
+

+

+ +
Returns:
an array containing the constants of this enum type, in +the order they are declared
+
+
+
+ +

+valueOf

+
+public static EnumDataType valueOf(String name)
+
+
Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.) +

+

+
Parameters:
name - the name of the enum constant to be returned. +
Returns:
the enum constant with the specified name +
Throws: +
IllegalArgumentException - if this enum type has no constant +with the specified name +
NullPointerException - if the argument is null
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/EnvironmentVariableResourceDTO.html b/documentation/com/openshift/internal/client/response/EnvironmentVariableResourceDTO.html new file mode 100644 index 00000000..f0fb8021 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/EnvironmentVariableResourceDTO.html @@ -0,0 +1,306 @@ + + + + + + + +EnvironmentVariableResourceDTO (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.response +
+Class EnvironmentVariableResourceDTO

+
+java.lang.Object
+  extended by com.openshift.internal.client.response.BaseResourceDTO
+      extended by com.openshift.internal.client.response.EnvironmentVariableResourceDTO
+
+
+
+
public class EnvironmentVariableResourceDTO
extends BaseResourceDTO
+ + +

+The DTO for an environment variable +

+ +

+

+
Author:
+
Syed Iqbal
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
EnvironmentVariableResourceDTO(String name, + String value, + Map<String,Link> links, + Messages messages) + +
+          Instantiates a new environment variable resource dto.
+  + + + + + + + + + + + + + + + +
+Method Summary
+ StringgetName() + +
+          Returns the name of this environment variable
+ StringgetValue() + +
+          Returns the value of this gear group.
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.response.BaseResourceDTO
getLink, getLinks, getMessages
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+EnvironmentVariableResourceDTO

+
+public EnvironmentVariableResourceDTO(String name,
+                                      String value,
+                                      Map<String,Link> links,
+                                      Messages messages)
+
+
Instantiates a new environment variable resource dto. +

+

+
Parameters:
name - the name
value - the value
+
+ + + + + + + + +
+Method Detail
+ +

+getName

+
+public final String getName()
+
+
Returns the name of this environment variable +

+

+ +
Returns:
the name
+
+
+
+ +

+getValue

+
+public final String getValue()
+
+
Returns the value of this gear group. +

+

+ +
Returns:
the value
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/GearGroupResourceDTO.html b/documentation/com/openshift/internal/client/response/GearGroupResourceDTO.html new file mode 100644 index 00000000..c9198110 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/GearGroupResourceDTO.html @@ -0,0 +1,329 @@ + + + + + + + +GearGroupResourceDTO (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.response +
+Class GearGroupResourceDTO

+
+java.lang.Object
+  extended by com.openshift.internal.client.response.BaseResourceDTO
+      extended by com.openshift.internal.client.response.GearGroupResourceDTO
+
+
+
+
public class GearGroupResourceDTO
extends BaseResourceDTO
+ + +

+The DTO for a gear groups +

+ +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ CartridgeResourceDTOgetCartridge(String name) + +
+          Returns the cartridge identified by the given name.
+ Map<String,CartridgeResourceDTO>getCartridges() + +
+          Returns the cartridges within this gear group.
+ Collection<GearResourceDTO>getGears() + +
+          Returns the gears within this gear group.
+ StringgetName() + +
+          Returns the name of this gear group
+ StringgetUuid() + +
+          Returns the uuid of this gear group.
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.response.BaseResourceDTO
getLink, getLinks, getMessages
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Method Detail
+ +

+getName

+
+public final String getName()
+
+
Returns the name of this gear group +

+

+ +
Returns:
the name
+
+
+
+ +

+getUuid

+
+public final String getUuid()
+
+
Returns the uuid of this gear group. +

+

+ +
Returns:
the uuid
+
+
+
+ +

+getGears

+
+public final Collection<GearResourceDTO> getGears()
+
+
Returns the gears within this gear group. +

+

+ +
Returns:
the gears
+
+
+
+ +

+getCartridges

+
+public Map<String,CartridgeResourceDTO> getCartridges()
+
+
Returns the cartridges within this gear group. +

+

+ +
Returns:
the cartridges
+
+
+
+ +

+getCartridge

+
+public CartridgeResourceDTO getCartridge(String name)
+
+
Returns the cartridge identified by the given name. +

+

+ +
Returns:
the cartridge or null if none exists in this group
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/GearResourceDTO.html b/documentation/com/openshift/internal/client/response/GearResourceDTO.html new file mode 100644 index 00000000..dfad7491 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/GearResourceDTO.html @@ -0,0 +1,299 @@ + + + + + + + +GearResourceDTO (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.response +
+Class GearResourceDTO

+
+java.lang.Object
+  extended by com.openshift.internal.client.response.BaseResourceDTO
+      extended by com.openshift.internal.client.response.GearResourceDTO
+
+
+
+
public class GearResourceDTO
extends BaseResourceDTO
+ + +

+The Class ApplicationDTO. +

+ +

+

+
Author:
+
Xavier Coulon
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ StringgetSshUrl() + +
+           
+ StringgetState() + +
+           
+ StringgetUuid() + +
+           
+ StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.response.BaseResourceDTO
getLink, getLinks, getMessages
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Method Detail
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class Object
+
+
+
+
+
+
+ +

+getUuid

+
+public String getUuid()
+
+
+
+
+
+
+ +

+getState

+
+public String getState()
+
+
+
+
+
+
+ +

+getSshUrl

+
+public String getSshUrl()
+
+
+ +
Returns:
the sshUrl
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/IRestResponseFactory.html b/documentation/com/openshift/internal/client/response/IRestResponseFactory.html new file mode 100644 index 00000000..a2b50ee3 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/IRestResponseFactory.html @@ -0,0 +1,216 @@ + + + + + + + +IRestResponseFactory (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.response +
+Interface IRestResponseFactory

+
+
All Known Implementing Classes:
OpenShiftJsonDTOFactory
+
+
+
+
public interface IRestResponseFactory
+ + +

+


+ +

+ + + + + + + + + + + + +
+Method Summary
+ RestResponseget(String restResponse) + +
+          Returns a RestResponse instance for a given rest response string.
+  +

+ + + + + + + + +
+Method Detail
+ +

+get

+
+RestResponse get(String restResponse)
+                 throws OpenShiftException
+
+
Returns a RestResponse instance for a given rest response string. +

+

+
Parameters:
rest - response string +
Returns:
RestResponse instance +
Throws: +
OpenShiftException
See Also:
RestResponse
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/KeyResourceDTO.html b/documentation/com/openshift/internal/client/response/KeyResourceDTO.html new file mode 100644 index 00000000..c650916f --- /dev/null +++ b/documentation/com/openshift/internal/client/response/KeyResourceDTO.html @@ -0,0 +1,303 @@ + + + + + + + +KeyResourceDTO (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.response +
+Class KeyResourceDTO

+
+java.lang.Object
+  extended by com.openshift.internal.client.response.BaseResourceDTO
+      extended by com.openshift.internal.client.response.KeyResourceDTO
+
+
+
+
public class KeyResourceDTO
extends BaseResourceDTO
+ + +

+The Class KeyResourceDTO. +

+ +

+


+ +

+ + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ StringgetContent() + +
+          Returns the public key content.
+ StringgetName() + +
+          Returns the name.
+ StringgetType() + +
+          Returns the type.
+ StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.response.BaseResourceDTO
getLink, getLinks, getMessages
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Method Detail
+ +

+getName

+
+public final String getName()
+
+
Returns the name. +

+

+ +
Returns:
the name
+
+
+
+ +

+getType

+
+public final String getType()
+
+
Returns the type. +

+

+ +
Returns:
the type
+
+
+
+ +

+getContent

+
+public final String getContent()
+
+
Returns the public key content. +

+

+ +
Returns:
the public key content
+
+
+
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/Link.html b/documentation/com/openshift/internal/client/response/Link.html new file mode 100644 index 00000000..9f7286f6 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/Link.html @@ -0,0 +1,537 @@ + + + + + + + +Link (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.response +
+Class Link

+
+java.lang.Object
+  extended by com.openshift.internal.client.response.Link
+
+
+
+
public class Link
extends Object
+ + +

+The Class Link. +

+ +

+

+
Author:
+
Xavier Coulon
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + +
+Constructor Summary
+ Link(String href, + HttpMethod httpMethod) + +
+           
+ Link(String rel, + String href, + HttpMethod httpMethod) + +
+           
+protected Link(String rel, + String href, + HttpMethod httpMethod, + List<LinkParameter> requiredParams, + List<LinkParameter> optionalParams) + +
+          Instantiates a new Link object.
+protected Link(String rel, + String href, + String httpMethod, + List<LinkParameter> requiredParams, + List<LinkParameter> optionalParams) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ StringgetHref() + +
+          Gets the url/href this link points to.
+ StringgetHref(String server, + String servicePath, + List<Parameter> urlParameters) + +
+           
+ StringgetHref(String server, + String servicePath, + Parameter... urlParameters) + +
+           
+ HttpMethodgetHttpMethod() + +
+          Gets the http method this link operates on.
+ List<LinkParameter>getOptionalParams() + +
+          Gets the optional params.
+ StringgetRel() + +
+          Gets the related resource (destination) this link points to.
+ List<LinkParameter>getRequiredParams() + +
+          Gets the required params.
+ booleanhasParameter(String name) + +
+           
+ StringtoString() + +
+           
+ voidvalidateRequestParameters(Parameter[] parameters) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+Link

+
+public Link(String href,
+            HttpMethod httpMethod)
+
+
+
+ +

+Link

+
+public Link(String rel,
+            String href,
+            HttpMethod httpMethod)
+
+
+
+ +

+Link

+
+protected Link(String rel,
+               String href,
+               String httpMethod,
+               List<LinkParameter> requiredParams,
+               List<LinkParameter> optionalParams)
+
+
+
+ +

+Link

+
+protected Link(String rel,
+               String href,
+               HttpMethod httpMethod,
+               List<LinkParameter> requiredParams,
+               List<LinkParameter> optionalParams)
+
+
Instantiates a new Link object. +

+

+
Parameters:
rel - the related resource this link points to
href - the href the url/href this link points to
httpMethod - the http method that this link operates on
requiredParams - the required params
optionalParams - the optional params
+
+ + + + + + + + +
+Method Detail
+ +

+getRel

+
+public final String getRel()
+
+
Gets the related resource (destination) this link points to. +

+

+ +
Returns:
the rel
+
+
+
+ +

+getHref

+
+public final String getHref()
+
+
Gets the url/href this link points to. +

+

+ +
Returns:
the href
+
+
+
+ +

+getHref

+
+public final String getHref(String server,
+                            String servicePath,
+                            Parameter... urlParameters)
+
+
+
+
+
+
+ +

+getHref

+
+public final String getHref(String server,
+                            String servicePath,
+                            List<Parameter> urlParameters)
+
+
+
+
+
+
+ +

+getHttpMethod

+
+public final HttpMethod getHttpMethod()
+
+
Gets the http method this link operates on. +

+

+ +
Returns:
the httpMethod
+
+
+
+ +

+getRequiredParams

+
+public final List<LinkParameter> getRequiredParams()
+
+
Gets the required params. +

+

+ +
Returns:
the requiredParams
+
+
+
+ +

+getOptionalParams

+
+public final List<LinkParameter> getOptionalParams()
+
+
Gets the optional params. +

+

+ +
Returns:
the optionalParams
+
+
+
+ +

+hasParameter

+
+public boolean hasParameter(String name)
+
+
+
+
+
+
+ +

+validateRequestParameters

+
+public void validateRequestParameters(Parameter[] parameters)
+                               throws OpenShiftRequestException
+
+
+ +
Throws: +
OpenShiftRequestException
+
+
+
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/LinkParameter.html b/documentation/com/openshift/internal/client/response/LinkParameter.html new file mode 100644 index 00000000..1dab9804 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/LinkParameter.html @@ -0,0 +1,489 @@ + + + + + + + +LinkParameter (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.response +
+Class LinkParameter

+
+java.lang.Object
+  extended by com.openshift.internal.client.response.LinkParameter
+
+
+
+
public class LinkParameter
extends Object
+ + +

+

+
Author:
+
Xavier Coulon, Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Field Summary
+protected  StringdefaultValue + +
+           
+protected  Stringdescription + +
+           
+protected  Stringname + +
+           
+protected  LinkParameterTypetype + +
+           
+protected  List<String>validOptions + +
+           
+  + + + + + + + + + + + + + + + +
+Constructor Summary
+protected LinkParameter(String name, + LinkParameterType type, + String defaultValue, + String description, + List<String> validOptions) + +
+           
+protected LinkParameter(String name, + String type, + String defaultValue, + String description, + List<String> validOptions) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ StringgetDefaultValue() + +
+           
+ StringgetDescription() + +
+           
+ StringgetName() + +
+           
+ LinkParameterTypegetType() + +
+           
+ List<String>getValidOptions() + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Field Detail
+ +

+name

+
+protected final String name
+
+
+
+
+
+ +

+type

+
+protected final LinkParameterType type
+
+
+
+
+
+ +

+description

+
+protected final String description
+
+
+
+
+
+ +

+defaultValue

+
+protected final String defaultValue
+
+
+
+
+
+ +

+validOptions

+
+protected final List<String> validOptions
+
+
+
+
+ + + + + + + + +
+Constructor Detail
+ +

+LinkParameter

+
+protected LinkParameter(String name,
+                        String type,
+                        String defaultValue,
+                        String description,
+                        List<String> validOptions)
+                 throws OpenShiftRequestException
+
+
+ +
Throws: +
OpenShiftRequestException
+
+
+ +

+LinkParameter

+
+protected LinkParameter(String name,
+                        LinkParameterType type,
+                        String defaultValue,
+                        String description,
+                        List<String> validOptions)
+                 throws OpenShiftRequestException
+
+
+ +
Throws: +
OpenShiftRequestException
+
+ + + + + + + + +
+Method Detail
+ +

+getName

+
+public final String getName()
+
+
+ +
Returns:
the name
+
+
+
+ +

+getType

+
+public final LinkParameterType getType()
+
+
+ +
Returns:
the type
+
+
+
+ +

+getDescription

+
+public final String getDescription()
+
+
+ +
Returns:
the description
+
+
+
+ +

+getDefaultValue

+
+public String getDefaultValue()
+
+
+ +
Returns:
the defaultValue, or null. Only applicable to optional parameters.
+
+
+
+ +

+getValidOptions

+
+public List<String> getValidOptions()
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/LinkParameterType.html b/documentation/com/openshift/internal/client/response/LinkParameterType.html new file mode 100644 index 00000000..dca721e6 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/LinkParameterType.html @@ -0,0 +1,372 @@ + + + + + + + +LinkParameterType (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.response +
+Class LinkParameterType

+
+java.lang.Object
+  extended by com.openshift.internal.client.response.LinkParameterType
+
+
+
+
public class LinkParameterType
extends Object
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + +
+Field Summary
+static LinkParameterTypeARRAY + +
+           
+static LinkParameterTypeBOOLEAN + +
+           
+static LinkParameterTypeINTEGER + +
+           
+static LinkParameterTypeSTRING + +
+           
+  + + + + + + + + + + +
+Constructor Summary
LinkParameterType(String type) + +
+           
+  + + + + + + + + + + + + + + + +
+Method Summary
+ booleanequals(Object obj) + +
+           
+ inthashCode() + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Field Detail
+ +

+STRING

+
+public static final LinkParameterType STRING
+
+
+
+
+
+ +

+BOOLEAN

+
+public static final LinkParameterType BOOLEAN
+
+
+
+
+
+ +

+INTEGER

+
+public static final LinkParameterType INTEGER
+
+
+
+
+
+ +

+ARRAY

+
+public static final LinkParameterType ARRAY
+
+
+
+
+ + + + + + + + +
+Constructor Detail
+ +

+LinkParameterType

+
+public LinkParameterType(String type)
+
+
+ + + + + + + + +
+Method Detail
+ +

+hashCode

+
+public int hashCode()
+
+
+
Overrides:
hashCode in class Object
+
+
+
+
+
+
+ +

+equals

+
+public boolean equals(Object obj)
+
+
+
Overrides:
equals in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/OpenShiftJsonDTOFactory.html b/documentation/com/openshift/internal/client/response/OpenShiftJsonDTOFactory.html new file mode 100644 index 00000000..47a359ed --- /dev/null +++ b/documentation/com/openshift/internal/client/response/OpenShiftJsonDTOFactory.html @@ -0,0 +1,274 @@ + + + + + + + +OpenShiftJsonDTOFactory (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.response +
+Class OpenShiftJsonDTOFactory

+
+java.lang.Object
+  extended by com.openshift.internal.client.response.OpenShiftJsonDTOFactory
+
+
+
All Implemented Interfaces:
IRestResponseFactory
+
+
+
+
public class OpenShiftJsonDTOFactory
extends Object
implements IRestResponseFactory
+ + +

+A factory for creating DTO objects. +

+ +

+

+
Author:
+
Xavier Coulon, Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
OpenShiftJsonDTOFactory() + +
+           
+  + + + + + + + + + + + +
+Method Summary
+ RestResponseget(String json) + +
+          Returns a RestResponse instance for a given rest response string.
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+OpenShiftJsonDTOFactory

+
+public OpenShiftJsonDTOFactory()
+
+
+ + + + + + + + +
+Method Detail
+ +

+get

+
+public RestResponse get(String json)
+                 throws OpenShiftException
+
+
Description copied from interface: IRestResponseFactory
+
Returns a RestResponse instance for a given rest response string. +

+

+
Specified by:
get in interface IRestResponseFactory
+
+
+ +
Returns:
RestResponse instance +
Throws: +
OpenShiftException
See Also:
RestResponse
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/RestResponse.html b/documentation/com/openshift/internal/client/response/RestResponse.html new file mode 100644 index 00000000..9aaf259e --- /dev/null +++ b/documentation/com/openshift/internal/client/response/RestResponse.html @@ -0,0 +1,346 @@ + + + + + + + +RestResponse (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.response +
+Class RestResponse

+
+java.lang.Object
+  extended by com.openshift.internal.client.response.RestResponse
+
+
+
+
public class RestResponse
extends Object
+ + +

+The Class Response. +

+ +

+


+ +

+ + + + + + + + + + + + +
+Constructor Summary
+protected RestResponse(String status, + Messages messages, + Object data, + EnumDataType dataType) + +
+          Instantiates a new response.
+  + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ + + + + +
+<T> T
+
getData() + +
+          Gets the data.
+ EnumDataTypegetDataType() + +
+          Gets the data type.
+ MessagesgetMessages() + +
+          Gets the messages.
+ StringgetStatus() + +
+          Gets the status.
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+RestResponse

+
+protected RestResponse(String status,
+                       Messages messages,
+                       Object data,
+                       EnumDataType dataType)
+
+
Instantiates a new response. +

+

+
Parameters:
status - the status
messages - the messages
data - the data
dataType - the data type
+
+ + + + + + + + +
+Method Detail
+ +

+getStatus

+
+public final String getStatus()
+
+
Gets the status. +

+

+ +
Returns:
the status
+
+
+
+ +

+getMessages

+
+public final Messages getMessages()
+
+
Gets the messages. +

+

+ +
Returns:
the messages
+
+
+
+ +

+getDataType

+
+public final EnumDataType getDataType()
+
+
Gets the data type. +

+

+ +
Returns:
the dataType
+
+
+
+ +

+getData

+
+public final <T> T getData()
+
+
Gets the data. +

+

+
Type Parameters:
T - the generic type +
Returns:
the data, casted as the caller requires. To avoid ClassCastExceptions, caller may refer to the + getDataType() method to discover the actual type of the data.
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/UserResourceDTO.html b/documentation/com/openshift/internal/client/response/UserResourceDTO.html new file mode 100644 index 00000000..f43d82c4 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/UserResourceDTO.html @@ -0,0 +1,271 @@ + + + + + + + +UserResourceDTO (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.response +
+Class UserResourceDTO

+
+java.lang.Object
+  extended by com.openshift.internal.client.response.BaseResourceDTO
+      extended by com.openshift.internal.client.response.UserResourceDTO
+
+
+
+
public class UserResourceDTO
extends BaseResourceDTO
+ + +

+


+ +

+ + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ intgetConsumedGears() + +
+           
+ intgetMaxGears() + +
+           
+ StringgetRhLogin() + +
+           
+ + + + + + + +
Methods inherited from class com.openshift.internal.client.response.BaseResourceDTO
getLink, getLinks, getMessages
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Method Detail
+ +

+getRhLogin

+
+public String getRhLogin()
+
+
+ +
Returns:
the rhLogin
+
+
+
+ +

+getMaxGears

+
+public int getMaxGears()
+
+
+ +
Returns:
the maxGears
+
+
+
+ +

+getConsumedGears

+
+public int getConsumedGears()
+
+
+ +
Returns:
the consumedGears
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/class-use/ApplicationResourceDTO.html b/documentation/com/openshift/internal/client/response/class-use/ApplicationResourceDTO.html new file mode 100644 index 00000000..17046092 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/class-use/ApplicationResourceDTO.html @@ -0,0 +1,196 @@ + + + + + + + +Uses of Class com.openshift.internal.client.response.ApplicationResourceDTO (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.response.ApplicationResourceDTO

+
+ + + + + + + + + +
+Packages that use ApplicationResourceDTO
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of ApplicationResourceDTO in com.openshift.internal.client
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client with parameters of type ApplicationResourceDTO
+protected  voidApplicationResource.update(ApplicationResourceDTO dto) + +
+           
+  +

+ + + + + + + + +
Constructors in com.openshift.internal.client with parameters of type ApplicationResourceDTO
ApplicationResource(ApplicationResourceDTO dto, + DomainResource domain) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/class-use/BaseResourceDTO.html b/documentation/com/openshift/internal/client/response/class-use/BaseResourceDTO.html new file mode 100644 index 00000000..aadde340 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/class-use/BaseResourceDTO.html @@ -0,0 +1,237 @@ + + + + + + + +Uses of Class com.openshift.internal.client.response.BaseResourceDTO (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.response.BaseResourceDTO

+
+ + + + + + + + + +
+Packages that use BaseResourceDTO
com.openshift.internal.client.response  
+  +

+ + + + + +
+Uses of BaseResourceDTO in com.openshift.internal.client.response
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Subclasses of BaseResourceDTO in com.openshift.internal.client.response
+ classApplicationResourceDTO + +
+          The Class ApplicationDTO.
+ classCartridgeResourceDTO + +
+           
+ classDomainResourceDTO + +
+           
+ classEnvironmentVariableResourceDTO + +
+          The DTO for an environment variable
+ classGearGroupResourceDTO + +
+          The DTO for a gear groups
+ classGearResourceDTO + +
+          The Class ApplicationDTO.
+ classKeyResourceDTO + +
+          The Class KeyResourceDTO.
+ classUserResourceDTO + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/class-use/CartridgeResourceDTO.html b/documentation/com/openshift/internal/client/response/class-use/CartridgeResourceDTO.html new file mode 100644 index 00000000..25136d82 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/class-use/CartridgeResourceDTO.html @@ -0,0 +1,287 @@ + + + + + + + +Uses of Class com.openshift.internal.client.response.CartridgeResourceDTO (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.response.CartridgeResourceDTO

+
+ + + + + + + + + + + + + +
+Packages that use CartridgeResourceDTO
com.openshift.internal.client  
com.openshift.internal.client.response  
+  +

+ + + + + +
+Uses of CartridgeResourceDTO in com.openshift.internal.client
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client with parameters of type CartridgeResourceDTO
+protected  voidEmbeddedCartridgeResource.update(CartridgeResourceDTO dto) + +
+           
+  +

+ + + + + + + + +
Constructors in com.openshift.internal.client with parameters of type CartridgeResourceDTO
EmbeddedCartridgeResource(CartridgeResourceDTO dto, + ApplicationResource application) + +
+           
+  +

+ + + + + + + + + + + +
Constructor parameters in com.openshift.internal.client with type arguments of type CartridgeResourceDTO
ApplicationResource(String name, + String uuid, + String creationTime, + Messages messages, + String applicationUrl, + String sshUrl, + String gitUrl, + String initialGitUrl, + IGearProfile gearProfile, + ApplicationScale scale, + List<String> aliases, + Map<String,CartridgeResourceDTO> cartridgesByName, + Map<String,Link> links, + DomainResource domain) + +
+          Instantiates a new application.
GearGroupResource(String uuid, + String name, + Collection<GearResourceDTO> gearDTOs, + Map<String,CartridgeResourceDTO> cartridgeDTOs, + ApplicationResource application, + IRestService service) + +
+          Constructor.
+  +

+ + + + + +
+Uses of CartridgeResourceDTO in com.openshift.internal.client.response
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.response that return CartridgeResourceDTO
+ CartridgeResourceDTOGearGroupResourceDTO.getCartridge(String name) + +
+          Returns the cartridge identified by the given name.
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.internal.client.response that return types with arguments of type CartridgeResourceDTO
+ Map<String,CartridgeResourceDTO>GearGroupResourceDTO.getCartridges() + +
+          Returns the cartridges within this gear group.
+ Map<String,CartridgeResourceDTO>ApplicationResourceDTO.getCartridges() + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/class-use/CartridgeResourceProperties.html b/documentation/com/openshift/internal/client/response/class-use/CartridgeResourceProperties.html new file mode 100644 index 00000000..05e07199 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/class-use/CartridgeResourceProperties.html @@ -0,0 +1,268 @@ + + + + + + + +Uses of Class com.openshift.internal.client.response.CartridgeResourceProperties (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.response.CartridgeResourceProperties

+
+ + + + + + + + + + + + + + + + + +
+Packages that use CartridgeResourceProperties
com.openshift.client.cartridge  
com.openshift.internal.client  
com.openshift.internal.client.response  
+  +

+ + + + + +
+Uses of CartridgeResourceProperties in com.openshift.client.cartridge
+  +

+ + + + + + + + + +
Methods in com.openshift.client.cartridge that return CartridgeResourceProperties
+ CartridgeResourcePropertiesIEmbeddedCartridge.getProperties() + +
+          Returns the properties for this embedded cartridge
+  +

+ + + + + +
+Uses of CartridgeResourceProperties in com.openshift.internal.client
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client that return CartridgeResourceProperties
+ CartridgeResourcePropertiesEmbeddedCartridgeResource.getProperties() + +
+           
+  +

+ + + + + +
+Uses of CartridgeResourceProperties in com.openshift.internal.client.response
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.response that return CartridgeResourceProperties
+ CartridgeResourcePropertiesCartridgeResourceDTO.getProperties() + +
+           
+  +

+ + + + + + + + + + + +
Constructors in com.openshift.internal.client.response with parameters of type CartridgeResourceProperties
CartridgeResourceDTO(String name, + CartridgeType type, + CartridgeResourceProperties properties) + +
+           
CartridgeResourceDTO(String name, + String displayName, + String description, + String type, + URL url, + CartridgeResourceProperties properties, + Map<String,Link> links, + Messages messages) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/class-use/CartridgeResourceProperty.html b/documentation/com/openshift/internal/client/response/class-use/CartridgeResourceProperty.html new file mode 100644 index 00000000..ebc80b07 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/class-use/CartridgeResourceProperty.html @@ -0,0 +1,251 @@ + + + + + + + +Uses of Class com.openshift.internal.client.response.CartridgeResourceProperty (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.response.CartridgeResourceProperty

+
+ + + + + + + + + + + + + +
+Packages that use CartridgeResourceProperty
com.openshift.client.cartridge.selector  
com.openshift.internal.client.response  
+  +

+ + + + + +
+Uses of CartridgeResourceProperty in com.openshift.client.cartridge.selector
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.client.cartridge.selector that return CartridgeResourceProperty
+ CartridgeResourcePropertyUrlPropertyQuery.getMatchingProperty(IEmbeddedCartridge embeddedCartridge) + +
+           
+abstract  CartridgeResourcePropertyCartridgePropertyQuery.getMatchingProperty(IEmbeddedCartridge embeddedCartridge) + +
+           
+  +

+ + + + + +
+Uses of CartridgeResourceProperty in com.openshift.internal.client.response
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.response that return CartridgeResourceProperty
+ CartridgeResourcePropertyCartridgeResourceProperties.getProperty(String name) + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.response that return types with arguments of type CartridgeResourceProperty
+ List<CartridgeResourceProperty>CartridgeResourceProperties.getAll() + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.response with parameters of type CartridgeResourceProperty
+ voidCartridgeResourceProperties.add(String name, + CartridgeResourceProperty property) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/class-use/DomainResourceDTO.html b/documentation/com/openshift/internal/client/response/class-use/DomainResourceDTO.html new file mode 100644 index 00000000..86877111 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/class-use/DomainResourceDTO.html @@ -0,0 +1,180 @@ + + + + + + + +Uses of Class com.openshift.internal.client.response.DomainResourceDTO (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.response.DomainResourceDTO

+
+ + + + + + + + + +
+Packages that use DomainResourceDTO
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of DomainResourceDTO in com.openshift.internal.client
+  +

+ + + + + + + + +
Constructors in com.openshift.internal.client with parameters of type DomainResourceDTO
DomainResource(DomainResourceDTO domainDTO, + APIResource api) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/class-use/EnumDataType.html b/documentation/com/openshift/internal/client/response/class-use/EnumDataType.html new file mode 100644 index 00000000..8c7d6525 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/class-use/EnumDataType.html @@ -0,0 +1,215 @@ + + + + + + + +Uses of Class com.openshift.internal.client.response.EnumDataType (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.response.EnumDataType

+
+ + + + + + + + + +
+Packages that use EnumDataType
com.openshift.internal.client.response  
+  +

+ + + + + +
+Uses of EnumDataType in com.openshift.internal.client.response
+  +

+ + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client.response that return EnumDataType
+ EnumDataTypeRestResponse.getDataType() + +
+          Gets the data type.
+static EnumDataTypeEnumDataType.valueOf(String name) + +
+          Returns the enum constant of this type with the specified name.
+static EnumDataType[]EnumDataType.values() + +
+          Returns an array containing the constants of this enum type, in +the order they are declared.
+  +

+ + + + + + + + +
Constructors in com.openshift.internal.client.response with parameters of type EnumDataType
RestResponse(String status, + Messages messages, + Object data, + EnumDataType dataType) + +
+          Instantiates a new response.
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/class-use/EnvironmentVariableResourceDTO.html b/documentation/com/openshift/internal/client/response/class-use/EnvironmentVariableResourceDTO.html new file mode 100644 index 00000000..12889e35 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/class-use/EnvironmentVariableResourceDTO.html @@ -0,0 +1,180 @@ + + + + + + + +Uses of Class com.openshift.internal.client.response.EnvironmentVariableResourceDTO (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.response.EnvironmentVariableResourceDTO

+
+ + + + + + + + + +
+Packages that use EnvironmentVariableResourceDTO
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of EnvironmentVariableResourceDTO in com.openshift.internal.client
+  +

+ + + + + + + + +
Constructors in com.openshift.internal.client with parameters of type EnvironmentVariableResourceDTO
EnvironmentVariableResource(EnvironmentVariableResourceDTO dto, + ApplicationResource application) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/class-use/GearGroupResourceDTO.html b/documentation/com/openshift/internal/client/response/class-use/GearGroupResourceDTO.html new file mode 100644 index 00000000..dcea4255 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/class-use/GearGroupResourceDTO.html @@ -0,0 +1,181 @@ + + + + + + + +Uses of Class com.openshift.internal.client.response.GearGroupResourceDTO (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.response.GearGroupResourceDTO

+
+ + + + + + + + + +
+Packages that use GearGroupResourceDTO
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of GearGroupResourceDTO in com.openshift.internal.client
+  +

+ + + + + + + + +
Constructors in com.openshift.internal.client with parameters of type GearGroupResourceDTO
GearGroupResource(GearGroupResourceDTO dto, + ApplicationResource application, + IRestService service) + +
+          Constructor.
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/class-use/GearResourceDTO.html b/documentation/com/openshift/internal/client/response/class-use/GearResourceDTO.html new file mode 100644 index 00000000..3780ee78 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/class-use/GearResourceDTO.html @@ -0,0 +1,213 @@ + + + + + + + +Uses of Class com.openshift.internal.client.response.GearResourceDTO (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.response.GearResourceDTO

+
+ + + + + + + + + + + + + +
+Packages that use GearResourceDTO
com.openshift.internal.client  
com.openshift.internal.client.response  
+  +

+ + + + + +
+Uses of GearResourceDTO in com.openshift.internal.client
+  +

+ + + + + + + + +
Constructor parameters in com.openshift.internal.client with type arguments of type GearResourceDTO
GearGroupResource(String uuid, + String name, + Collection<GearResourceDTO> gearDTOs, + Map<String,CartridgeResourceDTO> cartridgeDTOs, + ApplicationResource application, + IRestService service) + +
+          Constructor.
+  +

+ + + + + +
+Uses of GearResourceDTO in com.openshift.internal.client.response
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.response that return types with arguments of type GearResourceDTO
+ Collection<GearResourceDTO>GearGroupResourceDTO.getGears() + +
+          Returns the gears within this gear group.
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/class-use/IRestResponseFactory.html b/documentation/com/openshift/internal/client/response/class-use/IRestResponseFactory.html new file mode 100644 index 00000000..b29654b4 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/class-use/IRestResponseFactory.html @@ -0,0 +1,238 @@ + + + + + + + +Uses of Interface com.openshift.internal.client.response.IRestResponseFactory (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Interface
com.openshift.internal.client.response.IRestResponseFactory

+
+ + + + + + + + + + + + + +
+Packages that use IRestResponseFactory
com.openshift.internal.client  
com.openshift.internal.client.response  
+  +

+ + + + + +
+Uses of IRestResponseFactory in com.openshift.internal.client
+  +

+ + + + + + + + + + + + + + +
Constructors in com.openshift.internal.client with parameters of type IRestResponseFactory
RestService(String server, + String clientId, + IMediaType defaultRequestMediaType, + String acceptedMediaType, + IRestResponseFactory factory, + IHttpClient client) + +
+           
RestService(String server, + String clientId, + IMediaType defaultRequestMediaType, + String acceptedMediaType, + IRestResponseFactory factory, + IHttpClient client, + RestServiceProperties properties) + +
+           
RestService(String server, + String clientId, + String protocolVersion, + IMediaType defaultRequestMediaType, + String acceptedMediaType, + IRestResponseFactory factory, + IHttpClient client, + RestServiceProperties properties) + +
+           
+  +

+ + + + + +
+Uses of IRestResponseFactory in com.openshift.internal.client.response
+  +

+ + + + + + + + + +
Classes in com.openshift.internal.client.response that implement IRestResponseFactory
+ classOpenShiftJsonDTOFactory + +
+          A factory for creating DTO objects.
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/class-use/KeyResourceDTO.html b/documentation/com/openshift/internal/client/response/class-use/KeyResourceDTO.html new file mode 100644 index 00000000..e5fb6e34 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/class-use/KeyResourceDTO.html @@ -0,0 +1,196 @@ + + + + + + + +Uses of Class com.openshift.internal.client.response.KeyResourceDTO (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.response.KeyResourceDTO

+
+ + + + + + + + + +
+Packages that use KeyResourceDTO
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of KeyResourceDTO in com.openshift.internal.client
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client with parameters of type KeyResourceDTO
+protected  voidSSHKeyResource.update(KeyResourceDTO dto) + +
+           
+  +

+ + + + + + + + +
Constructors in com.openshift.internal.client with parameters of type KeyResourceDTO
SSHKeyResource(KeyResourceDTO dto, + UserResource user) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/class-use/Link.html b/documentation/com/openshift/internal/client/response/class-use/Link.html new file mode 100644 index 00000000..a393ee97 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/class-use/Link.html @@ -0,0 +1,478 @@ + + + + + + + +Uses of Class com.openshift.internal.client.response.Link (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.response.Link

+
+ + + + + + + + + + + + + +
+Packages that use Link
com.openshift.internal.client  
com.openshift.internal.client.response  
+  +

+ + + + + +
+Uses of Link in com.openshift.internal.client
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client that return Link
+protected  LinkAbstractOpenShiftResource.getLink(String linkName) + +
+          Gets the link for the given name.
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client with parameters of type Link
+ RestResponseRestService.request(Link link, + int timeout, + IMediaType requestMediaType, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + int timeout, + IMediaType mediaType, + Parameter... parameters) + +
+          Requests the given link sending the given parameters while encoding the + parameters with the given media type and respecting the given timeout.
+ RestResponseRestService.request(Link link, + int timeout, + List<Parameter> urlParameters, + IMediaType requestMediaType, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + int timeout, + List<Parameter> urlParameters, + IMediaType mediaType, + Parameter... parameters) + +
+           
+ RestResponseRestService.request(Link link, + int timeout, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + int timeout, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+ RestResponseRestService.request(Link link, + int timeout, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + int timeout, + Parameter... parameters) + +
+           
+ RestResponseRestService.request(Link link, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+ RestResponseRestService.request(Link link, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + Parameter... parameters) + +
+           
+  +

+ + + + + + + + + +
Method parameters in com.openshift.internal.client with type arguments of type Link
+protected  voidAbstractOpenShiftResource.setLinks(Map<String,Link> links) + +
+           
+  +

+ + + + + + + + + + + + + + + + + + + + +
Constructor parameters in com.openshift.internal.client with type arguments of type Link
AbstractOpenShiftResource(IRestService service, + Map<String,Link> links, + Messages messages) + +
+          Instantiates a new abstract open shift resource.
APIResource(String login, + String password, + IRestService service, + Map<String,Link> links) + +
+           
ApplicationResource(String name, + String uuid, + String creationTime, + Messages messages, + String applicationUrl, + String sshUrl, + String gitUrl, + String initialGitUrl, + IGearProfile gearProfile, + ApplicationScale scale, + List<String> aliases, + Map<String,CartridgeResourceDTO> cartridgesByName, + Map<String,Link> links, + DomainResource domain) + +
+          Instantiates a new application.
DomainResource(String namespace, + String suffix, + Map<String,Link> links, + Messages messages, + APIResource api) + +
+           
EnvironmentVariableResource(String name, + String value, + Messages messages, + Map<String,Link> links, + ApplicationResource application) + +
+           
+  +

+ + + + + +
+Uses of Link in com.openshift.internal.client.response
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.response that return Link
+ LinkBaseResourceDTO.getLink(String name) + +
+          Gets the link.
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.response that return types with arguments of type Link
+ Map<String,Link>BaseResourceDTO.getLinks() + +
+          Gets the links.
+  +

+ + + + + + + + + + + + + + +
Constructor parameters in com.openshift.internal.client.response with type arguments of type Link
BaseResourceDTO(Map<String,Link> links, + Messages messages) + +
+          Instantiates a new base resource dto.
CartridgeResourceDTO(String name, + String displayName, + String description, + String type, + URL url, + CartridgeResourceProperties properties, + Map<String,Link> links, + Messages messages) + +
+           
EnvironmentVariableResourceDTO(String name, + String value, + Map<String,Link> links, + Messages messages) + +
+          Instantiates a new environment variable resource dto.
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/class-use/LinkParameter.html b/documentation/com/openshift/internal/client/response/class-use/LinkParameter.html new file mode 100644 index 00000000..2d677c59 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/class-use/LinkParameter.html @@ -0,0 +1,237 @@ + + + + + + + +Uses of Class com.openshift.internal.client.response.LinkParameter (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.response.LinkParameter

+
+ + + + + + + + + +
+Packages that use LinkParameter
com.openshift.internal.client.response  
+  +

+ + + + + +
+Uses of LinkParameter in com.openshift.internal.client.response
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.internal.client.response that return types with arguments of type LinkParameter
+ List<LinkParameter>Link.getOptionalParams() + +
+          Gets the optional params.
+ List<LinkParameter>Link.getRequiredParams() + +
+          Gets the required params.
+  +

+ + + + + + + + + + + + + + + + + +
Constructor parameters in com.openshift.internal.client.response with type arguments of type LinkParameter
Link(String rel, + String href, + HttpMethod httpMethod, + List<LinkParameter> requiredParams, + List<LinkParameter> optionalParams) + +
+          Instantiates a new Link object.
Link(String rel, + String href, + HttpMethod httpMethod, + List<LinkParameter> requiredParams, + List<LinkParameter> optionalParams) + +
+          Instantiates a new Link object.
Link(String rel, + String href, + String httpMethod, + List<LinkParameter> requiredParams, + List<LinkParameter> optionalParams) + +
+           
Link(String rel, + String href, + String httpMethod, + List<LinkParameter> requiredParams, + List<LinkParameter> optionalParams) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/class-use/LinkParameterType.html b/documentation/com/openshift/internal/client/response/class-use/LinkParameterType.html new file mode 100644 index 00000000..1ffdb6c0 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/class-use/LinkParameterType.html @@ -0,0 +1,247 @@ + + + + + + + +Uses of Class com.openshift.internal.client.response.LinkParameterType (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.response.LinkParameterType

+
+ + + + + + + + + +
+Packages that use LinkParameterType
com.openshift.internal.client.response  
+  +

+ + + + + +
+Uses of LinkParameterType in com.openshift.internal.client.response
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Fields in com.openshift.internal.client.response declared as LinkParameterType
+static LinkParameterTypeLinkParameterType.ARRAY + +
+           
+static LinkParameterTypeLinkParameterType.BOOLEAN + +
+           
+static LinkParameterTypeLinkParameterType.INTEGER + +
+           
+static LinkParameterTypeLinkParameterType.STRING + +
+           
+protected  LinkParameterTypeLinkParameter.type + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client.response that return LinkParameterType
+ LinkParameterTypeLinkParameter.getType() + +
+           
+  +

+ + + + + + + + +
Constructors in com.openshift.internal.client.response with parameters of type LinkParameterType
LinkParameter(String name, + LinkParameterType type, + String defaultValue, + String description, + List<String> validOptions) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/class-use/OpenShiftJsonDTOFactory.html b/documentation/com/openshift/internal/client/response/class-use/OpenShiftJsonDTOFactory.html new file mode 100644 index 00000000..da05b9ed --- /dev/null +++ b/documentation/com/openshift/internal/client/response/class-use/OpenShiftJsonDTOFactory.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.response.OpenShiftJsonDTOFactory (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.response.OpenShiftJsonDTOFactory

+
+No usage of com.openshift.internal.client.response.OpenShiftJsonDTOFactory +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/class-use/RestResponse.html b/documentation/com/openshift/internal/client/response/class-use/RestResponse.html new file mode 100644 index 00000000..5c54ff82 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/class-use/RestResponse.html @@ -0,0 +1,423 @@ + + + + + + + +Uses of Class com.openshift.internal.client.response.RestResponse (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.response.RestResponse

+
+ + + + + + + + + + + + + + + + + +
+Packages that use RestResponse
com.openshift.client  
com.openshift.internal.client  
com.openshift.internal.client.response  
+  +

+ + + + + +
+Uses of RestResponse in com.openshift.client
+  +

+ + + + + + + + + +
Methods in com.openshift.client that return RestResponse
+ RestResponseOpenShiftEndpointException.getRestResponse() + +
+           
+  +

+ + + + + + + + + + + + + + +
Constructors in com.openshift.client with parameters of type RestResponse
InvalidCredentialsOpenShiftException(String url, + HttpClientException cause, + RestResponse restResponse) + +
+           
NotFoundOpenShiftException(String url, + HttpClientException e, + RestResponse restResponse) + +
+           
OpenShiftEndpointException(String url, + Throwable cause, + RestResponse response, + String message, + Object... arguments) + +
+           
+  +

+ + + + + +
+Uses of RestResponse in com.openshift.internal.client
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Methods in com.openshift.internal.client that return RestResponse
+ RestResponseRestService.request(Link link, + int timeout, + IMediaType requestMediaType, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + int timeout, + IMediaType mediaType, + Parameter... parameters) + +
+          Requests the given link sending the given parameters while encoding the + parameters with the given media type and respecting the given timeout.
+ RestResponseRestService.request(Link link, + int timeout, + List<Parameter> urlParameters, + IMediaType requestMediaType, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + int timeout, + List<Parameter> urlParameters, + IMediaType mediaType, + Parameter... parameters) + +
+           
+ RestResponseRestService.request(Link link, + int timeout, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + int timeout, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+ RestResponseRestService.request(Link link, + int timeout, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + int timeout, + Parameter... parameters) + +
+           
+ RestResponseRestService.request(Link link, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + List<Parameter> urlParameters, + Parameter... parameters) + +
+           
+ RestResponseRestService.request(Link link, + Parameter... parameters) + +
+           
+ RestResponseIRestService.request(Link link, + Parameter... parameters) + +
+           
+  +

+ + + + + + + + + +
Methods in com.openshift.internal.client with parameters of type RestResponse
+protected + + + + +
+<DTO> DTO
+
AbstractOpenShiftResource.ServiceRequest.getData(RestResponse response) + +
+           
+  +

+ + + + + +
+Uses of RestResponse in com.openshift.internal.client.response
+  +

+ + + + + + + + + + + + + +
Methods in com.openshift.internal.client.response that return RestResponse
+ RestResponseOpenShiftJsonDTOFactory.get(String json) + +
+           
+ RestResponseIRestResponseFactory.get(String restResponse) + +
+          Returns a RestResponse instance for a given rest response string.
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/class-use/UserResourceDTO.html b/documentation/com/openshift/internal/client/response/class-use/UserResourceDTO.html new file mode 100644 index 00000000..25339e48 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/class-use/UserResourceDTO.html @@ -0,0 +1,181 @@ + + + + + + + +Uses of Class com.openshift.internal.client.response.UserResourceDTO (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.response.UserResourceDTO

+
+ + + + + + + + + +
+Packages that use UserResourceDTO
com.openshift.internal.client  
+  +

+ + + + + +
+Uses of UserResourceDTO in com.openshift.internal.client
+  +

+ + + + + + + + +
Constructors in com.openshift.internal.client with parameters of type UserResourceDTO
UserResource(APIResource api, + UserResourceDTO dto, + String password) + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/package-frame.html b/documentation/com/openshift/internal/client/response/package-frame.html new file mode 100644 index 00000000..f84c9b83 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/package-frame.html @@ -0,0 +1,85 @@ + + + + + + + +com.openshift.internal.client.response (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + +com.openshift.internal.client.response + + + + +
+Interfaces  + +
+IRestResponseFactory
+ + + + + + +
+Classes  + +
+ApplicationResourceDTO +
+BaseResourceDTO +
+CartridgeResourceDTO +
+CartridgeResourceProperties +
+CartridgeResourceProperty +
+DomainResourceDTO +
+EnvironmentVariableResourceDTO +
+GearGroupResourceDTO +
+GearResourceDTO +
+KeyResourceDTO +
+Link +
+LinkParameter +
+LinkParameterType +
+OpenShiftJsonDTOFactory +
+RestResponse +
+UserResourceDTO
+ + + + + + +
+Enums  + +
+EnumDataType
+ + + + diff --git a/documentation/com/openshift/internal/client/response/package-summary.html b/documentation/com/openshift/internal/client/response/package-summary.html new file mode 100644 index 00000000..d71ea172 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/package-summary.html @@ -0,0 +1,246 @@ + + + + + + + +com.openshift.internal.client.response (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+

+Package com.openshift.internal.client.response +

+ + + + + + + + + +
+Interface Summary
IRestResponseFactory 
+  + +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class Summary
ApplicationResourceDTOThe Class ApplicationDTO.
BaseResourceDTOThe Class BaseResourceDTO.
CartridgeResourceDTO 
CartridgeResourcePropertiesProperties that hold informations available in cartridges
CartridgeResourceProperty 
DomainResourceDTO 
EnvironmentVariableResourceDTOThe DTO for an environment variable
GearGroupResourceDTOThe DTO for a gear groups
GearResourceDTOThe Class ApplicationDTO.
KeyResourceDTOThe Class KeyResourceDTO.
LinkThe Class Link.
LinkParameter 
LinkParameterType 
OpenShiftJsonDTOFactoryA factory for creating DTO objects.
RestResponseThe Class Response.
UserResourceDTO 
+  + +

+ + + + + + + + + +
+Enum Summary
EnumDataTypeThe Enum EnumDataType.
+  + +

+

+
+
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/package-tree.html b/documentation/com/openshift/internal/client/response/package-tree.html new file mode 100644 index 00000000..52aedb47 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/package-tree.html @@ -0,0 +1,172 @@ + + + + + + + +com.openshift.internal.client.response Class Hierarchy (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Hierarchy For Package com.openshift.internal.client.response +

+
+
+
Package Hierarchies:
All Packages
+
+

+Class Hierarchy +

+ +

+Interface Hierarchy +

+ +

+Enum Hierarchy +

+ +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/response/package-use.html b/documentation/com/openshift/internal/client/response/package-use.html new file mode 100644 index 00000000..91f07942 --- /dev/null +++ b/documentation/com/openshift/internal/client/response/package-use.html @@ -0,0 +1,373 @@ + + + + + + + +Uses of Package com.openshift.internal.client.response (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Package
com.openshift.internal.client.response

+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+Packages that use com.openshift.internal.client.response
com.openshift.client  
com.openshift.client.cartridge  
com.openshift.client.cartridge.selector  
com.openshift.internal.client  
com.openshift.internal.client.response  
+  +

+ + + + + + + + +
+Classes in com.openshift.internal.client.response used by com.openshift.client
RestResponse + +
+          The Class Response.
+  +

+ + + + + + + + +
+Classes in com.openshift.internal.client.response used by com.openshift.client.cartridge
CartridgeResourceProperties + +
+          Properties that hold informations available in cartridges
+  +

+ + + + + + + + +
+Classes in com.openshift.internal.client.response used by com.openshift.client.cartridge.selector
CartridgeResourceProperty + +
+           
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Classes in com.openshift.internal.client.response used by com.openshift.internal.client
ApplicationResourceDTO + +
+          The Class ApplicationDTO.
CartridgeResourceDTO + +
+           
CartridgeResourceProperties + +
+          Properties that hold informations available in cartridges
DomainResourceDTO + +
+           
EnvironmentVariableResourceDTO + +
+          The DTO for an environment variable
GearGroupResourceDTO + +
+          The DTO for a gear groups
GearResourceDTO + +
+          The Class ApplicationDTO.
IRestResponseFactory + +
+           
KeyResourceDTO + +
+          The Class KeyResourceDTO.
Link + +
+          The Class Link.
RestResponse + +
+          The Class Response.
UserResourceDTO + +
+           
+  +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Classes in com.openshift.internal.client.response used by com.openshift.internal.client.response
BaseResourceDTO + +
+          The Class BaseResourceDTO.
CartridgeResourceDTO + +
+           
CartridgeResourceProperties + +
+          Properties that hold informations available in cartridges
CartridgeResourceProperty + +
+           
EnumDataType + +
+          The Enum EnumDataType.
GearResourceDTO + +
+          The Class ApplicationDTO.
IRestResponseFactory + +
+           
Link + +
+          The Class Link.
LinkParameter + +
+           
LinkParameterType + +
+           
RestResponse + +
+          The Class Response.
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/ssh/AbstractSSHKey.html b/documentation/com/openshift/internal/client/ssh/AbstractSSHKey.html new file mode 100644 index 00000000..b2f96034 --- /dev/null +++ b/documentation/com/openshift/internal/client/ssh/AbstractSSHKey.html @@ -0,0 +1,394 @@ + + + + + + + +AbstractSSHKey (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.ssh +
+Class AbstractSSHKey

+
+java.lang.Object
+  extended by com.openshift.internal.client.ssh.AbstractSSHKey
+
+
+
All Implemented Interfaces:
ISSHPublicKey
+
+
+
Direct Known Subclasses:
SSHKeyPair, SSHPublicKey
+
+
+
+
public abstract class AbstractSSHKey
extends Object
implements ISSHPublicKey
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + + +
+Constructor Summary
+protected AbstractSSHKey(SSHKeyType sshKeyType) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+ booleanequals(Object obj) + +
+           
+ SSHKeyTypegetKeyType() + +
+          Returns the type of the key (ssh-rsa or ssh-dss)
+ inthashCode() + +
+           
+protected  voidsetKeyType(SSHKeyType keyType) + +
+           
+protected  voidsetKeyType(String keyTypeId) + +
+           
+ StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
+ + + + + + + +
Methods inherited from interface com.openshift.client.ISSHPublicKey
getPublicKey
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+AbstractSSHKey

+
+protected AbstractSSHKey(SSHKeyType sshKeyType)
+
+
+ + + + + + + + +
+Method Detail
+ +

+getKeyType

+
+public SSHKeyType getKeyType()
+
+
Description copied from interface: ISSHPublicKey
+
Returns the type of the key (ssh-rsa or ssh-dss) +

+

+
Specified by:
getKeyType in interface ISSHPublicKey
+
+
+ +
Returns:
the type of key, either ssh-rsa or ssh-dss
+
+
+
+ +

+setKeyType

+
+protected void setKeyType(String keyTypeId)
+                   throws OpenShiftUnknonwSSHKeyTypeException
+
+
+
+
+
+ +
Throws: +
OpenShiftUnknonwSSHKeyTypeException
+
+
+
+ +

+setKeyType

+
+protected void setKeyType(SSHKeyType keyType)
+
+
+
+
+
+
+
+
+
+ +

+hashCode

+
+public int hashCode()
+
+
+
Overrides:
hashCode in class Object
+
+
+
+
+
+
+ +

+equals

+
+public boolean equals(Object obj)
+
+
+
Overrides:
equals in class Object
+
+
+
+
+
+
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/ssh/ApplicationPortForwarding.html b/documentation/com/openshift/internal/client/ssh/ApplicationPortForwarding.html new file mode 100644 index 00000000..4acae886 --- /dev/null +++ b/documentation/com/openshift/internal/client/ssh/ApplicationPortForwarding.html @@ -0,0 +1,532 @@ + + + + + + + +ApplicationPortForwarding (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.ssh +
+Class ApplicationPortForwarding

+
+java.lang.Object
+  extended by com.openshift.internal.client.ssh.ApplicationPortForwarding
+
+
+
All Implemented Interfaces:
IApplicationPortForwarding
+
+
+
+
public class ApplicationPortForwarding
extends Object
implements IApplicationPortForwarding
+ + +

+

+
Author:
+
Xavier Coulon
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
ApplicationPortForwarding(IApplication application, + String name, + String remoteAddress, + int remotePort) + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+protected  IApplicationgetApplication() + +
+           
+ StringgetLocalAddress() + +
+           
+ intgetLocalPort() + +
+           
+ StringgetName() + +
+           
+ StringgetRemoteAddress() + +
+           
+ intgetRemotePort() + +
+           
+ booleanisStarted(com.jcraft.jsch.Session session) + +
+           
+ voidsetLocalAddress(String localAddress) + +
+           
+ voidsetLocalPort(int localPort) + +
+           
+ voidstart(com.jcraft.jsch.Session session) + +
+          Start the binding, ie, open a SSH tunnel between local address:port and remote address:port.
+ voidstop(com.jcraft.jsch.Session session) + +
+          Stop the SSH tunnel.
+ StringtoString() + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+ApplicationPortForwarding

+
+public ApplicationPortForwarding(IApplication application,
+                                 String name,
+                                 String remoteAddress,
+                                 int remotePort)
+
+
+ + + + + + + + +
+Method Detail
+ +

+start

+
+public void start(com.jcraft.jsch.Session session)
+           throws OpenShiftSSHOperationException
+
+
Description copied from interface: IApplicationPortForwarding
+
Start the binding, ie, open a SSH tunnel between local address:port and remote address:port. +

+

+
Specified by:
start in interface IApplicationPortForwarding
+
+
+ +
Throws: +
OpenShiftSSHOperationException
+
+
+
+ +

+stop

+
+public void stop(com.jcraft.jsch.Session session)
+          throws OpenShiftSSHOperationException
+
+
Description copied from interface: IApplicationPortForwarding
+
Stop the SSH tunnel. +

+

+
Specified by:
stop in interface IApplicationPortForwarding
+
+
+ +
Throws: +
OpenShiftSSHOperationException
+
+
+
+ +

+isStarted

+
+public boolean isStarted(com.jcraft.jsch.Session session)
+                  throws OpenShiftSSHOperationException
+
+
+
Specified by:
isStarted in interface IApplicationPortForwarding
+
+
+ +
Returns:
true if the SSH tunnel is open, false otherwise. +
Throws: +
OpenShiftSSHOperationException
+
+
+
+ +

+getApplication

+
+protected final IApplication getApplication()
+
+
+
+
+
+
+
+
+
+ +

+getName

+
+public final String getName()
+
+
+
Specified by:
getName in interface IApplicationPortForwarding
+
+
+ +
Returns:
the name
+
+
+
+ +

+getLocalAddress

+
+public final String getLocalAddress()
+
+
+
Specified by:
getLocalAddress in interface IApplicationPortForwarding
+
+
+ +
Returns:
the localAddress
+
+
+
+ +

+setLocalAddress

+
+public final void setLocalAddress(String localAddress)
+
+
+
Specified by:
setLocalAddress in interface IApplicationPortForwarding
+
+
+
Parameters:
localAddress - the localAddress to set
+
+
+
+ +

+getLocalPort

+
+public final int getLocalPort()
+
+
+
Specified by:
getLocalPort in interface IApplicationPortForwarding
+
+
+ +
Returns:
the localPort
+
+
+
+ +

+setLocalPort

+
+public final void setLocalPort(int localPort)
+
+
+
Specified by:
setLocalPort in interface IApplicationPortForwarding
+
+
+
Parameters:
localPort - the localPort to set
+
+
+
+ +

+getRemoteAddress

+
+public final String getRemoteAddress()
+
+
+
Specified by:
getRemoteAddress in interface IApplicationPortForwarding
+
+
+ +
Returns:
the remoteIp
+
+
+
+ +

+getRemotePort

+
+public final int getRemotePort()
+
+
+
Specified by:
getRemotePort in interface IApplicationPortForwarding
+
+
+ +
Returns:
the remotePort
+
+
+
+ +

+toString

+
+public String toString()
+
+
+
Overrides:
toString in class Object
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/ssh/class-use/AbstractSSHKey.html b/documentation/com/openshift/internal/client/ssh/class-use/AbstractSSHKey.html new file mode 100644 index 00000000..4a5e13c5 --- /dev/null +++ b/documentation/com/openshift/internal/client/ssh/class-use/AbstractSSHKey.html @@ -0,0 +1,189 @@ + + + + + + + +Uses of Class com.openshift.internal.client.ssh.AbstractSSHKey (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.ssh.AbstractSSHKey

+
+ + + + + + + + + +
+Packages that use AbstractSSHKey
com.openshift.client  
+  +

+ + + + + +
+Uses of AbstractSSHKey in com.openshift.client
+  +

+ + + + + + + + + + + + + +
Subclasses of AbstractSSHKey in com.openshift.client
+ classSSHKeyPair + +
+           
+ classSSHPublicKey + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/ssh/class-use/ApplicationPortForwarding.html b/documentation/com/openshift/internal/client/ssh/class-use/ApplicationPortForwarding.html new file mode 100644 index 00000000..4cdd5661 --- /dev/null +++ b/documentation/com/openshift/internal/client/ssh/class-use/ApplicationPortForwarding.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.ssh.ApplicationPortForwarding (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.ssh.ApplicationPortForwarding

+
+No usage of com.openshift.internal.client.ssh.ApplicationPortForwarding +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/ssh/package-frame.html b/documentation/com/openshift/internal/client/ssh/package-frame.html new file mode 100644 index 00000000..e41a31ed --- /dev/null +++ b/documentation/com/openshift/internal/client/ssh/package-frame.html @@ -0,0 +1,35 @@ + + + + + + + +com.openshift.internal.client.ssh (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + +com.openshift.internal.client.ssh + + + + +
+Classes  + +
+AbstractSSHKey +
+ApplicationPortForwarding
+ + + + diff --git a/documentation/com/openshift/internal/client/ssh/package-summary.html b/documentation/com/openshift/internal/client/ssh/package-summary.html new file mode 100644 index 00000000..9f04463a --- /dev/null +++ b/documentation/com/openshift/internal/client/ssh/package-summary.html @@ -0,0 +1,162 @@ + + + + + + + +com.openshift.internal.client.ssh (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+

+Package com.openshift.internal.client.ssh +

+ + + + + + + + + + + + + +
+Class Summary
AbstractSSHKey 
ApplicationPortForwarding 
+  + +

+

+
+
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/ssh/package-tree.html b/documentation/com/openshift/internal/client/ssh/package-tree.html new file mode 100644 index 00000000..5052f497 --- /dev/null +++ b/documentation/com/openshift/internal/client/ssh/package-tree.html @@ -0,0 +1,156 @@ + + + + + + + +com.openshift.internal.client.ssh Class Hierarchy (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Hierarchy For Package com.openshift.internal.client.ssh +

+
+
+
Package Hierarchies:
All Packages
+
+

+Class Hierarchy +

+ +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/ssh/package-use.html b/documentation/com/openshift/internal/client/ssh/package-use.html new file mode 100644 index 00000000..274df049 --- /dev/null +++ b/documentation/com/openshift/internal/client/ssh/package-use.html @@ -0,0 +1,171 @@ + + + + + + + +Uses of Package com.openshift.internal.client.ssh (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Package
com.openshift.internal.client.ssh

+
+ + + + + + + + + +
+Packages that use com.openshift.internal.client.ssh
com.openshift.client  
+  +

+ + + + + + + + +
+Classes in com.openshift.internal.client.ssh used by com.openshift.client
AbstractSSHKey + +
+           
+  +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/utils/Assert.AssertionFailedException.html b/documentation/com/openshift/internal/client/utils/Assert.AssertionFailedException.html new file mode 100644 index 00000000..eda87707 --- /dev/null +++ b/documentation/com/openshift/internal/client/utils/Assert.AssertionFailedException.html @@ -0,0 +1,245 @@ + + + + + + + +Assert.AssertionFailedException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.utils +
+Class Assert.AssertionFailedException

+
+java.lang.Object
+  extended by java.lang.Throwable
+      extended by java.lang.Exception
+          extended by java.lang.RuntimeException
+              extended by com.openshift.internal.client.utils.Assert.AssertionFailedException
+
+
+
All Implemented Interfaces:
Serializable
+
+
+
Enclosing class:
Assert
+
+
+
+
public static final class Assert.AssertionFailedException
extends RuntimeException
+ + +

+

+
See Also:
Serialized Form
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
Assert.AssertionFailedException() + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+Assert.AssertionFailedException

+
+public Assert.AssertionFailedException()
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/utils/Assert.html b/documentation/com/openshift/internal/client/utils/Assert.html new file mode 100644 index 00000000..389fedba --- /dev/null +++ b/documentation/com/openshift/internal/client/utils/Assert.html @@ -0,0 +1,319 @@ + + + + + + + +Assert (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.utils +
+Class Assert

+
+java.lang.Object
+  extended by com.openshift.internal.client.utils.Assert
+
+
+
+
public class Assert
extends Object
+ + +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + + + + + +
+Nested Class Summary
+static classAssert.AssertionFailedException + +
+           
+  + + + + + + + + + + +
+Constructor Summary
Assert() + +
+           
+  + + + + + + + + + + + + + + + + + + + +
+Method Summary
+static voidisTrue(boolean assertion) + +
+           
+static voidnotEmpty(String value) + +
+           
+static + + + + +
+<V> V
+
notNull(V value) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+Assert

+
+public Assert()
+
+
+ + + + + + + + +
+Method Detail
+ +

+notNull

+
+public static <V> V notNull(V value)
+
+
+
+
+
+
+ +

+notEmpty

+
+public static void notEmpty(String value)
+
+
+
+
+
+
+ +

+isTrue

+
+public static void isTrue(boolean assertion)
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/utils/CollectionUtils.html b/documentation/com/openshift/internal/client/utils/CollectionUtils.html new file mode 100644 index 00000000..be652f91 --- /dev/null +++ b/documentation/com/openshift/internal/client/utils/CollectionUtils.html @@ -0,0 +1,264 @@ + + + + + + + +CollectionUtils (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.utils +
+Class CollectionUtils

+
+java.lang.Object
+  extended by com.openshift.internal.client.utils.CollectionUtils
+
+
+
+
public class CollectionUtils
extends Object
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
CollectionUtils() + +
+           
+  + + + + + + + + + + + +
+Method Summary
+static + + + + +
+<T> List<T>
+
toUnmodifiableCopy(Collection<T> collection) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+CollectionUtils

+
+public CollectionUtils()
+
+
+ + + + + + + + +
+Method Detail
+ +

+toUnmodifiableCopy

+
+public static <T> List<T> toUnmodifiableCopy(Collection<T> collection)
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/utils/IOpenShiftJsonConstants.html b/documentation/com/openshift/internal/client/utils/IOpenShiftJsonConstants.html new file mode 100644 index 00000000..aeccd7a7 --- /dev/null +++ b/documentation/com/openshift/internal/client/utils/IOpenShiftJsonConstants.html @@ -0,0 +1,1759 @@ + + + + + + + +IOpenShiftJsonConstants (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.utils +
+Class IOpenShiftJsonConstants

+
+java.lang.Object
+  extended by com.openshift.internal.client.utils.IOpenShiftJsonConstants
+
+
+
+
public class IOpenShiftJsonConstants
extends Object
+ + +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Field Summary
+static StringPROPERTY_ACTION + +
+           
+static StringPROPERTY_ALIAS + +
+           
+static StringPROPERTY_ALIASES + +
+           
+static StringPROPERTY_ALTER + +
+           
+static StringPROPERTY_APP_INFO + +
+           
+static StringPROPERTY_APP_NAME + +
+           
+static StringPROPERTY_APP_URL + +
+           
+static StringPROPERTY_CARTRIDGE + +
+           
+static StringPROPERTY_CARTRIDGES + +
+           
+static StringPROPERTY_CONSUMED_GEARS + +
+           
+static StringPROPERTY_CONTENT + +
+           
+static StringPROPERTY_CREATION_TIME + +
+           
+static StringPROPERTY_DATA + +
+           
+static StringPROPERTY_DEBUG + +
+           
+static StringPROPERTY_DEFAULT_VALUE + +
+           
+static StringPROPERTY_DELETE + +
+           
+static StringPROPERTY_DESCRIPTION + +
+           
+static StringPROPERTY_DISPLAY_NAME + +
+           
+static StringPROPERTY_DOMAIN + +
+           
+static StringPROPERTY_DOMAIN_ID + +
+           
+static StringPROPERTY_DOMAINS + +
+           
+static StringPROPERTY_EMBEDDED + +
+           
+static StringPROPERTY_ENVIRONMENT_VARIABLES + +
+           
+static StringPROPERTY_EVENT + +
+           
+static StringPROPERTY_EXIT_CODE + +
+           
+static StringPROPERTY_FIELD + +
+           
+static StringPROPERTY_FORCE + +
+           
+static StringPROPERTY_FRAMEWORK + +
+           
+static StringPROPERTY_GEAR_PROFILE + +
+           
+static StringPROPERTY_GEAR_STATE + +
+           
+static StringPROPERTY_GEARS + +
+           
+static StringPROPERTY_GIT_URL + +
+           
+static StringPROPERTY_HEALTH_CHECK_PATH + +
+           
+static StringPROPERTY_HREF + +
+           
+static StringPROPERTY_ID + +
+           
+static StringPROPERTY_INFO + +
+           
+static StringPROPERTY_INITIAL_GIT_URL + +
+           
+static StringPROPERTY_INTERNAL_PORT + +
+           
+static StringPROPERTY_KEY + +
+           
+static StringPROPERTY_KEY_TYPE + +
+           
+static StringPROPERTY_KEYS + +
+           
+static StringPROPERTY_LINKS + +
+           
+static StringPROPERTY_LOGIN + +
+           
+static StringPROPERTY_MAX_GEARS + +
+           
+static StringPROPERTY_MESSAGES + +
+           
+static StringPROPERTY_METHOD + +
+           
+static StringPROPERTY_NAME + +
+           
+static StringPROPERTY_OPTIONAL_PARAMS + +
+           
+static StringPROPERTY_PROPERTIES + +
+           
+static StringPROPERTY_PROPERTY + +
+           
+static StringPROPERTY_PROXY_HOST + +
+           
+static StringPROPERTY_PROXY_PORT + +
+           
+static StringPROPERTY_REL + +
+           
+static StringPROPERTY_REQUIRED_PARAMS + +
+           
+static StringPROPERTY_RESULT + +
+           
+static StringPROPERTY_RHC_DOMAIN + +
+           
+static StringPROPERTY_RHLOGIN + +
+           
+static StringPROPERTY_SCALABLE + +
+           
+static StringPROPERTY_SCALE + +
+           
+static StringPROPERTY_SEVERITY + +
+           
+static StringPROPERTY_SSH + +
+           
+static StringPROPERTY_SSH_KEY + +
+           
+static StringPROPERTY_SSH_TYPE + +
+           
+static StringPROPERTY_SSH_URL + +
+           
+static StringPROPERTY_STATUS + +
+           
+static StringPROPERTY_SUFFIX + +
+           
+static StringPROPERTY_TEXT + +
+           
+static StringPROPERTY_TYPE + +
+           
+static StringPROPERTY_URL + +
+           
+static StringPROPERTY_USER_INFO + +
+           
+static StringPROPERTY_UUID + +
+           
+static StringPROPERTY_VALID_OPTIONS + +
+           
+static StringPROPERTY_VALUE + +
+           
+static StringVALUE_ADD_ALIAS + +
+           
+static StringVALUE_FORCESTOP + +
+           
+static StringVALUE_REMOVE_ALIAS + +
+           
+static StringVALUE_RESTART + +
+           
+static StringVALUE_SCALE_DOWN + +
+           
+static StringVALUE_SCALE_UP + +
+           
+static StringVALUE_START + +
+           
+static StringVALUE_STATUS + +
+           
+static StringVALUE_STATUS_CREATED + +
+           
+static StringVALUE_STATUS_OK + +
+           
+static StringVALUE_STOP + +
+           
+  + + + + + + + + + + +
+Constructor Summary
IOpenShiftJsonConstants() + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Field Detail
+ +

+PROPERTY_ACTION

+
+public static final String PROPERTY_ACTION
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_ALIAS

+
+public static final String PROPERTY_ALIAS
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_ALIASES

+
+public static final String PROPERTY_ALIASES
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_ALTER

+
+public static final String PROPERTY_ALTER
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_APP_INFO

+
+public static final String PROPERTY_APP_INFO
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_APP_NAME

+
+public static final String PROPERTY_APP_NAME
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_APP_URL

+
+public static final String PROPERTY_APP_URL
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_CREATION_TIME

+
+public static final String PROPERTY_CREATION_TIME
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_CARTRIDGE

+
+public static final String PROPERTY_CARTRIDGE
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_CARTRIDGES

+
+public static final String PROPERTY_CARTRIDGES
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_CONSUMED_GEARS

+
+public static final String PROPERTY_CONSUMED_GEARS
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_CONTENT

+
+public static final String PROPERTY_CONTENT
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_DATA

+
+public static final String PROPERTY_DATA
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_DEBUG

+
+public static final String PROPERTY_DEBUG
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_DEFAULT_VALUE

+
+public static final String PROPERTY_DEFAULT_VALUE
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_DELETE

+
+public static final String PROPERTY_DELETE
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_DESCRIPTION

+
+public static final String PROPERTY_DESCRIPTION
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_DISPLAY_NAME

+
+public static final String PROPERTY_DISPLAY_NAME
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_DOMAIN

+
+public static final String PROPERTY_DOMAIN
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_DOMAINS

+
+public static final String PROPERTY_DOMAINS
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_DOMAIN_ID

+
+public static final String PROPERTY_DOMAIN_ID
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_EMBEDDED

+
+public static final String PROPERTY_EMBEDDED
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_EVENT

+
+public static final String PROPERTY_EVENT
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_EXIT_CODE

+
+public static final String PROPERTY_EXIT_CODE
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_FIELD

+
+public static final String PROPERTY_FIELD
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_FORCE

+
+public static final String PROPERTY_FORCE
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_FRAMEWORK

+
+public static final String PROPERTY_FRAMEWORK
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_GEARS

+
+public static final String PROPERTY_GEARS
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_GEAR_PROFILE

+
+public static final String PROPERTY_GEAR_PROFILE
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_GEAR_STATE

+
+public static final String PROPERTY_GEAR_STATE
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_GIT_URL

+
+public static final String PROPERTY_GIT_URL
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_HEALTH_CHECK_PATH

+
+public static final String PROPERTY_HEALTH_CHECK_PATH
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_HREF

+
+public static final String PROPERTY_HREF
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_ID

+
+public static final String PROPERTY_ID
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_INFO

+
+public static final String PROPERTY_INFO
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_INITIAL_GIT_URL

+
+public static final String PROPERTY_INITIAL_GIT_URL
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_INTERNAL_PORT

+
+public static final String PROPERTY_INTERNAL_PORT
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_KEY_TYPE

+
+public static final String PROPERTY_KEY_TYPE
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_KEYS

+
+public static final String PROPERTY_KEYS
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_KEY

+
+public static final String PROPERTY_KEY
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_LOGIN

+
+public static final String PROPERTY_LOGIN
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_LINKS

+
+public static final String PROPERTY_LINKS
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_MESSAGES

+
+public static final String PROPERTY_MESSAGES
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_METHOD

+
+public static final String PROPERTY_METHOD
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_MAX_GEARS

+
+public static final String PROPERTY_MAX_GEARS
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_NAME

+
+public static final String PROPERTY_NAME
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_OPTIONAL_PARAMS

+
+public static final String PROPERTY_OPTIONAL_PARAMS
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_PROPERTIES

+
+public static final String PROPERTY_PROPERTIES
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_PROPERTY

+
+public static final String PROPERTY_PROPERTY
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_PROXY_PORT

+
+public static final String PROPERTY_PROXY_PORT
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_PROXY_HOST

+
+public static final String PROPERTY_PROXY_HOST
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_REL

+
+public static final String PROPERTY_REL
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_REQUIRED_PARAMS

+
+public static final String PROPERTY_REQUIRED_PARAMS
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_RESULT

+
+public static final String PROPERTY_RESULT
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_RHLOGIN

+
+public static final String PROPERTY_RHLOGIN
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_RHC_DOMAIN

+
+public static final String PROPERTY_RHC_DOMAIN
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_SCALABLE

+
+public static final String PROPERTY_SCALABLE
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_SCALE

+
+public static final String PROPERTY_SCALE
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_SEVERITY

+
+public static final String PROPERTY_SEVERITY
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_SSH

+
+public static final String PROPERTY_SSH
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_SSH_KEY

+
+public static final String PROPERTY_SSH_KEY
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_SSH_TYPE

+
+public static final String PROPERTY_SSH_TYPE
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_SSH_URL

+
+public static final String PROPERTY_SSH_URL
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_STATUS

+
+public static final String PROPERTY_STATUS
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_SUFFIX

+
+public static final String PROPERTY_SUFFIX
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_TEXT

+
+public static final String PROPERTY_TEXT
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_TYPE

+
+public static final String PROPERTY_TYPE
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_URL

+
+public static final String PROPERTY_URL
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_USER_INFO

+
+public static final String PROPERTY_USER_INFO
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_UUID

+
+public static final String PROPERTY_UUID
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_VALID_OPTIONS

+
+public static final String PROPERTY_VALID_OPTIONS
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_VALUE

+
+public static final String PROPERTY_VALUE
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PROPERTY_ENVIRONMENT_VARIABLES

+
+public static final String PROPERTY_ENVIRONMENT_VARIABLES
+
+
+
See Also:
Constant Field Values
+
+
+ +

+VALUE_STATUS_OK

+
+public static final String VALUE_STATUS_OK
+
+
+
See Also:
Constant Field Values
+
+
+ +

+VALUE_STATUS_CREATED

+
+public static final String VALUE_STATUS_CREATED
+
+
+
See Also:
Constant Field Values
+
+
+ +

+VALUE_ADD_ALIAS

+
+public static final String VALUE_ADD_ALIAS
+
+
+
See Also:
Constant Field Values
+
+
+ +

+VALUE_FORCESTOP

+
+public static final String VALUE_FORCESTOP
+
+
+
See Also:
Constant Field Values
+
+
+ +

+VALUE_RESTART

+
+public static final String VALUE_RESTART
+
+
+
See Also:
Constant Field Values
+
+
+ +

+VALUE_SCALE_DOWN

+
+public static final String VALUE_SCALE_DOWN
+
+
+
See Also:
Constant Field Values
+
+
+ +

+VALUE_SCALE_UP

+
+public static final String VALUE_SCALE_UP
+
+
+
See Also:
Constant Field Values
+
+
+ +

+VALUE_START

+
+public static final String VALUE_START
+
+
+
See Also:
Constant Field Values
+
+
+ +

+VALUE_STOP

+
+public static final String VALUE_STOP
+
+
+
See Also:
Constant Field Values
+
+
+ +

+VALUE_STATUS

+
+public static final String VALUE_STATUS
+
+
+
See Also:
Constant Field Values
+
+
+ +

+VALUE_REMOVE_ALIAS

+
+public static final String VALUE_REMOVE_ALIAS
+
+
+
See Also:
Constant Field Values
+
+ + + + + + + + +
+Constructor Detail
+ +

+IOpenShiftJsonConstants

+
+public IOpenShiftJsonConstants()
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/utils/IOpenShiftParameterConstants.html b/documentation/com/openshift/internal/client/utils/IOpenShiftParameterConstants.html new file mode 100644 index 00000000..9c6157bc --- /dev/null +++ b/documentation/com/openshift/internal/client/utils/IOpenShiftParameterConstants.html @@ -0,0 +1,283 @@ + + + + + + + +IOpenShiftParameterConstants (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.utils +
+Class IOpenShiftParameterConstants

+
+java.lang.Object
+  extended by com.openshift.internal.client.utils.IOpenShiftParameterConstants
+
+
+
+
public class IOpenShiftParameterConstants
extends Object
+ + +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + +
+Field Summary
+static StringPARAMETER_CARTRIDGES + +
+           
+static StringPARAMETER_INCLUDE + +
+           
+  + + + + + + + + + + +
+Constructor Summary
IOpenShiftParameterConstants() + +
+           
+  + + + + + + + +
+Method Summary
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Field Detail
+ +

+PARAMETER_INCLUDE

+
+public static final String PARAMETER_INCLUDE
+
+
+
See Also:
Constant Field Values
+
+
+ +

+PARAMETER_CARTRIDGES

+
+public static final String PARAMETER_CARTRIDGES
+
+
+
See Also:
Constant Field Values
+
+ + + + + + + + +
+Constructor Detail
+ +

+IOpenShiftParameterConstants

+
+public IOpenShiftParameterConstants()
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/utils/StreamUtils.html b/documentation/com/openshift/internal/client/utils/StreamUtils.html new file mode 100644 index 00000000..7739bd68 --- /dev/null +++ b/documentation/com/openshift/internal/client/utils/StreamUtils.html @@ -0,0 +1,502 @@ + + + + + + + +StreamUtils (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.utils +
+Class StreamUtils

+
+java.lang.Object
+  extended by com.openshift.internal.client.utils.StreamUtils
+
+
+
+
public class StreamUtils
extends Object
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
StreamUtils() + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+static voidclose(InputStream inputStream) + +
+           
+static voidclose(OutputStream outputStream) + +
+           
+static voidclose(Reader reader) + +
+           
+static voidclose(Writer writer) + +
+           
+static voidquietlyClose(InputStream inputStream) + +
+           
+static voidquietlyClose(OutputStream outputStream) + +
+           
+static voidquietlyClose(Reader reader) + +
+           
+static voidquietlyClose(Writer writer) + +
+           
+static StringreadToString(InputStream inputStream) + +
+           
+static StringreadToString(Reader reader) + +
+           
+static voidwriteTo(byte[] data, + OutputStream outputStream) + +
+          Writes the given string to the given output stream.
+static InputStreamwriteTo(InputStream inputStream, + OutputStream outputStream) + +
+          Writes the content of the given input stream to the given output stream + and returns and input stream that may still be used to read from.
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+StreamUtils

+
+public StreamUtils()
+
+
+ + + + + + + + +
+Method Detail
+ +

+writeTo

+
+public static InputStream writeTo(InputStream inputStream,
+                                  OutputStream outputStream)
+                           throws IOException
+
+
Writes the content of the given input stream to the given output stream + and returns and input stream that may still be used to read from. +

+

+
Parameters:
outputStream - the output stream to write to
inputStream - the input stream to read from +
Returns:
a new, unread input stream +
Throws: +
IOException
+
+
+
+ +

+readToString

+
+public static String readToString(InputStream inputStream)
+                           throws IOException
+
+
+ +
Throws: +
IOException
+
+
+
+ +

+readToString

+
+public static String readToString(Reader reader)
+                           throws IOException
+
+
+ +
Throws: +
IOException
+
+
+
+ +

+writeTo

+
+public static void writeTo(byte[] data,
+                           OutputStream outputStream)
+                    throws IOException
+
+
Writes the given string to the given output stream. The stream is closed + after writing all data. +

+

+
Parameters:
data - the data to write
outputStream - the stream to write to +
Throws: +
IOException
+
+
+
+ +

+close

+
+public static void close(InputStream inputStream)
+                  throws IOException
+
+
+ +
Throws: +
IOException
+
+
+
+ +

+quietlyClose

+
+public static void quietlyClose(InputStream inputStream)
+
+
+
+
+
+
+ +

+close

+
+public static void close(OutputStream outputStream)
+                  throws IOException
+
+
+ +
Throws: +
IOException
+
+
+
+ +

+quietlyClose

+
+public static void quietlyClose(OutputStream outputStream)
+
+
+
+
+
+
+ +

+close

+
+public static void close(Reader reader)
+                  throws IOException
+
+
+ +
Throws: +
IOException
+
+
+
+ +

+quietlyClose

+
+public static void quietlyClose(Reader reader)
+
+
+
+
+
+
+ +

+close

+
+public static void close(Writer writer)
+                  throws IOException
+
+
+ +
Throws: +
IOException
+
+
+
+ +

+quietlyClose

+
+public static void quietlyClose(Writer writer)
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/utils/StringUtils.html b/documentation/com/openshift/internal/client/utils/StringUtils.html new file mode 100644 index 00000000..2e1f50c4 --- /dev/null +++ b/documentation/com/openshift/internal/client/utils/StringUtils.html @@ -0,0 +1,335 @@ + + + + + + + +StringUtils (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.utils +
+Class StringUtils

+
+java.lang.Object
+  extended by com.openshift.internal.client.utils.StringUtils
+
+
+
+
public class StringUtils
extends Object
+ + +

+

+
Author:
+
André Dietisheim
+
+
+ +

+ + + + + + + + + + + +
+Constructor Summary
StringUtils() + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+static booleanisEmpty(String string) + +
+           
+static StringnullToEmptyString(String string) + +
+           
+static StringprependIfNonEmpty(String prefix, + String string) + +
+           
+static StringtoLowerCase(Enum<?> aEnum) + +
+           
+static StringtoLowerCase(String message) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Constructor Detail
+ +

+StringUtils

+
+public StringUtils()
+
+
+ + + + + + + + +
+Method Detail
+ +

+toLowerCase

+
+public static String toLowerCase(String message)
+
+
+
+
+
+
+ +

+toLowerCase

+
+public static String toLowerCase(Enum<?> aEnum)
+
+
+
+
+
+
+ +

+isEmpty

+
+public static boolean isEmpty(String string)
+
+
+
+
+
+
+ +

+prependIfNonEmpty

+
+public static String prependIfNonEmpty(String prefix,
+                                       String string)
+
+
+
+
+
+
+ +

+nullToEmptyString

+
+public static String nullToEmptyString(String string)
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/utils/UrlUtils.html b/documentation/com/openshift/internal/client/utils/UrlUtils.html new file mode 100644 index 00000000..01f05ed9 --- /dev/null +++ b/documentation/com/openshift/internal/client/utils/UrlUtils.html @@ -0,0 +1,337 @@ + + + + + + + +UrlUtils (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+ +

+ +com.openshift.internal.client.utils +
+Class UrlUtils

+
+java.lang.Object
+  extended by com.openshift.internal.client.utils.UrlUtils
+
+
+
+
public class UrlUtils
extends Object
+ + +

+

+
Author:
+
Andre Dietisheim
+
+
+ +

+ + + + + + + + + + + + + + + +
+Field Summary
+static StringSCHEME_HTTPS + +
+           
+static charUSERNAME_SEPARATOR + +
+           
+  + + + + + + + + + + + + + + + + + + + + + + + +
+Method Summary
+static StringappendPath(String parent, + String child) + +
+           
+static StringensureStartsWithHttps(String url) + +
+           
+static booleanisUrl(String string) + +
+           
+static StringtoString(URL url) + +
+           
+ + + + + + + +
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
+  +

+ + + + + + + + +
+Field Detail
+ +

+SCHEME_HTTPS

+
+public static final String SCHEME_HTTPS
+
+
+
See Also:
Constant Field Values
+
+
+ +

+USERNAME_SEPARATOR

+
+public static final char USERNAME_SEPARATOR
+
+
+
See Also:
Constant Field Values
+
+ + + + + + + + +
+Method Detail
+ +

+ensureStartsWithHttps

+
+public static String ensureStartsWithHttps(String url)
+
+
+
+
+
+
+ +

+isUrl

+
+public static boolean isUrl(String string)
+
+
+
+
+
+
+ +

+appendPath

+
+public static String appendPath(String parent,
+                                String child)
+
+
+
+
+
+
+ +

+toString

+
+public static String toString(URL url)
+
+
+
+
+
+ +
+ + + + + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/utils/class-use/Assert.AssertionFailedException.html b/documentation/com/openshift/internal/client/utils/class-use/Assert.AssertionFailedException.html new file mode 100644 index 00000000..a9f09e7d --- /dev/null +++ b/documentation/com/openshift/internal/client/utils/class-use/Assert.AssertionFailedException.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.utils.Assert.AssertionFailedException (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.utils.Assert.AssertionFailedException

+
+No usage of com.openshift.internal.client.utils.Assert.AssertionFailedException +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/utils/class-use/Assert.html b/documentation/com/openshift/internal/client/utils/class-use/Assert.html new file mode 100644 index 00000000..5bf74612 --- /dev/null +++ b/documentation/com/openshift/internal/client/utils/class-use/Assert.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.utils.Assert (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.utils.Assert

+
+No usage of com.openshift.internal.client.utils.Assert +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/utils/class-use/CollectionUtils.html b/documentation/com/openshift/internal/client/utils/class-use/CollectionUtils.html new file mode 100644 index 00000000..bee9415f --- /dev/null +++ b/documentation/com/openshift/internal/client/utils/class-use/CollectionUtils.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.utils.CollectionUtils (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.utils.CollectionUtils

+
+No usage of com.openshift.internal.client.utils.CollectionUtils +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/utils/class-use/IOpenShiftJsonConstants.html b/documentation/com/openshift/internal/client/utils/class-use/IOpenShiftJsonConstants.html new file mode 100644 index 00000000..598cc257 --- /dev/null +++ b/documentation/com/openshift/internal/client/utils/class-use/IOpenShiftJsonConstants.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.utils.IOpenShiftJsonConstants (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.utils.IOpenShiftJsonConstants

+
+No usage of com.openshift.internal.client.utils.IOpenShiftJsonConstants +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/utils/class-use/IOpenShiftParameterConstants.html b/documentation/com/openshift/internal/client/utils/class-use/IOpenShiftParameterConstants.html new file mode 100644 index 00000000..7bb4a23f --- /dev/null +++ b/documentation/com/openshift/internal/client/utils/class-use/IOpenShiftParameterConstants.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.utils.IOpenShiftParameterConstants (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.utils.IOpenShiftParameterConstants

+
+No usage of com.openshift.internal.client.utils.IOpenShiftParameterConstants +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/utils/class-use/StreamUtils.html b/documentation/com/openshift/internal/client/utils/class-use/StreamUtils.html new file mode 100644 index 00000000..185fadff --- /dev/null +++ b/documentation/com/openshift/internal/client/utils/class-use/StreamUtils.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.utils.StreamUtils (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.utils.StreamUtils

+
+No usage of com.openshift.internal.client.utils.StreamUtils +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/utils/class-use/StringUtils.html b/documentation/com/openshift/internal/client/utils/class-use/StringUtils.html new file mode 100644 index 00000000..388c7d5c --- /dev/null +++ b/documentation/com/openshift/internal/client/utils/class-use/StringUtils.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.utils.StringUtils (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.utils.StringUtils

+
+No usage of com.openshift.internal.client.utils.StringUtils +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/utils/class-use/UrlUtils.html b/documentation/com/openshift/internal/client/utils/class-use/UrlUtils.html new file mode 100644 index 00000000..1aec9566 --- /dev/null +++ b/documentation/com/openshift/internal/client/utils/class-use/UrlUtils.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Class com.openshift.internal.client.utils.UrlUtils (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Class
com.openshift.internal.client.utils.UrlUtils

+
+No usage of com.openshift.internal.client.utils.UrlUtils +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/utils/package-frame.html b/documentation/com/openshift/internal/client/utils/package-frame.html new file mode 100644 index 00000000..34eb20b7 --- /dev/null +++ b/documentation/com/openshift/internal/client/utils/package-frame.html @@ -0,0 +1,56 @@ + + + + + + + +com.openshift.internal.client.utils (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + +com.openshift.internal.client.utils + + + + +
+Classes  + +
+Assert +
+CollectionUtils +
+IOpenShiftJsonConstants +
+IOpenShiftParameterConstants +
+StreamUtils +
+StringUtils +
+UrlUtils
+ + + + + + +
+Exceptions  + +
+Assert.AssertionFailedException
+ + + + diff --git a/documentation/com/openshift/internal/client/utils/package-summary.html b/documentation/com/openshift/internal/client/utils/package-summary.html new file mode 100644 index 00000000..c6ebb677 --- /dev/null +++ b/documentation/com/openshift/internal/client/utils/package-summary.html @@ -0,0 +1,196 @@ + + + + + + + +com.openshift.internal.client.utils (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+

+Package com.openshift.internal.client.utils +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class Summary
Assert 
CollectionUtils 
IOpenShiftJsonConstants 
IOpenShiftParameterConstants 
StreamUtils 
StringUtils 
UrlUtils 
+  + +

+ + + + + + + + + +
+Exception Summary
Assert.AssertionFailedException 
+  + +

+

+
+
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/utils/package-tree.html b/documentation/com/openshift/internal/client/utils/package-tree.html new file mode 100644 index 00000000..c4225052 --- /dev/null +++ b/documentation/com/openshift/internal/client/utils/package-tree.html @@ -0,0 +1,161 @@ + + + + + + + +com.openshift.internal.client.utils Class Hierarchy (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Hierarchy For Package com.openshift.internal.client.utils +

+
+
+
Package Hierarchies:
All Packages
+
+

+Class Hierarchy +

+ +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/com/openshift/internal/client/utils/package-use.html b/documentation/com/openshift/internal/client/utils/package-use.html new file mode 100644 index 00000000..c8d925c0 --- /dev/null +++ b/documentation/com/openshift/internal/client/utils/package-use.html @@ -0,0 +1,145 @@ + + + + + + + +Uses of Package com.openshift.internal.client.utils (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Uses of Package
com.openshift.internal.client.utils

+
+No usage of com.openshift.internal.client.utils +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/constant-values.html b/documentation/constant-values.html new file mode 100644 index 00000000..993289c3 --- /dev/null +++ b/documentation/constant-values.html @@ -0,0 +1,1237 @@ + + + + + + + +Constant Field Values (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Constant Field Values

+
+
+Contents + + + + + + +
+com.openshift.*
+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
com.openshift.client.IHttpClient
+public static final charAMPERSAND38
+public static final StringAUTHORIZATION_BASIC"Basic"
+public static final charCOLON58
+public static final charCOMMA44
+public static final intDEFAULT_CONNECT_TIMEOUT10000
+public static final intDEFAULT_READ_TIMEOUT120000
+public static final charEQUALS61
+public static final StringHTTP"http"
+public static final StringMEDIATYPE_APPLICATION_FORMURLENCODED"application/x-www-form-urlencoded"
+public static final StringMEDIATYPE_APPLICATION_JSON"application/json"
+public static final StringMEDIATYPE_APPLICATION_XML"application/xml"
+public static final intNO_TIMEOUT0
+public static final StringPROPERTY_ACCEPT"Accept"
+public static final StringPROPERTY_AUTHIV"broker_auth_iv"
+public static final StringPROPERTY_AUTHKEY"broker_auth_key"
+public static final StringPROPERTY_AUTHORIZATION"Authorization"
+public static final StringPROPERTY_CONTENT_TYPE"Content-Type"
+public static final StringPROPERTY_USER_AGENT"User-Agent"
+public static final charQUESTION_MARK63
+public static final charSEMICOLON59
+public static final charSLASH47
+public static final charSPACE32
+public static final intSTATUS_BAD_REQUEST400
+public static final intSTATUS_INTERNAL_SERVER_ERROR500
+public static final intSTATUS_NOT_FOUND404
+public static final intSTATUS_OK200
+public static final intSTATUS_UNAUTHORIZED401
+public static final StringSYSPROP_DEFAULT_CONNECT_TIMEOUT"sun.net.client.defaultConnectTimeout"
+public static final StringSYSPROP_DEFAULT_READ_TIMEOUT"sun.net.client.defaultReadTimeout"
+public static final StringSYSPROP_OPENSHIFT_CONNECT_TIMEOUT"com.openshift.httpclient.connect.timeout"
+public static final StringSYSPROP_OPENSHIFT_READ_TIMEOUT"com.openshift.httpclient.read.timeout"
+public static final StringVERSION"version"
+ +

+ +

+ + + + + + + + + + + + +
com.openshift.client.IUser
+public static final StringID"com.openshift.client"
+ +

+ +

+ + + + + + + + + + + + +
com.openshift.client.cartridge.ICartridge
+public static final charNAME_VERSION_DELIMITER45
+ +

+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
com.openshift.client.cartridge.IEmbeddableCartridge
+public static final StringNAME_10GEN_MMS_AGENT"10gen-mms-agent"
+public static final StringNAME_CRON"cron"
+public static final StringNAME_HAPROXY"haproxy"
+public static final StringNAME_JENKINS_CLIENT"jenkins-client"
+public static final StringNAME_METRICS"metrics"
+public static final StringNAME_MONGODB"mongodb"
+public static final StringNAME_MYSQL"mysql"
+public static final StringNAME_PHPMYADMIN"phpmyadmin"
+public static final StringNAME_POSTGRESQL"postgresql"
+public static final StringNAME_ROCKMONGO"rockmongo"
+public static final StringNAME_SWITCHYARD"switchyard"
+ +

+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
com.openshift.client.cartridge.IStandaloneCartridge
+public static final StringNAME_JBOSSAS"jbossas"
+public static final StringNAME_JBOSSEAP"jbosseap"
+public static final StringNAME_JBOSSEWS"jbossews"
+public static final StringNAME_JENKINS"jenkins"
+public static final StringNAME_PERL"perl"
+public static final StringNAME_PHP"php"
+public static final StringNAME_PYTHON"python"
+public static final StringNAME_RUBY"ruby"
+public static final StringNAME_ZEND"zend"
+ +

+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
com.openshift.client.configuration.AbstractOpenshiftConfiguration
+protected static final StringKEY_CLIENT_ID"client_id"
+protected static final StringKEY_LIBRA_DOMAIN"libra_domain"
+protected static final StringKEY_LIBRA_SERVER"libra_server"
+protected static final StringKEY_PASSWORD"rhpassword"
+protected static final StringKEY_RHLOGIN"default_rhlogin"
+ +

+ +

+ + + + + + + + + + + + + + + + + +
com.openshift.client.configuration.DefaultConfiguration
+public static final StringLIBRA_DOMAIN"rhcloud.com"
+public static final StringLIBRA_SERVER"openshift.redhat.com"
+ +

+ +

+ + + + + + + + + + + + + + + + + +
com.openshift.internal.client.IRestService
+public static final StringSERVICE_PATH"/broker/rest/"
+public static final StringSERVICE_VERSION"1.2"
+ +

+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
com.openshift.internal.client.response.CartridgeResourceProperties
+public static final StringCONNECTION_URL"connection_url"
+public static final StringDATABASE_NAME"database_name"
+public static final StringJOB_URL"job_url"
+public static final StringPASSWORD"password"
+public static final StringUSERNAME"username"
+ +

+ +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
com.openshift.internal.client.utils.IOpenShiftJsonConstants
+public static final StringPROPERTY_ACTION"action"
+public static final StringPROPERTY_ALIAS"alias"
+public static final StringPROPERTY_ALIASES"aliases"
+public static final StringPROPERTY_ALTER"alter"
+public static final StringPROPERTY_APP_INFO"app_info"
+public static final StringPROPERTY_APP_NAME"app_name"
+public static final StringPROPERTY_APP_URL"app_url"
+public static final StringPROPERTY_CARTRIDGE"cartridge"
+public static final StringPROPERTY_CARTRIDGES"cartridges"
+public static final StringPROPERTY_CONSUMED_GEARS"consumed_gears"
+public static final StringPROPERTY_CONTENT"content"
+public static final StringPROPERTY_CREATION_TIME"creation_time"
+public static final StringPROPERTY_DATA"data"
+public static final StringPROPERTY_DEBUG"debug"
+public static final StringPROPERTY_DEFAULT_VALUE"default_value"
+public static final StringPROPERTY_DELETE"delete"
+public static final StringPROPERTY_DESCRIPTION"description"
+public static final StringPROPERTY_DISPLAY_NAME"display_name"
+public static final StringPROPERTY_DOMAIN"domain"
+public static final StringPROPERTY_DOMAIN_ID"domain_id"
+public static final StringPROPERTY_DOMAINS"domains"
+public static final StringPROPERTY_EMBEDDED"embedded"
+public static final StringPROPERTY_ENVIRONMENT_VARIABLES"environment_variables"
+public static final StringPROPERTY_EVENT"event"
+public static final StringPROPERTY_EXIT_CODE"exit_code"
+public static final StringPROPERTY_FIELD"field"
+public static final StringPROPERTY_FORCE"force"
+public static final StringPROPERTY_FRAMEWORK"framework"
+public static final StringPROPERTY_GEAR_PROFILE"gear_profile"
+public static final StringPROPERTY_GEAR_STATE"state"
+public static final StringPROPERTY_GEARS"gears"
+public static final StringPROPERTY_GIT_URL"git_url"
+public static final StringPROPERTY_HEALTH_CHECK_PATH"health_check_path"
+public static final StringPROPERTY_HREF"href"
+public static final StringPROPERTY_ID"id"
+public static final StringPROPERTY_INFO"info"
+public static final StringPROPERTY_INITIAL_GIT_URL"initial_git_url"
+public static final StringPROPERTY_INTERNAL_PORT"internal_port"
+public static final StringPROPERTY_KEY"key"
+public static final StringPROPERTY_KEY_TYPE"key_type"
+public static final StringPROPERTY_KEYS"keys"
+public static final StringPROPERTY_LINKS"links"
+public static final StringPROPERTY_LOGIN"login"
+public static final StringPROPERTY_MAX_GEARS"max_gears"
+public static final StringPROPERTY_MESSAGES"messages"
+public static final StringPROPERTY_METHOD"method"
+public static final StringPROPERTY_NAME"name"
+public static final StringPROPERTY_OPTIONAL_PARAMS"optional_params"
+public static final StringPROPERTY_PROPERTIES"properties"
+public static final StringPROPERTY_PROPERTY"property"
+public static final StringPROPERTY_PROXY_HOST"proxy_host"
+public static final StringPROPERTY_PROXY_PORT"proxy_port"
+public static final StringPROPERTY_REL"rel"
+public static final StringPROPERTY_REQUIRED_PARAMS"required_params"
+public static final StringPROPERTY_RESULT"result"
+public static final StringPROPERTY_RHC_DOMAIN"rhc_domain"
+public static final StringPROPERTY_RHLOGIN"rhlogin"
+public static final StringPROPERTY_SCALABLE"scalable"
+public static final StringPROPERTY_SCALE"scale"
+public static final StringPROPERTY_SEVERITY"severity"
+public static final StringPROPERTY_SSH"ssh"
+public static final StringPROPERTY_SSH_KEY"ssh_key"
+public static final StringPROPERTY_SSH_TYPE"ssh_type"
+public static final StringPROPERTY_SSH_URL"ssh_url"
+public static final StringPROPERTY_STATUS"status"
+public static final StringPROPERTY_SUFFIX"suffix"
+public static final StringPROPERTY_TEXT"text"
+public static final StringPROPERTY_TYPE"type"
+public static final StringPROPERTY_URL"url"
+public static final StringPROPERTY_USER_INFO"user_info"
+public static final StringPROPERTY_UUID"uuid"
+public static final StringPROPERTY_VALID_OPTIONS"valid_options"
+public static final StringPROPERTY_VALUE"value"
+public static final StringVALUE_ADD_ALIAS"add-alias"
+public static final StringVALUE_FORCESTOP"force-stop"
+public static final StringVALUE_REMOVE_ALIAS"remove-alias"
+public static final StringVALUE_RESTART"restart"
+public static final StringVALUE_SCALE_DOWN"scale-down"
+public static final StringVALUE_SCALE_UP"scale-up"
+public static final StringVALUE_START"start"
+public static final StringVALUE_STATUS"status"
+public static final StringVALUE_STATUS_CREATED"created"
+public static final StringVALUE_STATUS_OK"ok"
+public static final StringVALUE_STOP"stop"
+ +

+ +

+ + + + + + + + + + + + + + + + + +
com.openshift.internal.client.utils.IOpenShiftParameterConstants
+public static final StringPARAMETER_CARTRIDGES"cartridges"
+public static final StringPARAMETER_INCLUDE"include"
+ +

+ +

+ + + + + + + + + + + + + + + + + +
com.openshift.internal.client.utils.UrlUtils
+public static final StringSCHEME_HTTPS"https://"
+public static final charUSERNAME_SEPARATOR64
+ +

+ +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/deprecated-list.html b/documentation/deprecated-list.html new file mode 100644 index 00000000..086f3cdb --- /dev/null +++ b/documentation/deprecated-list.html @@ -0,0 +1,147 @@ + + + + + + + +Deprecated List (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Deprecated API

+
+
+Contents
    +
+ +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/help-doc.html b/documentation/help-doc.html new file mode 100644 index 00000000..9f09995e --- /dev/null +++ b/documentation/help-doc.html @@ -0,0 +1,224 @@ + + + + + + + +API Help (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+How This API Document Is Organized

+
+This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.

+Overview

+
+ +

+The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.

+

+Package

+
+ +

+Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain four categories:

    +
  • Interfaces (italic)
  • Classes
  • Enums
  • Exceptions
  • Errors
  • Annotation Types
+
+

+Class/Interface

+
+ +

+Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:

    +
  • Class inheritance diagram
  • Direct Subclasses
  • All Known Subinterfaces
  • All Known Implementing Classes
  • Class/interface declaration
  • Class/interface description +

    +

  • Nested Class Summary
  • Field Summary
  • Constructor Summary
  • Method Summary +

    +

  • Field Detail
  • Constructor Detail
  • Method Detail
+Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.
+ +

+Annotation Type

+
+ +

+Each annotation type has its own separate page with the following sections:

    +
  • Annotation Type declaration
  • Annotation Type description
  • Required Element Summary
  • Optional Element Summary
  • Element Detail
+
+ +

+Enum

+
+ +

+Each enum has its own separate page with the following sections:

    +
  • Enum declaration
  • Enum description
  • Enum Constant Summary
  • Enum Constant Detail
+
+

+Use

+
+Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.
+

+Tree (Class Hierarchy)

+
+There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.
    +
  • When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.
  • When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.
+
+

+Deprecated API

+
+The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.
+

+Index

+
+The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.
+

+Prev/Next

+These links take you to the next or previous class, interface, package, or related page.

+Frames/No Frames

+These links show and hide the HTML frames. All pages are available with or without frames. +

+

+Serialized Form

+Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description. +

+

+Constant Field Values

+The Constant Field Values page lists the static final fields and their values. +

+ + +This help file applies to API documentation generated using the standard doclet. + +
+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/index-all.html b/documentation/index-all.html new file mode 100644 index 00000000..4bd56e51 --- /dev/null +++ b/documentation/index-all.html @@ -0,0 +1,3402 @@ + + + + + + + +Index (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +A B C D E F G H I J K L M N O P Q R S T U V W Z
+

+A

+
+
AbstractCartridgeQuery - Class in com.openshift.internal.client.cartridge
A base class for a constraint that shall match available embeddable + cartridges (on the platform).
AbstractCartridgeQuery() - +Constructor for class com.openshift.internal.client.cartridge.AbstractCartridgeQuery +
  +
AbstractOpenshiftConfiguration - Class in com.openshift.client.configuration
 
AbstractOpenshiftConfiguration() - +Constructor for class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
AbstractOpenshiftConfiguration(IOpenShiftConfiguration) - +Constructor for class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
AbstractOpenshiftConfiguration(File, IOpenShiftConfiguration) - +Constructor for class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
AbstractOpenShiftConnectionFactory - Class in com.openshift.internal.client
Connection Factory, used to establish a connection and retrieve a user.
AbstractOpenShiftConnectionFactory() - +Constructor for class com.openshift.internal.client.AbstractOpenShiftConnectionFactory +
  +
AbstractOpenShiftResource - Class in com.openshift.internal.client
The Class AbstractOpenShiftResource.
AbstractOpenShiftResource(IRestService) - +Constructor for class com.openshift.internal.client.AbstractOpenShiftResource +
Instantiates a new abstract open shift resource. +
AbstractOpenShiftResource(IRestService, Map<String, Link>, Messages) - +Constructor for class com.openshift.internal.client.AbstractOpenShiftResource +
Instantiates a new abstract open shift resource. +
AbstractOpenShiftResource.Parameters - Class in com.openshift.internal.client
 
AbstractOpenShiftResource.Parameters() - +Constructor for class com.openshift.internal.client.AbstractOpenShiftResource.Parameters +
  +
AbstractOpenShiftResource.ServiceRequest - Class in com.openshift.internal.client
 
AbstractOpenShiftResource.ServiceRequest(String) - +Constructor for class com.openshift.internal.client.AbstractOpenShiftResource.ServiceRequest +
  +
AbstractSSHKey - Class in com.openshift.internal.client.ssh
 
AbstractSSHKey(SSHKeyType) - +Constructor for class com.openshift.internal.client.ssh.AbstractSSHKey +
  +
acceptedMediaType - +Variable in class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
acceptedVersion - +Variable in class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
add(String, String) - +Method in class com.openshift.internal.client.AbstractOpenShiftResource.Parameters +
  +
add(Parameter) - +Method in class com.openshift.internal.client.AbstractOpenShiftResource.Parameters +
  +
add(String, String) - +Method in class com.openshift.internal.client.httpclient.request.ParameterValueArray +
  +
add(ParameterValue<?>) - +Method in class com.openshift.internal.client.httpclient.request.ParameterValueArray +
  +
add(String, String) - +Method in class com.openshift.internal.client.httpclient.request.ParameterValueMap +
  +
add(Parameter) - +Method in class com.openshift.internal.client.httpclient.request.ParameterValueMap +
  +
add(String, CartridgeResourceProperty) - +Method in class com.openshift.internal.client.response.CartridgeResourceProperties +
  +
addAlias(String) - +Method in interface com.openshift.client.IApplication +
Add application alias +
addAlias(String) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
addAll(List<? extends ParameterValue<?>>) - +Method in class com.openshift.internal.client.httpclient.request.ParameterValueArray +
  +
addAll(List<? extends Parameter>) - +Method in class com.openshift.internal.client.httpclient.request.ParameterValueMap +
  +
addCartridge(IEmbeddableCartridge) - +Method in class com.openshift.internal.client.AbstractOpenShiftResource.Parameters +
  +
addCartridges(IStandaloneCartridge, IEmbeddableCartridge[]) - +Method in class com.openshift.internal.client.AbstractOpenShiftResource.Parameters +
  +
addEmbeddableCartridge(IEmbeddableCartridge) - +Method in interface com.openshift.client.IApplication +
Adds the given embeddable cartridge to this application. +
addEmbeddableCartridge(IEmbeddableCartridge) - +Method in class com.openshift.internal.client.ApplicationResource +
Adds the given embedded cartridge to this application. +
addEmbeddableCartridges(Collection<IEmbeddableCartridge>) - +Method in interface com.openshift.client.IApplication +
Adds all given embedded cartridges from this app, given their names. +
addEmbeddableCartridges(Collection<IEmbeddableCartridge>) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
addEnvironmentVariable(String, String) - +Method in interface com.openshift.client.IApplication +
Adds an environment variable to this application. +
addEnvironmentVariable(String, String) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
addEnvironmentVariables(Map<String, String>) - +Method in interface com.openshift.client.IApplication +
Adds a map of environment variables to the application +
addEnvironmentVariables(Map<String, String>) - +Method in class com.openshift.internal.client.AbstractOpenShiftResource.Parameters +
  +
addEnvironmentVariables(Map<String, String>) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
allStandaloneCartridges(IApplication) - +Method in class com.openshift.client.cartridge.selector.LatestVersionQuery +
  +
AMPERSAND - +Static variable in interface com.openshift.client.IHttpClient +
  +
APIResource - Class in com.openshift.internal.client
 
APIResource(String, String, IRestService, Map<String, Link>) - +Constructor for class com.openshift.internal.client.APIResource +
  +
appendPath(String, String) - +Static method in class com.openshift.internal.client.utils.UrlUtils +
  +
APPINFO - +Static variable in interface com.openshift.client.IField +
  +
ApplicationBuilder - Class in com.openshift.client
 
ApplicationBuilder(IDomain) - +Constructor for class com.openshift.client.ApplicationBuilder +
  +
ApplicationBuilder.CartridgeHolder - Class in com.openshift.client
 
ApplicationBuilder.CartridgeHolder() - +Constructor for class com.openshift.client.ApplicationBuilder.CartridgeHolder +
  +
ApplicationBuilder.NamedCartridgeHolder - Class in com.openshift.client
 
ApplicationBuilder.NamedCartridgeHolder() - +Constructor for class com.openshift.client.ApplicationBuilder.NamedCartridgeHolder +
  +
ApplicationPortForwarding - Class in com.openshift.internal.client.ssh
 
ApplicationPortForwarding(IApplication, String, String, int) - +Constructor for class com.openshift.internal.client.ssh.ApplicationPortForwarding +
  +
ApplicationResource - Class in com.openshift.internal.client
The ApplicationResource object is an implementation of com.openshift.client.IApplication, and provides + a runtime model for the real application that resides on the OpenShift platform being accessed.
ApplicationResource(ApplicationResourceDTO, DomainResource) - +Constructor for class com.openshift.internal.client.ApplicationResource +
  +
ApplicationResource(String, String, String, Messages, String, String, String, String, IGearProfile, ApplicationScale, List<String>, Map<String, CartridgeResourceDTO>, Map<String, Link>, DomainResource) - +Constructor for class com.openshift.internal.client.ApplicationResource +
Instantiates a new application. +
ApplicationResource.SshStreams - Enum in com.openshift.internal.client
 
ApplicationResourceDTO - Class in com.openshift.internal.client.response
The Class ApplicationDTO.
ApplicationScale - Enum in com.openshift.client
Enum to indicate the support for scalability when creating a new application
ARRAY - +Static variable in class com.openshift.internal.client.response.LinkParameterType +
  +
Assert - Class in com.openshift.internal.client.utils
 
Assert() - +Constructor for class com.openshift.internal.client.utils.Assert +
  +
Assert.AssertionFailedException - Exception in com.openshift.internal.client.utils
 
Assert.AssertionFailedException() - +Constructor for exception com.openshift.internal.client.utils.Assert.AssertionFailedException +
  +
authIV - +Variable in class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
authKey - +Variable in class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
AUTHORIZATION_BASIC - +Static variable in interface com.openshift.client.IHttpClient +
  +
+
+

+B

+
+
BadRequestException - Exception in com.openshift.internal.client.httpclient
 
BadRequestException(String, Throwable) - +Constructor for exception com.openshift.internal.client.httpclient.BadRequestException +
  +
BadRequestException(Throwable) - +Constructor for exception com.openshift.internal.client.httpclient.BadRequestException +
  +
Base64Coder - Class in com.openshift.client.utils
A utility class that offers methods to encode and decode strings from and to + base64
BaseCartridge - Class in com.openshift.internal.client.cartridge
A (base) cartridge for an OpenShift application.
BaseCartridge(String) - +Constructor for class com.openshift.internal.client.cartridge.BaseCartridge +
  +
BaseCartridge(URL) - +Constructor for class com.openshift.internal.client.cartridge.BaseCartridge +
  +
BaseCartridge(String, URL) - +Constructor for class com.openshift.internal.client.cartridge.BaseCartridge +
  +
BaseCartridge(String, String, String) - +Constructor for class com.openshift.internal.client.cartridge.BaseCartridge +
  +
BaseCartridge(String, URL, String, String) - +Constructor for class com.openshift.internal.client.cartridge.BaseCartridge +
  +
BaseResourceDTO - Class in com.openshift.internal.client.response
The Class BaseResourceDTO.
BaseResourceDTO() - +Constructor for class com.openshift.internal.client.response.BaseResourceDTO +
  +
BaseResourceDTO(Map<String, Link>, Messages) - +Constructor for class com.openshift.internal.client.response.BaseResourceDTO +
Instantiates a new base resource dto. +
BOOLEAN - +Static variable in class com.openshift.internal.client.response.LinkParameterType +
  +
build() - +Method in class com.openshift.client.ApplicationBuilder.NamedCartridgeHolder +
  +
+
+

+C

+
+
canCreateApplicationWithEnvironmentVariables() - +Method in interface com.openshift.client.IDomain +
Returns true if this domain can create application with environment variables. +
canCreateApplicationWithEnvironmentVariables() - +Method in class com.openshift.internal.client.DomainResource +
  +
canGetEnvironmentVariables() - +Method in interface com.openshift.client.IApplication +
Used to determine if environment variables exist and are available to be retrieved +
canGetEnvironmentVariables() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
canResolv(String) - +Static method in class com.openshift.client.utils.HostUtils +
  +
canResolv(String) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
canUpdateEnvironmentVariables() - +Method in interface com.openshift.client.IApplication +
Used to determine if the current instance is able to update environment variables. +
canUpdateEnvironmentVariables() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
CartridgePropertyQuery - Class in com.openshift.client.cartridge.selector
 
CartridgePropertyQuery() - +Constructor for class com.openshift.client.cartridge.selector.CartridgePropertyQuery +
  +
CartridgeResourceDTO - Class in com.openshift.internal.client.response
 
CartridgeResourceDTO(String, CartridgeType, CartridgeResourceProperties) - +Constructor for class com.openshift.internal.client.response.CartridgeResourceDTO +
  +
CartridgeResourceDTO(String, String, String, String, URL, CartridgeResourceProperties, Map<String, Link>, Messages) - +Constructor for class com.openshift.internal.client.response.CartridgeResourceDTO +
  +
CartridgeResourceProperties - Class in com.openshift.internal.client.response
Properties that hold informations available in cartridges
CartridgeResourceProperties() - +Constructor for class com.openshift.internal.client.response.CartridgeResourceProperties +
  +
CartridgeResourceProperty - Class in com.openshift.internal.client.response
 
CartridgeResourceProperty(String, String) - +Constructor for class com.openshift.internal.client.response.CartridgeResourceProperty +
Constructor called when embedded cartridges are listed within an + application. +
CartridgeResourceProperty(String, String, String, String) - +Constructor for class com.openshift.internal.client.response.CartridgeResourceProperty +
Constructor called when embedded cartridges are listed on their own (when + /cartridges resource is queried. +
CartridgeType - Enum in com.openshift.internal.client
 
client() - +Method in class com.openshift.internal.client.httpclient.UrlConnectionHttpClientBuilder +
  +
close(InputStream) - +Static method in class com.openshift.internal.client.utils.StreamUtils +
  +
close(OutputStream) - +Static method in class com.openshift.internal.client.utils.StreamUtils +
  +
close(Reader) - +Static method in class com.openshift.internal.client.utils.StreamUtils +
  +
close(Writer) - +Static method in class com.openshift.internal.client.utils.StreamUtils +
  +
CollectionUtils - Class in com.openshift.internal.client.utils
 
CollectionUtils() - +Constructor for class com.openshift.internal.client.utils.CollectionUtils +
  +
COLON - +Static variable in interface com.openshift.client.IHttpClient +
  +
com.openshift.client - package com.openshift.client
 
com.openshift.client.cartridge - package com.openshift.client.cartridge
 
com.openshift.client.cartridge.selector - package com.openshift.client.cartridge.selector
 
com.openshift.client.configuration - package com.openshift.client.configuration
 
com.openshift.client.utils - package com.openshift.client.utils
 
com.openshift.internal.client - package com.openshift.internal.client
 
com.openshift.internal.client.cartridge - package com.openshift.internal.client.cartridge
 
com.openshift.internal.client.httpclient - package com.openshift.internal.client.httpclient
 
com.openshift.internal.client.httpclient.request - package com.openshift.internal.client.httpclient.request
 
com.openshift.internal.client.response - package com.openshift.internal.client.response
 
com.openshift.internal.client.ssh - package com.openshift.internal.client.ssh
 
com.openshift.internal.client.utils - package com.openshift.internal.client.utils
 
COMMA - +Static variable in interface com.openshift.client.IHttpClient +
  +
compareTo(LatestVersionQuery.VersionedName) - +Method in class com.openshift.client.cartridge.selector.LatestVersionQuery.VersionedName +
  +
CONNECTION_URL - +Static variable in class com.openshift.internal.client.response.CartridgeResourceProperties +
  +
create(String, String, String) - +Static method in class com.openshift.client.SSHKeyPair +
  +
create(SSHKeyType, String, String, String) - +Static method in class com.openshift.client.SSHKeyPair +
Creates private and public ssh-rsa keys and stores them to the given + paths. +
createApplication(String, IStandaloneCartridge) - +Method in interface com.openshift.client.IDomain +
  +
createApplication(String, IStandaloneCartridge, String) - +Method in interface com.openshift.client.IDomain +
  +
createApplication(String, IStandaloneCartridge, ApplicationScale) - +Method in interface com.openshift.client.IDomain +
  +
createApplication(String, IStandaloneCartridge, IGearProfile) - +Method in interface com.openshift.client.IDomain +
  +
createApplication(String, IStandaloneCartridge, ApplicationScale, IGearProfile) - +Method in interface com.openshift.client.IDomain +
  +
createApplication(String, IStandaloneCartridge, ApplicationScale, IGearProfile, String) - +Method in interface com.openshift.client.IDomain +
Creates a new application with the given name and the given + cartridge/framework. +
createApplication(String, IStandaloneCartridge, ApplicationScale, IGearProfile, String, int, IEmbeddableCartridge...) - +Method in interface com.openshift.client.IDomain +
Creates a new application with the given name and the given + cartridge/framework. +
createApplication(String, IStandaloneCartridge, ApplicationScale, IGearProfile, String, int, Map<String, String>, IEmbeddableCartridge...) - +Method in interface com.openshift.client.IDomain +
Creates a new application with the given name and the given + cartridge/framework. +
createApplication(String, IStandaloneCartridge) - +Method in class com.openshift.internal.client.DomainResource +
  +
createApplication(String, IStandaloneCartridge, ApplicationScale) - +Method in class com.openshift.internal.client.DomainResource +
  +
createApplication(String, IStandaloneCartridge, String) - +Method in class com.openshift.internal.client.DomainResource +
  +
createApplication(String, IStandaloneCartridge, ApplicationScale, String) - +Method in class com.openshift.internal.client.DomainResource +
  +
createApplication(String, IStandaloneCartridge, IGearProfile) - +Method in class com.openshift.internal.client.DomainResource +
  +
createApplication(String, IStandaloneCartridge, IGearProfile, String) - +Method in class com.openshift.internal.client.DomainResource +
  +
createApplication(String, IStandaloneCartridge, ApplicationScale, IGearProfile) - +Method in class com.openshift.internal.client.DomainResource +
  +
createApplication(String, IStandaloneCartridge, ApplicationScale, IGearProfile, String) - +Method in class com.openshift.internal.client.DomainResource +
  +
createApplication(String, IStandaloneCartridge, ApplicationScale, IGearProfile, String, int, IEmbeddableCartridge...) - +Method in class com.openshift.internal.client.DomainResource +
  +
createApplication(String, IStandaloneCartridge, ApplicationScale, IGearProfile, String, int, Map<String, String>, IEmbeddableCartridge...) - +Method in class com.openshift.internal.client.DomainResource +
  +
createConnection(URL, String, String, String, String, String, String, String, int) - +Method in class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
createDomain(String) - +Method in interface com.openshift.client.IUser +
  +
createDomain(String) - +Method in class com.openshift.internal.client.APIResource +
  +
createDomain(String) - +Method in class com.openshift.internal.client.UserResource +
  +
createErrorMessage(IOException, HttpURLConnection) - +Method in class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
cron() - +Static method in class com.openshift.client.cartridge.selector.LatestVersionOf +
  +
+
+

+D

+
+
DATABASE_NAME - +Static variable in class com.openshift.internal.client.response.CartridgeResourceProperties +
  +
DEBUG - +Static variable in interface com.openshift.client.ISeverity +
  +
decode(byte[]) - +Static method in class com.openshift.client.utils.Base64Coder +
  +
decode(String) - +Static method in class com.openshift.client.utils.Base64Coder +
Decodes the given base64 encoded string. +
DEFAULT - +Static variable in interface com.openshift.client.IField +
  +
DEFAULT_CONNECT_TIMEOUT - +Static variable in interface com.openshift.client.IHttpClient +
  +
DEFAULT_READ_TIMEOUT - +Static variable in interface com.openshift.client.IHttpClient +
  +
DefaultConfiguration - Class in com.openshift.client.configuration
 
DefaultConfiguration() - +Constructor for class com.openshift.client.configuration.DefaultConfiguration +
  +
defaultValue - +Variable in class com.openshift.internal.client.response.LinkParameter +
  +
delete(URL, IMediaType, int, Parameter...) - +Method in interface com.openshift.client.IHttpClient +
  +
delete(URL, int) - +Method in interface com.openshift.client.IHttpClient +
  +
delete(URL, IMediaType, int, Parameter...) - +Method in class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
delete(URL, int) - +Method in class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
deleteKey(String) - +Method in interface com.openshift.client.IUser +
  +
deleteKey(String) - +Method in class com.openshift.internal.client.UserResource +
  +
description - +Variable in class com.openshift.internal.client.response.LinkParameter +
  +
destroy() - +Method in interface com.openshift.client.cartridge.IEmbeddedCartridge +
Destroys this cartridge (and removes it from the list of existing cartridges) +
destroy() - +Method in interface com.openshift.client.IApplication +
Destroys this application (and removes it from the list of available + applications) +
destroy() - +Method in interface com.openshift.client.IDomain +
Destroys the current domain. +
destroy(boolean) - +Method in interface com.openshift.client.IDomain +
Destroys the current domain, using the 'force' parameter to also destroy the domain applications. +
destroy() - +Method in interface com.openshift.client.IEnvironmentVariable +
Destroys this environment variable +
destroy() - +Method in interface com.openshift.client.IOpenShiftSSHKey +
  +
destroy() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
destroy() - +Method in class com.openshift.internal.client.DomainResource +
  +
destroy(boolean) - +Method in class com.openshift.internal.client.DomainResource +
  +
destroy() - +Method in class com.openshift.internal.client.EmbeddedCartridgeResource +
  +
destroy() - +Method in class com.openshift.internal.client.EnvironmentVariableResource +
  +
destroy() - +Method in class com.openshift.internal.client.SSHKeyResource +
  +
disconnect() - +Method in class com.openshift.internal.client.APIResource +
  +
DomainResource - Class in com.openshift.internal.client
 
DomainResource(String, String, Map<String, Link>, Messages, APIResource) - +Constructor for class com.openshift.internal.client.DomainResource +
  +
DomainResource(DomainResourceDTO, APIResource) - +Constructor for class com.openshift.internal.client.DomainResource +
  +
DomainResourceDTO - Class in com.openshift.internal.client.response
 
+
+

+E

+
+
EmbeddableCartridge - Class in com.openshift.client.cartridge
An cartridge that may be embedded (added) into an application.
EmbeddableCartridge(String) - +Constructor for class com.openshift.client.cartridge.EmbeddableCartridge +
  +
EmbeddableCartridge(URL) - +Constructor for class com.openshift.client.cartridge.EmbeddableCartridge +
  +
EmbeddableCartridge(String, URL) - +Constructor for class com.openshift.client.cartridge.EmbeddableCartridge +
  +
EmbeddableCartridge(String, String, String) - +Constructor for class com.openshift.client.cartridge.EmbeddableCartridge +
Constructor used when available cartridges are loaded from OpenShift +
EmbeddedCartridgeResource - Class in com.openshift.internal.client
A cartridge that is embedded into an application.
EmbeddedCartridgeResource(CartridgeResourceDTO, ApplicationResource) - +Constructor for class com.openshift.internal.client.EmbeddedCartridgeResource +
  +
encode(byte[]) - +Static method in class com.openshift.client.utils.Base64Coder +
Encodes the given byte array to a base64 encoded String +
encode(String) - +Static method in class com.openshift.client.utils.Base64Coder +
Encodes the given string to a base64 encoded string. +
EncodingException - Exception in com.openshift.internal.client.httpclient
 
EncodingException(String, Throwable) - +Constructor for exception com.openshift.internal.client.httpclient.EncodingException +
  +
ensureIsSingleQuoted(String) - +Method in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
ensureStartsWithHttps(String) - +Static method in class com.openshift.internal.client.utils.UrlUtils +
  +
EnumDataType - Enum in com.openshift.internal.client.response
The Enum EnumDataType.
EnvironmentVariableResource - Class in com.openshift.internal.client
 
EnvironmentVariableResource(EnvironmentVariableResourceDTO, ApplicationResource) - +Constructor for class com.openshift.internal.client.EnvironmentVariableResource +
  +
EnvironmentVariableResource(String, String, Messages, Map<String, Link>, ApplicationResource) - +Constructor for class com.openshift.internal.client.EnvironmentVariableResource +
  +
EnvironmentVariableResourceDTO - Class in com.openshift.internal.client.response
The DTO for an environment variable
EnvironmentVariableResourceDTO(String, String, Map<String, Link>, Messages) - +Constructor for class com.openshift.internal.client.response.EnvironmentVariableResourceDTO +
Instantiates a new environment variable resource dto. +
equals(Object) - +Method in class com.openshift.client.cartridge.EmbeddableCartridge +
  +
equals(Object) - +Method in class com.openshift.client.cartridge.selector.LatestVersionQuery +
  +
EQUALS - +Static variable in interface com.openshift.client.IHttpClient +
  +
equals(Object) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
equals(Object) - +Method in class com.openshift.internal.client.cartridge.BaseCartridge +
  +
equals(Object) - +Method in class com.openshift.internal.client.DomainResource +
  +
equals(Object) - +Method in class com.openshift.internal.client.EmbeddedCartridgeResource +
TODO: implement fully correct #equals and #hashcode. +
equals(Object) - +Method in class com.openshift.internal.client.Field +
  +
equals(Object) - +Method in class com.openshift.internal.client.GearProfile +
  +
equals(Object) - +Method in class com.openshift.internal.client.httpclient.request.Parameter +
  +
equals(Object) - +Method in class com.openshift.internal.client.httpclient.request.ParameterValue +
  +
equals(Object) - +Method in class com.openshift.internal.client.httpclient.request.ParameterValueMap +
  +
equals(Object) - +Method in class com.openshift.internal.client.response.LinkParameterType +
  +
equals(Object) - +Method in class com.openshift.internal.client.Severity +
  +
equals(Object) - +Method in class com.openshift.internal.client.ssh.AbstractSSHKey +
  +
ERROR - +Static variable in interface com.openshift.client.ISeverity +
  +
execute(Parameter...) - +Method in class com.openshift.internal.client.AbstractOpenShiftResource.ServiceRequest +
  +
execute(int, Parameter...) - +Method in class com.openshift.internal.client.AbstractOpenShiftResource.ServiceRequest +
  +
execute(int, IMediaType, Parameter...) - +Method in class com.openshift.internal.client.AbstractOpenShiftResource.ServiceRequest +
  +
execute(List<Parameter>, Parameter...) - +Method in class com.openshift.internal.client.AbstractOpenShiftResource.ServiceRequest +
  +
execute(int, List<Parameter>, Parameter...) - +Method in class com.openshift.internal.client.AbstractOpenShiftResource.ServiceRequest +
  +
execute(int, List<Parameter>, IMediaType, Parameter...) - +Method in class com.openshift.internal.client.AbstractOpenShiftResource.ServiceRequest +
  +
EXLARGE - +Static variable in interface com.openshift.client.IGearProfile +
  +
+
+

+F

+
+
Field - Class in com.openshift.internal.client
 
Field(String) - +Constructor for class com.openshift.internal.client.Field +
  +
FormUrlEncodedMediaType - Class in com.openshift.internal.client.httpclient.request
A class that encodes request parameters to formurl-encoded format so that they may get sent to + the server.
FormUrlEncodedMediaType() - +Constructor for class com.openshift.internal.client.httpclient.request.FormUrlEncodedMediaType +
  +
+
+

+G

+
+
Gear - Class in com.openshift.internal.client
A gear that a cartridge is running on.
Gear(String, GearState, String) - +Constructor for class com.openshift.internal.client.Gear +
  +
GearGroupResource - Class in com.openshift.internal.client
 
GearGroupResource(String, String, Collection<GearResourceDTO>, Map<String, CartridgeResourceDTO>, ApplicationResource, IRestService) - +Constructor for class com.openshift.internal.client.GearGroupResource +
Constructor. +
GearGroupResource(GearGroupResourceDTO, ApplicationResource, IRestService) - +Constructor for class com.openshift.internal.client.GearGroupResource +
Constructor. +
GearGroupResourceDTO - Class in com.openshift.internal.client.response
The DTO for a gear groups
gearProfile(IGearProfile) - +Method in class com.openshift.internal.client.AbstractOpenShiftResource.Parameters +
  +
GearProfile - Class in com.openshift.internal.client
 
GearProfile(String) - +Constructor for class com.openshift.internal.client.GearProfile +
  +
GearResourceDTO - Class in com.openshift.internal.client.response
The Class ApplicationDTO.
GearState - Enum in com.openshift.client
 
get(IApplication) - +Method in class com.openshift.client.cartridge.selector.LatestEmbeddableCartridge +
  +
get(IUser) - +Method in class com.openshift.client.cartridge.selector.LatestEmbeddableCartridge +
  +
get(IApplication) - +Method in class com.openshift.client.cartridge.selector.LatestStandaloneCartridge +
  +
get(IUser) - +Method in class com.openshift.client.cartridge.selector.LatestStandaloneCartridge +
  +
get(Collection<C>) - +Method in class com.openshift.client.cartridge.selector.LatestVersionQuery +
  +
get(URL, int) - +Method in interface com.openshift.client.IHttpClient +
  +
get(Collection<C>) - +Method in class com.openshift.internal.client.cartridge.AbstractCartridgeQuery +
  +
get(URL, int) - +Method in class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
get(String) - +Method in interface com.openshift.internal.client.response.IRestResponseFactory +
Returns a RestResponse instance for a given rest response string. +
get(String) - +Method in class com.openshift.internal.client.response.OpenShiftJsonDTOFactory +
  +
getAliases() - +Method in interface com.openshift.client.IApplication +
Retrieve all application aliases +
getAliases() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getAliases() - +Method in class com.openshift.internal.client.response.ApplicationResourceDTO +
  +
getAll(Collection<C>) - +Method in class com.openshift.client.cartridge.selector.LatestVersionQuery +
  +
getAll() - +Method in class com.openshift.client.Messages +
  +
getAll(Collection<C>) - +Method in class com.openshift.internal.client.cartridge.AbstractCartridgeQuery +
  +
getAll() - +Method in class com.openshift.internal.client.response.CartridgeResourceProperties +
  +
getApplication() - +Method in interface com.openshift.client.cartridge.IEmbeddedCartridge +
Returns the application this cartridge is embedded into. +
getApplication() - +Method in interface com.openshift.client.IEnvironmentVariable +
Returns the application for this environment variable +
getApplication() - +Method in class com.openshift.internal.client.EmbeddedCartridgeResource +
  +
getApplication() - +Method in class com.openshift.internal.client.EnvironmentVariableResource +
  +
getApplication() - +Method in class com.openshift.internal.client.ssh.ApplicationPortForwarding +
  +
getApplicationByName(String) - +Method in interface com.openshift.client.IDomain +
Returns the application identified by the given name. +
getApplicationByName(String) - +Method in class com.openshift.internal.client.DomainResource +
  +
getApplications() - +Method in interface com.openshift.client.IDomain +
  +
getApplications() - +Method in class com.openshift.internal.client.DomainResource +
  +
getApplicationsByCartridge(IStandaloneCartridge) - +Method in interface com.openshift.client.IDomain +
  +
getApplicationsByCartridge(IStandaloneCartridge) - +Method in class com.openshift.internal.client.DomainResource +
  +
getApplicationScale() - +Method in interface com.openshift.client.IApplication +
Returns true if scaling is enabled on this application (only set at + creation time). +
getApplicationScale() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getApplicationScale() - +Method in class com.openshift.internal.client.response.ApplicationResourceDTO +
  +
getApplicationUrl() - +Method in interface com.openshift.client.IApplication +
Returns the url at which this application may be reached at. +
getApplicationUrl() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getApplicationUrl() - +Method in class com.openshift.internal.client.response.ApplicationResourceDTO +
  +
getAvailableCartridgeNames() - +Method in interface com.openshift.client.IDomain +
Returns the list of cartridges that can be used to create a new application. +
getAvailableCartridgeNames() - +Method in class com.openshift.internal.client.DomainResource +
  +
getAvailableGearProfiles() - +Method in interface com.openshift.client.IDomain +
Returns the list of available gear size that the user can choose when creating a new application (application's gear size can't be changed after creation). +
getAvailableGearProfiles() - +Method in class com.openshift.internal.client.DomainResource +
  +
getBy(IField, ISeverity) - +Method in class com.openshift.client.Messages +
Returns the messages of the given field type and severity. +
getBy(IField) - +Method in class com.openshift.client.Messages +
Returns all the message of the given field type. +
getByJSchKeyType(KeyPair) - +Static method in enum com.openshift.client.SSHKeyType +
  +
getByJSchKeyType(int) - +Static method in enum com.openshift.client.SSHKeyType +
  +
getByTypeId(String) - +Static method in enum com.openshift.client.SSHKeyType +
  +
getCartridge() - +Method in interface com.openshift.client.IApplication +
Returns the cartridge (application type) that this app is running on. +
getCartridge() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getCartridge(String) - +Method in class com.openshift.internal.client.ApplicationResource +
Returns the main (standalone) cartrige or one of the embedded cartridges + whose name matches the given param. +
getCartridge(String) - +Method in class com.openshift.internal.client.response.GearGroupResourceDTO +
Returns the cartridge identified by the given name. +
getCartridges() - +Method in interface com.openshift.client.IGearGroup +
Returns the cartridges in this gear group resource +
getCartridges() - +Method in class com.openshift.internal.client.GearGroupResource +
  +
getCartridges() - +Method in class com.openshift.internal.client.response.ApplicationResourceDTO +
  +
getCartridges() - +Method in class com.openshift.internal.client.response.GearGroupResourceDTO +
Returns the cartridges within this gear group. +
getClientId() - +Method in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
getClientId() - +Method in class com.openshift.internal.client.RestServiceProperties +
  +
getConnection() - +Method in interface com.openshift.client.IUser +
  +
getConnection(String, String) - +Method in class com.openshift.client.OpenShiftConnectionFactory +
Establish a connection with the clientId along with user's password. +
getConnection(String, String, String) - +Method in class com.openshift.client.OpenShiftConnectionFactory +
Establish a connection with the clientId along with user's login and + password. +
getConnection(String, String, String, String) - +Method in class com.openshift.client.OpenShiftConnectionFactory +
Establish a connection with the clientId along with user's login and + password. +
getConnection(String, String, String, String, String, String) - +Method in class com.openshift.client.OpenShiftConnectionFactory +
Establish a connection with the clientId along with user's login and + password. +
getConnection(String, String, String, String, IHttpClient) - +Method in class com.openshift.client.OpenShiftConnectionFactory +
  +
getConnection(IRestService, String, String) - +Method in class com.openshift.internal.client.AbstractOpenShiftConnectionFactory +
  +
getConnection() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getConnection(IApplication) - +Method in class com.openshift.internal.client.cartridge.AbstractCartridgeQuery +
  +
getConnection(IDomain) - +Method in class com.openshift.internal.client.cartridge.AbstractCartridgeQuery +
  +
getConnection() - +Method in class com.openshift.internal.client.UserResource +
  +
getConsumedGears() - +Method in interface com.openshift.client.IUser +
  +
getConsumedGears() - +Method in class com.openshift.internal.client.response.UserResourceDTO +
  +
getConsumedGears() - +Method in class com.openshift.internal.client.UserResource +
  +
getContent() - +Method in class com.openshift.internal.client.response.KeyResourceDTO +
Returns the public key content. +
getCreationLog() - +Method in interface com.openshift.client.IOpenShiftResource +
Returns the log that was created when the resource was created. +
getCreationLog() - +Method in class com.openshift.internal.client.AbstractOpenShiftResource +
  +
getCreationTime() - +Method in interface com.openshift.client.IApplication +
Returns the timestamp at which this app was created. +
getCreationTime() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getCreationTime() - +Method in class com.openshift.internal.client.response.ApplicationResourceDTO +
Gets the creation time. +
getData(RestResponse) - +Method in class com.openshift.internal.client.AbstractOpenShiftResource.ServiceRequest +
  +
getData() - +Method in class com.openshift.internal.client.response.RestResponse +
Gets the data. +
getDataType() - +Method in class com.openshift.internal.client.response.RestResponse +
Gets the data type. +
getDate(String) - +Static method in class com.openshift.client.utils.RFC822DateUtils +
Returns a date instance for a given timestamp string that complies to the + RFC 822 standard +
getDefaultDomain() - +Method in interface com.openshift.client.IUser +
  +
getDefaultDomain() - +Method in class com.openshift.internal.client.APIResource +
  +
getDefaultDomain() - +Method in class com.openshift.internal.client.UserResource +
  +
getDefaultValue() - +Method in class com.openshift.internal.client.response.LinkParameter +
  +
getDescription() - +Method in interface com.openshift.client.cartridge.ICartridge +
Returns a description for this cartridge +
getDescription() - +Method in class com.openshift.internal.client.cartridge.BaseCartridge +
  +
getDescription() - +Method in class com.openshift.internal.client.EmbeddedCartridgeResource +
  +
getDescription() - +Method in class com.openshift.internal.client.response.CartridgeResourceDTO +
  +
getDescription() - +Method in class com.openshift.internal.client.response.CartridgeResourceProperty +
  +
getDescription() - +Method in class com.openshift.internal.client.response.LinkParameter +
  +
getDescriptor() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getDisplayName() - +Method in interface com.openshift.client.cartridge.ICartridge +
Returns a (human readable, nice) display name for this cartridge +
getDisplayName() - +Method in class com.openshift.internal.client.cartridge.BaseCartridge +
  +
getDisplayName() - +Method in class com.openshift.internal.client.EmbeddedCartridgeResource +
  +
getDisplayName() - +Method in class com.openshift.internal.client.response.CartridgeResourceDTO +
  +
getDomain() - +Method in interface com.openshift.client.IApplication +
Get the domain of the application. +
getDomain(String) - +Method in interface com.openshift.client.IUser +
  +
getDomain(String) - +Method in class com.openshift.internal.client.APIResource +
  +
getDomain() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getDomain(String) - +Method in class com.openshift.internal.client.UserResource +
  +
getDomainId() - +Method in class com.openshift.internal.client.response.ApplicationResourceDTO +
Gets the domain id. +
getDomains() - +Method in interface com.openshift.client.IOpenShiftConnection +
Returns the domains associated with the current OpenShift connection. +
getDomains() - +Method in interface com.openshift.client.IUser +
  +
getDomains() - +Method in class com.openshift.internal.client.APIResource +
  +
getDomains() - +Method in class com.openshift.internal.client.UserResource +
  +
getEmbeddableCartridges() - +Method in interface com.openshift.client.IOpenShiftConnection +
Returns the available embeddable cartridges associated with the current + OpenShift connection. +
getEmbeddableCartridges() - +Method in class com.openshift.internal.client.APIResource +
  +
getEmbeddedCartridge(String) - +Method in interface com.openshift.client.IApplication +
Returns the embedded cartridge given its name. +
getEmbeddedCartridge(IEmbeddableCartridge) - +Method in interface com.openshift.client.IApplication +
Returns the embedded cartridge in this application. +
getEmbeddedCartridge(IEmbeddableCartridge) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getEmbeddedCartridge(String) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getEmbeddedCartridges() - +Method in interface com.openshift.client.IApplication +
Returns all embedded cartridges. +
getEmbeddedCartridges() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getEnvironmentProperties() - +Method in interface com.openshift.client.IApplication +
Retrieves the list of environment properties. +
getEnvironmentProperties() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getEnvironmentVariable(String) - +Method in interface com.openshift.client.IApplication +
Return the environment variable for the specified name +
getEnvironmentVariable(String) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getEnvironmentVariables() - +Method in interface com.openshift.client.IApplication +
Retrieves the map of environment variables +
getEnvironmentVariables() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getExecutorService() - +Method in interface com.openshift.client.IOpenShiftConnection +
Returns the executor service instance that's available in this + connection. +
getExecutorService() - +Method in class com.openshift.internal.client.APIResource +
  +
getExitCode() - +Method in class com.openshift.client.Message +
  +
getField() - +Method in class com.openshift.client.Message +
  +
getFile() - +Method in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
getFirstBy(IField, ISeverity) - +Method in class com.openshift.client.Messages +
Returns the first message of the given field type and severity. +
getFirstBy(IField) - +Method in class com.openshift.client.Messages +
Returns the first message of the given field type. +
getForwardablePorts() - +Method in interface com.openshift.client.IApplication +
Returns the list of forwardable ports on OpenShift for this application. +
getForwardablePorts() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getFramework() - +Method in class com.openshift.internal.client.response.ApplicationResourceDTO +
Gets the framework. +
getGearGroups() - +Method in interface com.openshift.client.IApplication +
Returns the gear groups for this application. +
getGearGroups() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getGearProfile() - +Method in interface com.openshift.client.IApplication +
Returns true if scaling is enabled on this application (only set at + creation time). +
getGearProfile() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getGearProfile() - +Method in class com.openshift.internal.client.response.ApplicationResourceDTO +
  +
getGears() - +Method in interface com.openshift.client.IGearGroup +
Returns the gears in this gear group resource +
getGears() - +Method in class com.openshift.internal.client.GearGroupResource +
  +
getGears() - +Method in class com.openshift.internal.client.response.GearGroupResourceDTO +
Returns the gears within this gear group. +
getGitUrl() - +Method in interface com.openshift.client.IApplication +
Returns the uri at which the git repository of this application may be + reached at. +
getGitUrl() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getGitUrl() - +Method in class com.openshift.internal.client.response.ApplicationResourceDTO +
  +
getHref() - +Method in class com.openshift.internal.client.response.Link +
Gets the url/href this link points to. +
getHref(String, String, Parameter...) - +Method in class com.openshift.internal.client.response.Link +
  +
getHref(String, String, List<Parameter>) - +Method in class com.openshift.internal.client.response.Link +
  +
getHttpMethod() - +Method in class com.openshift.internal.client.response.Link +
Gets the http method this link operates on. +
getId() - +Method in interface com.openshift.client.IDomain +
  +
getId() - +Method in interface com.openshift.client.IGear +
Returns the id of this gear. +
getId() - +Method in class com.openshift.internal.client.DomainResource +
  +
getId() - +Method in class com.openshift.internal.client.Gear +
  +
getId() - +Method in class com.openshift.internal.client.response.DomainResourceDTO +
  +
getInitialGitUrl() - +Method in interface com.openshift.client.IApplication +
Returns the git url that the application will get its initial code and configuration from. +
getInitialGitUrl() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getInitialGitUrl() - +Method in class com.openshift.internal.client.response.ApplicationResourceDTO +
  +
getInputStream(Channel) - +Method in enum com.openshift.internal.client.ApplicationResource.SshStreams +
  +
getKeyType() - +Method in interface com.openshift.client.ISSHPublicKey +
Returns the type of the key (ssh-rsa or ssh-dss) +
getKeyType() - +Method in class com.openshift.internal.client.ssh.AbstractSSHKey +
  +
getKeyType() - +Method in class com.openshift.internal.client.SSHKeyResource +
  +
getLatest(Collection<C>) - +Method in class com.openshift.client.cartridge.selector.LatestVersionQuery +
  +
getLibraDomain() - +Method in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
getLibraDomain() - +Method in interface com.openshift.client.configuration.IOpenShiftConfiguration +
  +
getLibraServer() - +Method in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
getLibraServer() - +Method in interface com.openshift.client.configuration.IOpenShiftConfiguration +
  +
getLines(Channel) - +Method in enum com.openshift.internal.client.ApplicationResource.SshStreams +
  +
getLink(String) - +Method in class com.openshift.internal.client.AbstractOpenShiftResource +
Gets the link for the given name. +
getLink(String) - +Method in class com.openshift.internal.client.response.BaseResourceDTO +
Gets the link. +
getLinks() - +Method in class com.openshift.internal.client.response.BaseResourceDTO +
Gets the links. +
getLocalAddress() - +Method in interface com.openshift.client.IApplicationPortForwarding +
  +
getLocalAddress() - +Method in class com.openshift.internal.client.ssh.ApplicationPortForwarding +
  +
getLocalPort() - +Method in interface com.openshift.client.IApplicationPortForwarding +
  +
getLocalPort() - +Method in class com.openshift.internal.client.ssh.ApplicationPortForwarding +
  +
getLogin() - +Method in class com.openshift.internal.client.APIResource +
  +
getMajor() - +Method in class com.openshift.client.cartridge.selector.LatestVersionQuery.VersionedName +
  +
getMatchingProperty(IEmbeddedCartridge) - +Method in class com.openshift.client.cartridge.selector.CartridgePropertyQuery +
  +
getMatchingProperty(IEmbeddedCartridge) - +Method in class com.openshift.client.cartridge.selector.UrlPropertyQuery +
  +
getMaxGears() - +Method in interface com.openshift.client.IUser +
  +
getMaxGears() - +Method in class com.openshift.internal.client.response.UserResourceDTO +
  +
getMaxGears() - +Method in class com.openshift.internal.client.UserResource +
  +
getMessages() - +Method in interface com.openshift.client.IOpenShiftResource +
Returns all the (creation log) messages. +
getMessages() - +Method in class com.openshift.internal.client.AbstractOpenShiftResource +
  +
getMessages() - +Method in class com.openshift.internal.client.response.BaseResourceDTO +
Returns the messages that were reported when this resource was created. +
getMessages() - +Method in class com.openshift.internal.client.response.RestResponse +
Gets the messages. +
getMinor() - +Method in class com.openshift.client.cartridge.selector.LatestVersionQuery.VersionedName +
  +
getName() - +Method in interface com.openshift.client.cartridge.ICartridge +
Returns the name of this cartridge +
getName() - +Method in class com.openshift.client.cartridge.selector.LatestVersionQuery.VersionedName +
  +
getName() - +Method in interface com.openshift.client.IApplication +
Returns the name of this application. +
getName() - +Method in interface com.openshift.client.IApplicationPortForwarding +
  +
getName() - +Method in interface com.openshift.client.IEnvironmentVariable +
  +
getName() - +Method in interface com.openshift.client.IGearGroup +
Returns the name of this gear groups +
getName() - +Method in interface com.openshift.client.IGearProfile +
  +
getName() - +Method in interface com.openshift.client.IOpenShiftSSHKey +
Returns the name that is used to store this key on OpenShift. +
getName() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getName() - +Method in class com.openshift.internal.client.cartridge.BaseCartridge +
  +
getName() - +Method in class com.openshift.internal.client.EmbeddedCartridgeResource +
  +
getName() - +Method in class com.openshift.internal.client.EnvironmentVariableResource +
  +
getName() - +Method in class com.openshift.internal.client.GearGroupResource +
  +
getName() - +Method in class com.openshift.internal.client.GearProfile +
  +
getName() - +Method in class com.openshift.internal.client.httpclient.request.Parameter +
  +
getName() - +Method in class com.openshift.internal.client.response.ApplicationResourceDTO +
Gets the name. +
getName() - +Method in class com.openshift.internal.client.response.CartridgeResourceDTO +
  +
getName() - +Method in class com.openshift.internal.client.response.CartridgeResourceProperty +
  +
getName() - +Method in class com.openshift.internal.client.response.EnvironmentVariableResourceDTO +
Returns the name of this environment variable +
getName() - +Method in class com.openshift.internal.client.response.GearGroupResourceDTO +
Returns the name of this gear group +
getName() - +Method in class com.openshift.internal.client.response.KeyResourceDTO +
Returns the name. +
getName() - +Method in class com.openshift.internal.client.response.LinkParameter +
  +
getName() - +Method in class com.openshift.internal.client.ssh.ApplicationPortForwarding +
  +
getName() - +Method in class com.openshift.internal.client.SSHKeyResource +
  +
getNameConstraint() - +Method in class com.openshift.client.cartridge.selector.LatestVersionQuery +
  +
getOptionalParams() - +Method in class com.openshift.internal.client.response.Link +
Gets the optional params. +
getOrLoadApplications() - +Method in class com.openshift.internal.client.DomainResource +
  +
getOrLoadEnvironmentVariables() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getParamater(String) - +Method in class com.openshift.internal.client.httpclient.request.ParameterValueMap +
  +
getPassword() - +Method in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
getPassword() - +Method in interface com.openshift.client.IUser +
  +
getPassword() - +Method in class com.openshift.internal.client.APIResource +
  +
getPassword() - +Method in class com.openshift.internal.client.UserResource +
  +
getPlatformUrl() - +Method in interface com.openshift.internal.client.IRestService +
Returns the OpenShift server. +
getPlatformUrl() - +Method in class com.openshift.internal.client.RestService +
  +
getPrivateKeyPath() - +Method in class com.openshift.client.SSHKeyPair +
  +
getProperties() - +Method in interface com.openshift.client.cartridge.IEmbeddedCartridge +
Returns the properties for this embedded cartridge +
getProperties(File, Properties) - +Method in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
getProperties() - +Method in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
getProperties(File, Properties) - +Method in class com.openshift.client.configuration.DefaultConfiguration +
  +
getProperties() - +Method in interface com.openshift.client.configuration.IOpenShiftConfiguration +
  +
getProperties(File, Properties) - +Method in class com.openshift.client.configuration.SystemProperties +
  +
getProperties() - +Method in class com.openshift.internal.client.EmbeddedCartridgeResource +
  +
getProperties() - +Method in class com.openshift.internal.client.response.CartridgeResourceDTO +
  +
getProperties() - +Method in class com.openshift.internal.client.RestServiceProperties +
  +
getProperty(C) - +Method in class com.openshift.client.cartridge.selector.StringPropertyQuery +
  +
getProperty(String) - +Method in class com.openshift.internal.client.response.CartridgeResourceProperties +
  +
getPropertyValue(String) - +Method in class com.openshift.internal.client.response.CartridgeResourceProperties +
  +
getProxyHost() - +Method in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
getProxyPort() - +Method in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
getProxySet() - +Method in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
getPublicKey() - +Method in interface com.openshift.client.ISSHPublicKey +
Returns the content of the public key (key content without ssh-rsa + identifier nor comment) of the ssh key +
getPublicKey() - +Method in class com.openshift.client.SSHKeyPair +
  +
getPublicKey() - +Method in class com.openshift.client.SSHPublicKey +
  +
getPublicKey() - +Method in class com.openshift.internal.client.SSHKeyResource +
  +
getPublicKeyPath() - +Method in class com.openshift.client.SSHKeyPair +
  +
getRel() - +Method in class com.openshift.internal.client.response.Link +
Gets the related resource (destination) this link points to. +
getRemoteAddress() - +Method in interface com.openshift.client.IApplicationPortForwarding +
  +
getRemoteAddress() - +Method in class com.openshift.internal.client.ssh.ApplicationPortForwarding +
  +
getRemotePort() - +Method in interface com.openshift.client.IApplicationPortForwarding +
  +
getRemotePort() - +Method in class com.openshift.internal.client.ssh.ApplicationPortForwarding +
  +
getRequiredParams() - +Method in class com.openshift.internal.client.response.Link +
Gets the required params. +
getRestResponse() - +Method in exception com.openshift.client.OpenShiftEndpointException +
  +
getRestResponseMessage(IField) - +Method in exception com.openshift.client.OpenShiftEndpointException +
Returns the message for the given field. +
getRestResponseMessages() - +Method in exception com.openshift.client.OpenShiftEndpointException +
  +
getRhlogin() - +Method in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
getRhlogin() - +Method in interface com.openshift.client.configuration.IOpenShiftConfiguration +
  +
getRhlogin() - +Method in interface com.openshift.client.IUser +
  +
getRhLogin() - +Method in class com.openshift.internal.client.response.UserResourceDTO +
  +
getRhlogin() - +Method in class com.openshift.internal.client.UserResource +
  +
getServer() - +Method in interface com.openshift.client.IOpenShiftConnection +
Returns the server this connection is bound to. +
getServer() - +Method in interface com.openshift.client.IUser +
  +
getServer() - +Method in class com.openshift.internal.client.APIResource +
  +
getServer() - +Method in class com.openshift.internal.client.UserResource +
  +
getServiceUrl() - +Method in interface com.openshift.internal.client.IRestService +
Returns the url for the OpenShift service, the endpoint which this rest + service class is talking to. +
getServiceUrl() - +Method in class com.openshift.internal.client.RestService +
  +
getSeverity() - +Method in class com.openshift.client.Message +
  +
getSSHKeyByName(String) - +Method in interface com.openshift.client.IUser +
  +
getSSHKeyByName(String) - +Method in class com.openshift.internal.client.UserResource +
  +
getSSHKeyByPublicKey(String) - +Method in interface com.openshift.client.IUser +
  +
getSSHKeyByPublicKey(String) - +Method in class com.openshift.internal.client.UserResource +
  +
getSSHKeys() - +Method in interface com.openshift.client.IUser +
  +
getSSHKeys() - +Method in class com.openshift.internal.client.UserResource +
  +
getSSHSession() - +Method in interface com.openshift.client.IApplication +
Returns the SSH session that this application uses to connect to + OpenShift. +
getSSHSession() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getSshUrl() - +Method in interface com.openshift.client.IApplication +
Returns the url to use to connect with ssh. +
getSshUrl() - +Method in interface com.openshift.client.IGear +
The URL to use when connecting with SSH in the following form: + ssh://<username>@<host> +
getSshUrl() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getSshUrl() - +Method in class com.openshift.internal.client.Gear +
  +
getSshUrl() - +Method in class com.openshift.internal.client.response.ApplicationResourceDTO +
  +
getSshUrl() - +Method in class com.openshift.internal.client.response.GearResourceDTO +
  +
getStandaloneCartridges() - +Method in interface com.openshift.client.IOpenShiftConnection +
Returns the available standalone cartridges associated with the current + OpenShift connection. +
getStandaloneCartridges() - +Method in class com.openshift.internal.client.APIResource +
  +
getState() - +Method in interface com.openshift.client.IGear +
Returns the state of this gear +
getState() - +Method in class com.openshift.internal.client.Gear +
  +
getState() - +Method in class com.openshift.internal.client.response.GearResourceDTO +
  +
getStatus() - +Method in class com.openshift.internal.client.response.RestResponse +
Gets the status. +
getString(Date) - +Static method in class com.openshift.client.utils.RFC822DateUtils +
  +
getSuffix() - +Method in interface com.openshift.client.IDomain +
The domain suffix is the host part eg: 'rhcloud.com') +
getSuffix() - +Method in class com.openshift.internal.client.DomainResource +
  +
getSuffix() - +Method in class com.openshift.internal.client.response.DomainResourceDTO +
  +
getText() - +Method in class com.openshift.client.Message +
  +
getType() - +Method in class com.openshift.internal.client.EmbeddedCartridgeResource +
  +
getType() - +Method in class com.openshift.internal.client.httpclient.request.FormUrlEncodedMediaType +
  +
getType() - +Method in interface com.openshift.internal.client.httpclient.request.IMediaType +
  +
getType() - +Method in class com.openshift.internal.client.httpclient.request.JsonMediaType +
  +
getType() - +Method in class com.openshift.internal.client.response.CartridgeResourceDTO +
  +
getType() - +Method in class com.openshift.internal.client.response.CartridgeResourceProperty +
  +
getType() - +Method in class com.openshift.internal.client.response.KeyResourceDTO +
Returns the type. +
getType() - +Method in class com.openshift.internal.client.response.LinkParameter +
  +
getTypeId() - +Method in enum com.openshift.client.SSHKeyType +
  +
getUrl() - +Method in interface com.openshift.client.cartridge.ICartridge +
Returns the url at which the code for this cartridge may get downloaded. +
getUrl() - +Method in interface com.openshift.client.cartridge.IEmbeddedCartridge +
The url at which this cartridge may be reached +
getUrl() - +Method in exception com.openshift.client.OpenShiftEndpointException +
  +
getUrl() - +Method in class com.openshift.internal.client.cartridge.BaseCartridge +
  +
getUrl() - +Method in class com.openshift.internal.client.EmbeddedCartridgeResource +
  +
getUrl() - +Method in class com.openshift.internal.client.response.CartridgeResourceDTO +
  +
getUser() - +Method in interface com.openshift.client.IDomain +
Returns the currently connected user that manages this domain. +
getUser() - +Method in interface com.openshift.client.IOpenShiftConnection +
Returns the user associated with the current OpenShift connection. +
getUser() - +Method in class com.openshift.internal.client.APIResource +
  +
getUser() - +Method in class com.openshift.internal.client.DomainResource +
  +
getUseragent(String) - +Method in class com.openshift.internal.client.RestServiceProperties +
  +
getUseragentPattern() - +Method in class com.openshift.internal.client.RestServiceProperties +
  +
getUUID() - +Method in interface com.openshift.client.IApplication +
Returns the uuid of this application. +
getUUID() - +Method in interface com.openshift.client.IGearGroup +
Returns the uuid of this gear groups. +
getUUID() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
getUUID() - +Method in class com.openshift.internal.client.GearGroupResource +
  +
getUuid() - +Method in class com.openshift.internal.client.response.ApplicationResourceDTO +
Gets the uuid. +
getUuid() - +Method in class com.openshift.internal.client.response.GearGroupResourceDTO +
Returns the uuid of this gear group. +
getUuid() - +Method in class com.openshift.internal.client.response.GearResourceDTO +
  +
getValidOptions() - +Method in class com.openshift.internal.client.response.LinkParameter +
  +
getValue() - +Method in enum com.openshift.client.ApplicationScale +
  +
getValue() - +Method in interface com.openshift.client.IEnvironmentVariable +
  +
getValue() - +Method in interface com.openshift.client.IField +
  +
getValue() - +Method in interface com.openshift.client.ISeverity +
  +
getValue() - +Method in class com.openshift.internal.client.EnvironmentVariableResource +
  +
getValue() - +Method in class com.openshift.internal.client.Field +
  +
getValue() - +Method in class com.openshift.internal.client.httpclient.request.ParameterValue +
  +
getValue() - +Method in class com.openshift.internal.client.response.CartridgeResourceProperty +
  +
getValue() - +Method in class com.openshift.internal.client.response.EnvironmentVariableResourceDTO +
Returns the value of this gear group. +
getValue() - +Method in class com.openshift.internal.client.Severity +
  +
getVersion() - +Method in class com.openshift.internal.client.RestServiceProperties +
  +
+
+

+H

+
+
haProxy() - +Static method in class com.openshift.client.cartridge.selector.LatestVersionOf +
  +
hasAlias(String) - +Method in interface com.openshift.client.IApplication +
  +
hasAlias(String) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
hasApplicationByCartridge(IStandaloneCartridge) - +Method in interface com.openshift.client.IDomain +
  +
hasApplicationByCartridge(IStandaloneCartridge) - +Method in class com.openshift.internal.client.DomainResource +
  +
hasApplicationByName(String) - +Method in interface com.openshift.client.IDomain +
Returns true if the application identified by the given name exists in the domain. +
hasApplicationByName(String) - +Method in class com.openshift.internal.client.DomainResource +
  +
hasCreationLog() - +Method in interface com.openshift.client.IOpenShiftResource +
Returns + true if there is log about the creation of this resource. +
hasCreationLog() - +Method in class com.openshift.internal.client.AbstractOpenShiftResource +
  +
hasDomain() - +Method in interface com.openshift.client.IUser +
  +
hasDomain(String) - +Method in interface com.openshift.client.IUser +
  +
hasDomain(String) - +Method in class com.openshift.internal.client.APIResource +
  +
hasDomain() - +Method in class com.openshift.internal.client.UserResource +
  +
hasDomain(String) - +Method in class com.openshift.internal.client.UserResource +
  +
hasEmbeddedCartridge(IEmbeddableCartridge) - +Method in interface com.openshift.client.IApplication +
Returns true if this application has an embedded cartridge. +
hasEmbeddedCartridge(String) - +Method in interface com.openshift.client.IApplication +
Returns true if this application has an embedded cartridge. +
hasEmbeddedCartridge(String) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
hasEmbeddedCartridge(IEmbeddableCartridge) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
hasEnvironmentVariable(String) - +Method in interface com.openshift.client.IApplication +
Checks if the environment variable is present in the application. +
hasEnvironmentVariable(String) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
hashCode() - +Method in class com.openshift.client.cartridge.selector.LatestVersionQuery +
  +
hashCode() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
hashCode() - +Method in class com.openshift.internal.client.cartridge.BaseCartridge +
  +
hashCode() - +Method in class com.openshift.internal.client.DomainResource +
  +
hashCode() - +Method in class com.openshift.internal.client.EmbeddedCartridgeResource +
  +
hashCode() - +Method in class com.openshift.internal.client.Field +
  +
hashCode() - +Method in class com.openshift.internal.client.GearProfile +
  +
hashCode() - +Method in class com.openshift.internal.client.httpclient.request.Parameter +
  +
hashCode() - +Method in class com.openshift.internal.client.httpclient.request.ParameterValue +
  +
hashCode() - +Method in class com.openshift.internal.client.response.LinkParameterType +
  +
hashCode() - +Method in class com.openshift.internal.client.Severity +
  +
hashCode() - +Method in class com.openshift.internal.client.ssh.AbstractSSHKey +
  +
hasMessages() - +Method in class com.openshift.client.Messages +
  +
hasParameter(String) - +Method in class com.openshift.internal.client.response.Link +
  +
hasSSHKeyName(String) - +Method in interface com.openshift.client.IUser +
  +
hasSSHKeyName(String) - +Method in class com.openshift.internal.client.UserResource +
  +
hasSSHPublicKey(String) - +Method in interface com.openshift.client.IUser +
  +
hasSSHPublicKey(String) - +Method in class com.openshift.internal.client.UserResource +
  +
hasSSHSession() - +Method in interface com.openshift.client.IApplication +
Returns true if the application was already provided with an SSH session, + and this session is still valid (connected). +
hasSSHSession() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
hasVersion() - +Method in class com.openshift.client.cartridge.selector.LatestVersionQuery.VersionedName +
  +
head(URL, int) - +Method in interface com.openshift.client.IHttpClient +
  +
head(URL, int) - +Method in class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
HostUtils - Class in com.openshift.client.utils
 
HostUtils() - +Constructor for class com.openshift.client.utils.HostUtils +
  +
HTTP - +Static variable in interface com.openshift.client.IHttpClient +
  +
HttpClientException - Exception in com.openshift.internal.client.httpclient
 
HttpClientException(String, Throwable) - +Constructor for exception com.openshift.internal.client.httpclient.HttpClientException +
  +
HttpClientException(String) - +Constructor for exception com.openshift.internal.client.httpclient.HttpClientException +
  +
HttpClientException(Throwable) - +Constructor for exception com.openshift.internal.client.httpclient.HttpClientException +
  +
HttpMethod - Enum in com.openshift.client
 
+
+

+I

+
+
IApplication - Interface in com.openshift.client
 
IApplicationPortForwarding - Interface in com.openshift.client
 
ICartridge - Interface in com.openshift.client.cartridge
 
ID - +Static variable in interface com.openshift.client.IUser +
  +
IDomain - Interface in com.openshift.client
 
IEmbeddableCartridge - Interface in com.openshift.client.cartridge
 
IEmbeddedCartridge - Interface in com.openshift.client.cartridge
Interface to designate a cartridge that has been added and configured
IEnvironmentVariable - Interface in com.openshift.client
 
IField - Interface in com.openshift.client
 
IGear - Interface in com.openshift.client
 
IGearGroup - Interface in com.openshift.client
 
IGearProfile - Interface in com.openshift.client
 
IHttpClient - Interface in com.openshift.client
 
IMediaType - Interface in com.openshift.internal.client.httpclient.request
A media type that encodes and writes request parameters before they get sent by the client.
include(String) - +Method in class com.openshift.internal.client.AbstractOpenShiftResource.Parameters +
  +
INFO - +Static variable in interface com.openshift.client.ISeverity +
  +
initProperties(File) - +Method in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
initProperties(Properties) - +Method in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
initProperties(File, Properties) - +Method in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
INTEGER - +Static variable in class com.openshift.internal.client.response.LinkParameterType +
  +
InternalServerErrorException - Exception in com.openshift.internal.client.httpclient
 
InternalServerErrorException(String, Throwable) - +Constructor for exception com.openshift.internal.client.httpclient.InternalServerErrorException +
  +
InternalServerErrorException(String) - +Constructor for exception com.openshift.internal.client.httpclient.InternalServerErrorException +
  +
InvalidCredentialsOpenShiftException - Exception in com.openshift.client
 
InvalidCredentialsOpenShiftException(String, HttpClientException, RestResponse) - +Constructor for exception com.openshift.client.InvalidCredentialsOpenShiftException +
  +
InvalidNameOpenShiftException - Exception in com.openshift.client
 
InvalidNameOpenShiftException(String, Object...) - +Constructor for exception com.openshift.client.InvalidNameOpenShiftException +
  +
IOpenShiftConfiguration - Interface in com.openshift.client.configuration
 
IOpenShiftConnection - Interface in com.openshift.client
 
IOpenShiftJsonConstants - Class in com.openshift.internal.client.utils
 
IOpenShiftJsonConstants() - +Constructor for class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
IOpenShiftParameterConstants - Class in com.openshift.internal.client.utils
 
IOpenShiftParameterConstants() - +Constructor for class com.openshift.internal.client.utils.IOpenShiftParameterConstants +
  +
IOpenShiftResource - Interface in com.openshift.client
 
IOpenShiftSSHKey - Interface in com.openshift.client
 
IRestResponseFactory - Interface in com.openshift.internal.client.response
 
IRestService - Interface in com.openshift.internal.client
A rest service that executes request against the OpenShift server
isDownloadable() - +Method in interface com.openshift.client.cartridge.ICartridge +
Returns true if this is a downloadable cartridge whose code + may be downloaded at the url returned by ICartridge.getUrl() (cartridge + code will get downloaded upon creation). +
isDownloadable() - +Method in class com.openshift.internal.client.cartridge.BaseCartridge +
  +
isDownloadable() - +Method in class com.openshift.internal.client.EmbeddedCartridgeResource +
  +
isEmpty() - +Method in class com.openshift.internal.client.httpclient.request.ParameterValueMap +
  +
isEmpty(String) - +Static method in class com.openshift.internal.client.utils.StringUtils +
  +
ISeverity - Interface in com.openshift.client
 
isPortFowardingStarted() - +Method in interface com.openshift.client.IApplication +
Returns true if the port-forwarding has been started, false otherwise. +
isPortFowardingStarted() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
ISSHPublicKey - Interface in com.openshift.client
 
isStarted(Session) - +Method in interface com.openshift.client.IApplicationPortForwarding +
  +
isStarted(Session) - +Method in class com.openshift.internal.client.ssh.ApplicationPortForwarding +
  +
IStandaloneCartridge - Interface in com.openshift.client.cartridge
 
isTrue(boolean) - +Static method in class com.openshift.internal.client.utils.Assert +
  +
isUrl(String) - +Static method in class com.openshift.internal.client.utils.UrlUtils +
  +
IUser - Interface in com.openshift.client
 
+
+

+J

+
+
jbossAs() - +Static method in class com.openshift.client.cartridge.selector.LatestVersionOf +
  +
jbossEap() - +Static method in class com.openshift.client.cartridge.selector.LatestVersionOf +
  +
jbossEws() - +Static method in class com.openshift.client.cartridge.selector.LatestVersionOf +
  +
jenkins() - +Static method in class com.openshift.client.cartridge.selector.LatestVersionOf +
  +
jenkinsClient() - +Static method in class com.openshift.client.cartridge.selector.LatestVersionOf +
  +
JOB_URL - +Static variable in class com.openshift.internal.client.response.CartridgeResourceProperties +
  +
JsonMediaType - Class in com.openshift.internal.client.httpclient.request
A class that encodes request parameters to json so that they may get sent to + the server.
JsonMediaType() - +Constructor for class com.openshift.internal.client.httpclient.request.JsonMediaType +
  +
JUMBO - +Static variable in interface com.openshift.client.IGearProfile +
  +
+
+

+K

+
+
KEY_CLIENT_ID - +Static variable in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
KEY_LIBRA_DOMAIN - +Static variable in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
KEY_LIBRA_SERVER - +Static variable in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
KEY_PASSWORD - +Static variable in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
KEY_RHLOGIN - +Static variable in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
KeyResourceDTO - Class in com.openshift.internal.client.response
The Class KeyResourceDTO.
+
+

+L

+
+
LARGE - +Static variable in interface com.openshift.client.IGearProfile +
  +
LatestEmbeddableCartridge - Class in com.openshift.client.cartridge.selector
A selector that shall select the latest version of an embedded cartidge that's given by name.
LatestEmbeddableCartridge(String) - +Constructor for class com.openshift.client.cartridge.selector.LatestEmbeddableCartridge +
  +
LatestStandaloneCartridge - Class in com.openshift.client.cartridge.selector
A selector that shall select the latest version of a standalone cartidge that's given by name.
LatestStandaloneCartridge(String) - +Constructor for class com.openshift.client.cartridge.selector.LatestStandaloneCartridge +
  +
LatestVersionOf - Class in com.openshift.client.cartridge.selector
 
LatestVersionOf() - +Constructor for class com.openshift.client.cartridge.selector.LatestVersionOf +
  +
LatestVersionQuery - Class in com.openshift.client.cartridge.selector
A constraint that shall match available embeddable and standalone cartridges by name.
LatestVersionQuery(String) - +Constructor for class com.openshift.client.cartridge.selector.LatestVersionQuery +
  +
LatestVersionQuery.VersionedName - Class in com.openshift.client.cartridge.selector
 
LatestVersionQuery.VersionedName(String) - +Constructor for class com.openshift.client.cartridge.selector.LatestVersionQuery.VersionedName +
  +
LIBRA_DOMAIN - +Static variable in class com.openshift.client.configuration.DefaultConfiguration +
  +
LIBRA_SERVER - +Static variable in class com.openshift.client.configuration.DefaultConfiguration +
  +
Link - Class in com.openshift.internal.client.response
The Class Link.
Link(String, HttpMethod) - +Constructor for class com.openshift.internal.client.response.Link +
  +
Link(String, String, HttpMethod) - +Constructor for class com.openshift.internal.client.response.Link +
  +
Link(String, String, String, List<LinkParameter>, List<LinkParameter>) - +Constructor for class com.openshift.internal.client.response.Link +
  +
Link(String, String, HttpMethod, List<LinkParameter>, List<LinkParameter>) - +Constructor for class com.openshift.internal.client.response.Link +
Instantiates a new Link object. +
linkName - +Variable in class com.openshift.internal.client.AbstractOpenShiftResource.ServiceRequest +
  +
LinkParameter - Class in com.openshift.internal.client.response
 
LinkParameter(String, String, String, String, List<String>) - +Constructor for class com.openshift.internal.client.response.LinkParameter +
  +
LinkParameter(String, LinkParameterType, String, String, List<String>) - +Constructor for class com.openshift.internal.client.response.LinkParameter +
  +
LinkParameterType - Class in com.openshift.internal.client.response
 
LinkParameterType(String) - +Constructor for class com.openshift.internal.client.response.LinkParameterType +
  +
load(String, String) - +Static method in class com.openshift.client.SSHKeyPair +
Loads existing private and public ssh key from the given paths. +
+
+

+M

+
+
matches(C) - +Method in class com.openshift.client.cartridge.selector.LatestVersionQuery +
  +
matches(C) - +Method in class com.openshift.client.cartridge.selector.StringPropertyQuery +
  +
matches(C) - +Method in class com.openshift.internal.client.cartridge.AbstractCartridgeQuery +
  +
MEDIATYPE_APPLICATION_FORMURLENCODED - +Static variable in interface com.openshift.client.IHttpClient +
  +
MEDIATYPE_APPLICATION_JSON - +Static variable in interface com.openshift.client.IHttpClient +
  +
MEDIATYPE_APPLICATION_XML - +Static variable in interface com.openshift.client.IHttpClient +
  +
MEDIUM - +Static variable in interface com.openshift.client.IGearProfile +
  +
Message - Class in com.openshift.client
 
Message(String, String, String, int) - +Constructor for class com.openshift.client.Message +
  +
Messages - Class in com.openshift.client
 
Messages(Map<IField, List<Message>>) - +Constructor for class com.openshift.client.Messages +
Instantiates a new abstract open shift resource. +
metrics() - +Static method in class com.openshift.client.cartridge.selector.LatestVersionOf +
  +
MICRO - +Static variable in interface com.openshift.client.IGearProfile +
  +
mmsAgent() - +Static method in class com.openshift.client.cartridge.selector.LatestVersionOf +
  +
mongoDB() - +Static method in class com.openshift.client.cartridge.selector.LatestVersionOf +
  +
mySQL() - +Static method in class com.openshift.client.cartridge.selector.LatestVersionOf +
  +
+
+

+N

+
+
name - +Variable in class com.openshift.internal.client.response.LinkParameter +
  +
NAME_10GEN_MMS_AGENT - +Static variable in interface com.openshift.client.cartridge.IEmbeddableCartridge +
  +
NAME_CRON - +Static variable in interface com.openshift.client.cartridge.IEmbeddableCartridge +
  +
NAME_HAPROXY - +Static variable in interface com.openshift.client.cartridge.IEmbeddableCartridge +
  +
NAME_JBOSSAS - +Static variable in interface com.openshift.client.cartridge.IStandaloneCartridge +
  +
NAME_JBOSSEAP - +Static variable in interface com.openshift.client.cartridge.IStandaloneCartridge +
  +
NAME_JBOSSEWS - +Static variable in interface com.openshift.client.cartridge.IStandaloneCartridge +
  +
NAME_JENKINS - +Static variable in interface com.openshift.client.cartridge.IStandaloneCartridge +
  +
NAME_JENKINS_CLIENT - +Static variable in interface com.openshift.client.cartridge.IEmbeddableCartridge +
  +
NAME_METRICS - +Static variable in interface com.openshift.client.cartridge.IEmbeddableCartridge +
  +
NAME_MONGODB - +Static variable in interface com.openshift.client.cartridge.IEmbeddableCartridge +
  +
NAME_MYSQL - +Static variable in interface com.openshift.client.cartridge.IEmbeddableCartridge +
  +
NAME_PERL - +Static variable in interface com.openshift.client.cartridge.IStandaloneCartridge +
  +
NAME_PHP - +Static variable in interface com.openshift.client.cartridge.IStandaloneCartridge +
  +
NAME_PHPMYADMIN - +Static variable in interface com.openshift.client.cartridge.IEmbeddableCartridge +
  +
NAME_POSTGRESQL - +Static variable in interface com.openshift.client.cartridge.IEmbeddableCartridge +
  +
NAME_PYTHON - +Static variable in interface com.openshift.client.cartridge.IStandaloneCartridge +
  +
NAME_ROCKMONGO - +Static variable in interface com.openshift.client.cartridge.IEmbeddableCartridge +
  +
NAME_RUBY - +Static variable in interface com.openshift.client.cartridge.IStandaloneCartridge +
  +
NAME_SWITCHYARD - +Static variable in interface com.openshift.client.cartridge.IEmbeddableCartridge +
  +
NAME_VERSION_DELIMITER - +Static variable in interface com.openshift.client.cartridge.ICartridge +
  +
NAME_ZEND - +Static variable in interface com.openshift.client.cartridge.IStandaloneCartridge +
  +
NO_TIMEOUT - +Static variable in interface com.openshift.client.IHttpClient +
  +
notEmpty(String) - +Static method in class com.openshift.internal.client.utils.Assert +
  +
NotFoundException - Exception in com.openshift.internal.client.httpclient
 
NotFoundException(String, Throwable) - +Constructor for exception com.openshift.internal.client.httpclient.NotFoundException +
  +
NotFoundException(String) - +Constructor for exception com.openshift.internal.client.httpclient.NotFoundException +
  +
NotFoundOpenShiftException - Exception in com.openshift.client
 
NotFoundOpenShiftException(String, HttpClientException, RestResponse) - +Constructor for exception com.openshift.client.NotFoundOpenShiftException +
  +
notNull(V) - +Static method in class com.openshift.internal.client.utils.Assert +
  +
nullToEmptyString(String) - +Static method in class com.openshift.internal.client.utils.StringUtils +
  +
+
+

+O

+
+
OpenShiftApplicationNotAvailableException - Exception in com.openshift.client
 
OpenShiftApplicationNotAvailableException(String) - +Constructor for exception com.openshift.client.OpenShiftApplicationNotAvailableException +
  +
OpenShiftConfiguration - Class in com.openshift.client.configuration
 
OpenShiftConfiguration() - +Constructor for class com.openshift.client.configuration.OpenShiftConfiguration +
  +
OpenShiftConnectionFactory - Class in com.openshift.client
Connection Factory, used to establish a connection and retrieve a user.
OpenShiftConnectionFactory() - +Constructor for class com.openshift.client.OpenShiftConnectionFactory +
  +
OpenShiftEndpointException - Exception in com.openshift.client
 
OpenShiftEndpointException(String, Throwable, RestResponse, String, Object...) - +Constructor for exception com.openshift.client.OpenShiftEndpointException +
  +
OpenShiftException - Exception in com.openshift.client
 
OpenShiftException(Throwable, String, Object...) - +Constructor for exception com.openshift.client.OpenShiftException +
  +
OpenShiftException(String, Object...) - +Constructor for exception com.openshift.client.OpenShiftException +
  +
OpenShiftJsonDTOFactory - Class in com.openshift.internal.client.response
A factory for creating DTO objects.
OpenShiftJsonDTOFactory() - +Constructor for class com.openshift.internal.client.response.OpenShiftJsonDTOFactory +
  +
OpenShiftRequestException - Exception in com.openshift.client
 
OpenShiftRequestException(String, Object...) - +Constructor for exception com.openshift.client.OpenShiftRequestException +
  +
OpenShiftResourceUtils - Class in com.openshift.client.utils
 
OpenShiftResourceUtils() - +Constructor for class com.openshift.client.utils.OpenShiftResourceUtils +
  +
OpenShiftSSHKeyException - Exception in com.openshift.client
 
OpenShiftSSHKeyException(String, Object...) - +Constructor for exception com.openshift.client.OpenShiftSSHKeyException +
  +
OpenShiftSSHOperationException - Exception in com.openshift.client
OpenShift Exception that encapsulates an underlying exception that occurred during an SSH operation.
OpenShiftSSHOperationException(Throwable, String, Object...) - +Constructor for exception com.openshift.client.OpenShiftSSHOperationException +
  +
OpenShiftSSHOperationException(String, Object...) - +Constructor for exception com.openshift.client.OpenShiftSSHOperationException +
  +
OpenShiftTimeoutException - Exception in com.openshift.client
 
OpenShiftTimeoutException(String, Throwable, String, Object...) - +Constructor for exception com.openshift.client.OpenShiftTimeoutException +
  +
OpenShiftUnknonwSSHKeyTypeException - Exception in com.openshift.client
 
OpenShiftUnknonwSSHKeyTypeException(String, Object...) - +Constructor for exception com.openshift.client.OpenShiftUnknonwSSHKeyTypeException +
  +
+
+

+P

+
+
Parameter - Class in com.openshift.internal.client.httpclient.request
A parameter wrapper to pass param key/values to the service when executing a + remote operation from a link.
Parameter(String, String) - +Constructor for class com.openshift.internal.client.httpclient.request.Parameter +
  +
Parameter(String, ParameterValue<?>) - +Constructor for class com.openshift.internal.client.httpclient.request.Parameter +
  +
PARAMETER_CARTRIDGES - +Static variable in class com.openshift.internal.client.utils.IOpenShiftParameterConstants +
  +
PARAMETER_INCLUDE - +Static variable in class com.openshift.internal.client.utils.IOpenShiftParameterConstants +
  +
ParameterValue<V> - Class in com.openshift.internal.client.httpclient.request
 
ParameterValue(V) - +Constructor for class com.openshift.internal.client.httpclient.request.ParameterValue +
  +
ParameterValueArray - Class in com.openshift.internal.client.httpclient.request
 
ParameterValueArray() - +Constructor for class com.openshift.internal.client.httpclient.request.ParameterValueArray +
  +
ParameterValueArray(List<ParameterValue<?>>) - +Constructor for class com.openshift.internal.client.httpclient.request.ParameterValueArray +
  +
ParameterValueMap - Class in com.openshift.internal.client.httpclient.request
 
ParameterValueMap(List<Parameter>) - +Constructor for class com.openshift.internal.client.httpclient.request.ParameterValueMap +
  +
ParameterValueMap(Parameter...) - +Constructor for class com.openshift.internal.client.httpclient.request.ParameterValueMap +
  +
ParameterValueMap() - +Constructor for class com.openshift.internal.client.httpclient.request.ParameterValueMap +
  +
password - +Variable in class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
PASSWORD - +Static variable in class com.openshift.internal.client.response.CartridgeResourceProperties +
  +
patch(URL, IMediaType, int, Parameter...) - +Method in interface com.openshift.client.IHttpClient +
  +
patch(URL, IMediaType, int, Parameter...) - +Method in class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
perl() - +Static method in class com.openshift.client.cartridge.selector.LatestVersionOf +
  +
php() - +Static method in class com.openshift.client.cartridge.selector.LatestVersionOf +
  +
phpMyAdmin() - +Static method in class com.openshift.client.cartridge.selector.LatestVersionOf +
  +
post(URL, IMediaType, int, Parameter...) - +Method in interface com.openshift.client.IHttpClient +
  +
post(URL, IMediaType, int, Parameter...) - +Method in class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
postgreSQL() - +Static method in class com.openshift.client.cartridge.selector.LatestVersionOf +
  +
prependIfNonEmpty(String, String) - +Static method in class com.openshift.internal.client.utils.StringUtils +
  +
PROPERTY_ACCEPT - +Static variable in interface com.openshift.client.IHttpClient +
  +
PROPERTY_ACTION - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_ALIAS - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_ALIASES - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_ALTER - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_APP_INFO - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_APP_NAME - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_APP_URL - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_AUTHIV - +Static variable in interface com.openshift.client.IHttpClient +
  +
PROPERTY_AUTHKEY - +Static variable in interface com.openshift.client.IHttpClient +
  +
PROPERTY_AUTHORIZATION - +Static variable in interface com.openshift.client.IHttpClient +
  +
PROPERTY_CARTRIDGE - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_CARTRIDGES - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_CONSUMED_GEARS - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_CONTENT - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_CONTENT_TYPE - +Static variable in interface com.openshift.client.IHttpClient +
  +
PROPERTY_CREATION_TIME - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_DATA - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_DEBUG - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_DEFAULT_VALUE - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_DELETE - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_DESCRIPTION - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_DISPLAY_NAME - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_DOMAIN - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_DOMAIN_ID - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_DOMAINS - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_EMBEDDED - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_ENVIRONMENT_VARIABLES - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_EVENT - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_EXIT_CODE - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_FIELD - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_FORCE - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_FRAMEWORK - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_GEAR_PROFILE - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_GEAR_STATE - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_GEARS - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_GIT_URL - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_HEALTH_CHECK_PATH - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_HREF - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_ID - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_INFO - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_INITIAL_GIT_URL - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_INTERNAL_PORT - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_KEY - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_KEY_TYPE - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_KEYS - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_LINKS - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_LOGIN - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_MAX_GEARS - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_MESSAGES - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_METHOD - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_NAME - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_OPTIONAL_PARAMS - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_PROPERTIES - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_PROPERTY - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_PROXY_HOST - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_PROXY_PORT - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_REL - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_REQUIRED_PARAMS - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_RESULT - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_RHC_DOMAIN - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_RHLOGIN - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_SCALABLE - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_SCALE - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_SEVERITY - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_SSH - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_SSH_KEY - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_SSH_TYPE - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_SSH_URL - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_STATUS - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_SUFFIX - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_TEXT - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_TYPE - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_URL - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_USER_AGENT - +Static variable in interface com.openshift.client.IHttpClient +
  +
PROPERTY_USER_INFO - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_UUID - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_VALID_OPTIONS - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
PROPERTY_VALUE - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
put(URL, IMediaType, int, Parameter...) - +Method in interface com.openshift.client.IHttpClient +
  +
put(URL, IMediaType, int, Parameter...) - +Method in class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
putSSHKey(String, ISSHPublicKey) - +Method in interface com.openshift.client.IUser +
  +
putSSHKey(String, ISSHPublicKey) - +Method in class com.openshift.internal.client.UserResource +
Adds the given ssh key with the given name. +
python() - +Static method in class com.openshift.client.cartridge.selector.LatestVersionOf +
  +
+
+

+Q

+
+
QUESTION_MARK - +Static variable in interface com.openshift.client.IHttpClient +
  +
quietlyClose(InputStream) - +Static method in class com.openshift.internal.client.utils.StreamUtils +
  +
quietlyClose(OutputStream) - +Static method in class com.openshift.internal.client.utils.StreamUtils +
  +
quietlyClose(Reader) - +Static method in class com.openshift.internal.client.utils.StreamUtils +
  +
quietlyClose(Writer) - +Static method in class com.openshift.internal.client.utils.StreamUtils +
  +
+
+

+R

+
+
readToString(InputStream) - +Static method in class com.openshift.internal.client.utils.StreamUtils +
  +
readToString(Reader) - +Static method in class com.openshift.internal.client.utils.StreamUtils +
  +
refresh() - +Method in interface com.openshift.client.IApplication +
Refresh the application but reloading its content from OpenShift. +
refresh() - +Method in interface com.openshift.client.IOpenShiftResource +
Refresh the resource and its list of children resources that were + previously loaded +
refresh() - +Method in class com.openshift.internal.client.APIResource +
  +
refresh() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
refresh() - +Method in class com.openshift.internal.client.DomainResource +
  +
refresh() - +Method in class com.openshift.internal.client.EmbeddedCartridgeResource +
Refreshes the content of this embedded cartridge. +
refresh() - +Method in class com.openshift.internal.client.EnvironmentVariableResource +
  +
refresh() - +Method in class com.openshift.internal.client.GearGroupResource +
  +
refresh() - +Method in class com.openshift.internal.client.SSHKeyResource +
  +
refresh() - +Method in class com.openshift.internal.client.UserResource +
  +
refreshEmbeddedCartridges() - +Method in class com.openshift.internal.client.ApplicationResource +
Queries the backend to list the embedded cartridges and adds the new ones + & update the ones that are already present +
refreshForwardablePorts() - +Method in interface com.openshift.client.IApplication +
Refreshes the list of port-forwarding. +
refreshForwardablePorts() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
removeAlias(String) - +Method in interface com.openshift.client.IApplication +
Remove application alias +
removeAlias(String) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
removeApplication(IApplication) - +Method in class com.openshift.internal.client.DomainResource +
  +
removeDomain(IDomain) - +Method in class com.openshift.internal.client.APIResource +
Called after a domain has been destroyed +
removeEmbeddedCartridge(IEmbeddableCartridge) - +Method in interface com.openshift.client.IApplication +
Removes the given embedded cartridge that is equal to the given + embeddable cartridge. +
removeEmbeddedCartridge(IEmbeddedCartridge) - +Method in class com.openshift.internal.client.ApplicationResource +
"callback" from the embeddedCartridge once it has been destroyed. +
removeEmbeddedCartridge(IEmbeddableCartridge) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
removeEmbeddedCartridges(Collection<IEmbeddableCartridge>) - +Method in interface com.openshift.client.IApplication +
Removes the given embedded cartridges in this application that are equal to the + given IEmbeddableCartridge. +
removeEmbeddedCartridges(Collection<IEmbeddableCartridge>) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
removeEnvironmentVariable(String) - +Method in interface com.openshift.client.IApplication +
Removes the environment variables with the given name from this application. +
removeEnvironmentVariable(IEnvironmentVariable) - +Method in interface com.openshift.client.IApplication +
Removes the environment variables with the given name from this application. +
removeEnvironmentVariable(String) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
removeEnvironmentVariable(IEnvironmentVariable) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
removeQuotes(String) - +Method in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
removeSSHKey(SSHKeyResource) - +Method in class com.openshift.internal.client.UserResource +
  +
rename(String) - +Method in interface com.openshift.client.IDomain +
Rename the current domain with the given id.... +
rename(String) - +Method in class com.openshift.internal.client.DomainResource +
  +
request(HttpMethod, URL, IMediaType, int, Parameter...) - +Method in class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
request(HttpMethod, URL, IMediaType, int, ParameterValueMap) - +Method in class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
request(Link, Parameter...) - +Method in interface com.openshift.internal.client.IRestService +
  +
request(Link, int, Parameter...) - +Method in interface com.openshift.internal.client.IRestService +
  +
request(Link, int, IMediaType, Parameter...) - +Method in interface com.openshift.internal.client.IRestService +
Requests the given link sending the given parameters while encoding the + parameters with the given media type and respecting the given timeout. +
request(Link, List<Parameter>, Parameter...) - +Method in interface com.openshift.internal.client.IRestService +
  +
request(Link, int, List<Parameter>, Parameter...) - +Method in interface com.openshift.internal.client.IRestService +
  +
request(Link, int, List<Parameter>, IMediaType, Parameter...) - +Method in interface com.openshift.internal.client.IRestService +
  +
request(Link, Parameter...) - +Method in class com.openshift.internal.client.RestService +
  +
request(Link, int, Parameter...) - +Method in class com.openshift.internal.client.RestService +
  +
request(Link, List<Parameter>, Parameter...) - +Method in class com.openshift.internal.client.RestService +
  +
request(Link, int, IMediaType, Parameter...) - +Method in class com.openshift.internal.client.RestService +
  +
request(Link, int, List<Parameter>, Parameter...) - +Method in class com.openshift.internal.client.RestService +
  +
request(Link, int, List<Parameter>, IMediaType, Parameter...) - +Method in class com.openshift.internal.client.RestService +
  +
restart() - +Method in interface com.openshift.client.IApplication +
Restarts this application. +
restart() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
RestResponse - Class in com.openshift.internal.client.response
The Class Response.
RestResponse(String, Messages, Object, EnumDataType) - +Constructor for class com.openshift.internal.client.response.RestResponse +
Instantiates a new response. +
RestService - Class in com.openshift.internal.client
 
RestService(String, String, IMediaType, String, IRestResponseFactory, IHttpClient) - +Constructor for class com.openshift.internal.client.RestService +
  +
RestService(String, String, IMediaType, String, IRestResponseFactory, IHttpClient, RestServiceProperties) - +Constructor for class com.openshift.internal.client.RestService +
  +
RestService(String, String, String, IMediaType, String, IRestResponseFactory, IHttpClient, RestServiceProperties) - +Constructor for class com.openshift.internal.client.RestService +
  +
RestServiceProperties - Class in com.openshift.internal.client
 
RestServiceProperties() - +Constructor for class com.openshift.internal.client.RestServiceProperties +
  +
RESULT - +Static variable in interface com.openshift.client.IField +
  +
RESULT - +Static variable in interface com.openshift.client.ISeverity +
  +
RFC822DateUtils - Class in com.openshift.client.utils
 
RFC822DateUtils() - +Constructor for class com.openshift.client.utils.RFC822DateUtils +
  +
rockMongo() - +Static method in class com.openshift.client.cartridge.selector.LatestVersionOf +
  +
ruby() - +Static method in class com.openshift.client.cartridge.selector.LatestVersionOf +
  +
+
+

+S

+
+
safeGetDate(String) - +Static method in class com.openshift.client.utils.RFC822DateUtils +
Returns a date instance for a given timestamp string that complies to the + RFC 822 standard. +
safeValueOf(String) - +Static method in enum com.openshift.client.ApplicationScale +
  +
safeValueOf(String) - +Static method in enum com.openshift.client.GearState +
  +
safeValueOf(String) - +Static method in enum com.openshift.internal.client.CartridgeType +
  +
save() - +Method in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
scale(ApplicationScale) - +Method in class com.openshift.internal.client.AbstractOpenShiftResource.Parameters +
  +
scaleDown() - +Method in interface com.openshift.client.IApplication +
Scale down application +
scaleDown() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
scaleUp() - +Method in interface com.openshift.client.IApplication +
Scale up application +
scaleUp() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
SCHEME_HTTPS - +Static variable in class com.openshift.internal.client.utils.UrlUtils +
  +
SEMICOLON - +Static variable in interface com.openshift.client.IHttpClient +
  +
SERVICE_PATH - +Static variable in interface com.openshift.internal.client.IRestService +
  +
SERVICE_VERSION - +Static variable in interface com.openshift.internal.client.IRestService +
  +
setAcceptedMediaType(String) - +Method in interface com.openshift.client.IHttpClient +
  +
setAcceptedMediaType(String) - +Method in class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
setAcceptMediaType(String) - +Method in class com.openshift.internal.client.httpclient.UrlConnectionHttpClientBuilder +
  +
setAcceptVersion(String) - +Method in interface com.openshift.client.IHttpClient +
  +
setAcceptVersion(String) - +Method in class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
setApplicationScale(ApplicationScale) - +Method in class com.openshift.client.ApplicationBuilder.NamedCartridgeHolder +
  +
setCartridge(IStandaloneCartridge) - +Method in class com.openshift.client.ApplicationBuilder +
  +
setCredentials(String, String) - +Method in class com.openshift.internal.client.httpclient.UrlConnectionHttpClientBuilder +
  +
setCredentials(String, String, String, String) - +Method in class com.openshift.internal.client.httpclient.UrlConnectionHttpClientBuilder +
  +
setEnableSSLCertChecks(boolean) - +Method in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
setEnableSSLCertChecks(boolean) - +Method in interface com.openshift.client.IOpenShiftConnection +
Sets flag for enabling SSL certificate checks (i.e. +
setEnableSSLCertChecks(boolean) - +Method in class com.openshift.internal.client.APIResource +
  +
setGearProfile(IGearProfile) - +Method in class com.openshift.client.ApplicationBuilder.NamedCartridgeHolder +
  +
setInitialGitUrl(String) - +Method in class com.openshift.client.ApplicationBuilder.NamedCartridgeHolder +
  +
setKeyType(SSHKeyType, String) - +Method in interface com.openshift.client.IOpenShiftSSHKey +
Sets the new type and public key of this ssh key to the OpenShift PaaS +
setKeyType(String) - +Method in class com.openshift.internal.client.ssh.AbstractSSHKey +
  +
setKeyType(SSHKeyType) - +Method in class com.openshift.internal.client.ssh.AbstractSSHKey +
  +
setKeyType(SSHKeyType, String) - +Method in class com.openshift.internal.client.SSHKeyResource +
  +
setLibraDomain(String) - +Method in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
setLibraDomain(String) - +Method in interface com.openshift.client.configuration.IOpenShiftConfiguration +
  +
setLibraServer(String) - +Method in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
setLibraServer(String) - +Method in interface com.openshift.client.configuration.IOpenShiftConfiguration +
  +
setLinks(Map<String, Link>) - +Method in class com.openshift.internal.client.AbstractOpenShiftResource +
  +
setLocalAddress(String) - +Method in interface com.openshift.client.IApplicationPortForwarding +
  +
setLocalAddress(String) - +Method in class com.openshift.internal.client.ssh.ApplicationPortForwarding +
  +
setLocalPort(int) - +Method in interface com.openshift.client.IApplicationPortForwarding +
  +
setLocalPort(int) - +Method in class com.openshift.internal.client.ssh.ApplicationPortForwarding +
  +
setName(String) - +Method in class com.openshift.client.ApplicationBuilder.CartridgeHolder +
  +
setProxyHost(String) - +Method in interface com.openshift.client.IOpenShiftConnection +
Sets the HTTP proxy hostname +
setProxyHost(String) - +Method in class com.openshift.internal.client.APIResource +
  +
setProxyPort(String) - +Method in interface com.openshift.client.IOpenShiftConnection +
Sets the HTTP proxy port +
setProxyPort(String) - +Method in class com.openshift.internal.client.APIResource +
  +
setProxySet(boolean) - +Method in interface com.openshift.client.IOpenShiftConnection +
Sets flag for using an HTTP proxy +
setProxySet(boolean) - +Method in class com.openshift.internal.client.APIResource +
  +
setPublicKey(String) - +Method in interface com.openshift.client.IOpenShiftSSHKey +
Sets the public key portion of this ssh key to the OpenShift PaaS. +
setPublicKey(String) - +Method in class com.openshift.internal.client.SSHKeyResource +
  +
setRhlogin(String) - +Method in class com.openshift.client.configuration.AbstractOpenshiftConfiguration +
  +
setRhlogin(String) - +Method in interface com.openshift.client.configuration.IOpenShiftConfiguration +
  +
setSSHSession(Session) - +Method in interface com.openshift.client.IApplication +
Sets the SSH session that this application will use to connect to + OpenShift to perform some operations. +
setSSHSession(Session) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
setSSLChecks(boolean) - +Method in class com.openshift.internal.client.httpclient.UrlConnectionHttpClientBuilder +
  +
setUserAgent(String) - +Method in interface com.openshift.client.IHttpClient +
  +
setUserAgent(String) - +Method in class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
setUserAgent(String) - +Method in class com.openshift.internal.client.httpclient.UrlConnectionHttpClientBuilder +
  +
setVersion(String) - +Method in class com.openshift.internal.client.httpclient.UrlConnectionHttpClientBuilder +
  +
Severity - Class in com.openshift.internal.client
 
Severity(String) - +Constructor for class com.openshift.internal.client.Severity +
  +
size() - +Method in class com.openshift.client.Messages +
  +
size() - +Method in class com.openshift.internal.client.response.CartridgeResourceProperties +
  +
SLASH - +Static variable in interface com.openshift.client.IHttpClient +
  +
SMALL - +Static variable in interface com.openshift.client.IGearProfile +
  +
SPACE - +Static variable in interface com.openshift.client.IHttpClient +
  +
sshExecCmd(String, ApplicationResource.SshStreams) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
SSHKeyPair - Class in com.openshift.client
 
SSHKeyResource - Class in com.openshift.internal.client
 
SSHKeyResource(KeyResourceDTO, UserResource) - +Constructor for class com.openshift.internal.client.SSHKeyResource +
  +
SSHKeyType - Enum in com.openshift.client
 
SSHPublicKey - Class in com.openshift.client
 
SSHPublicKey(String) - +Constructor for class com.openshift.client.SSHPublicKey +
  +
SSHPublicKey(File) - +Constructor for class com.openshift.client.SSHPublicKey +
  +
sslChecks - +Variable in class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
StandaloneCartridge - Class in com.openshift.client.cartridge
A cartridge that is available on the openshift server.
StandaloneCartridge(String) - +Constructor for class com.openshift.client.cartridge.StandaloneCartridge +
  +
StandaloneCartridge(URL) - +Constructor for class com.openshift.client.cartridge.StandaloneCartridge +
  +
StandaloneCartridge(String, URL) - +Constructor for class com.openshift.client.cartridge.StandaloneCartridge +
  +
StandaloneCartridge(String, String, String) - +Constructor for class com.openshift.client.cartridge.StandaloneCartridge +
  +
StandaloneCartridge(String, URL, String, String) - +Constructor for class com.openshift.client.cartridge.StandaloneCartridge +
  +
start() - +Method in interface com.openshift.client.IApplication +
Starts this application. +
start(Session) - +Method in interface com.openshift.client.IApplicationPortForwarding +
Start the binding, ie, open a SSH tunnel between local address:port and remote address:port. +
start() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
start(Session) - +Method in class com.openshift.internal.client.ssh.ApplicationPortForwarding +
  +
startPortForwarding() - +Method in interface com.openshift.client.IApplication +
  +
startPortForwarding() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
STATUS_BAD_REQUEST - +Static variable in interface com.openshift.client.IHttpClient +
  +
STATUS_INTERNAL_SERVER_ERROR - +Static variable in interface com.openshift.client.IHttpClient +
  +
STATUS_NOT_FOUND - +Static variable in interface com.openshift.client.IHttpClient +
  +
STATUS_OK - +Static variable in interface com.openshift.client.IHttpClient +
  +
STATUS_UNAUTHORIZED - +Static variable in interface com.openshift.client.IHttpClient +
  +
stop() - +Method in interface com.openshift.client.IApplication +
Stops this application. +
stop(boolean) - +Method in interface com.openshift.client.IApplication +
Stops this application +
stop(Session) - +Method in interface com.openshift.client.IApplicationPortForwarding +
Stop the SSH tunnel. +
stop() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
stop(boolean) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
stop(Session) - +Method in class com.openshift.internal.client.ssh.ApplicationPortForwarding +
  +
stopPortForwarding() - +Method in interface com.openshift.client.IApplication +
Stop the port-forwarding for all ports. +
stopPortForwarding() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
StreamUtils - Class in com.openshift.internal.client.utils
 
StreamUtils() - +Constructor for class com.openshift.internal.client.utils.StreamUtils +
  +
STRING - +Static variable in class com.openshift.internal.client.response.LinkParameterType +
  +
StringParameter - Class in com.openshift.internal.client.httpclient.request
 
StringParameter(String, String) - +Constructor for class com.openshift.internal.client.httpclient.request.StringParameter +
  +
StringPropertyQuery - Class in com.openshift.client.cartridge.selector
A constraint that shall match available cartridges by url.
StringPropertyQuery(String) - +Constructor for class com.openshift.client.cartridge.selector.StringPropertyQuery +
  +
StringPropertyQuery(Pattern) - +Constructor for class com.openshift.client.cartridge.selector.StringPropertyQuery +
  +
StringUtils - Class in com.openshift.internal.client.utils
 
StringUtils() - +Constructor for class com.openshift.internal.client.utils.StringUtils +
  +
StringValue - Class in com.openshift.internal.client.httpclient.request
 
StringValue(String) - +Constructor for class com.openshift.internal.client.httpclient.request.StringValue +
  +
switchyard() - +Static method in class com.openshift.client.cartridge.selector.LatestVersionOf +
  +
SYSPROP_DEFAULT_CONNECT_TIMEOUT - +Static variable in interface com.openshift.client.IHttpClient +
  +
SYSPROP_DEFAULT_READ_TIMEOUT - +Static variable in interface com.openshift.client.IHttpClient +
  +
SYSPROP_OPENSHIFT_CONNECT_TIMEOUT - +Static variable in interface com.openshift.client.IHttpClient +
  +
SYSPROP_OPENSHIFT_READ_TIMEOUT - +Static variable in interface com.openshift.client.IHttpClient +
  +
SystemConfiguration - Class in com.openshift.client.configuration
The system wide OpenShift configuration that is at /etc/express.conf
SystemConfiguration(IOpenShiftConfiguration) - +Constructor for class com.openshift.client.configuration.SystemConfiguration +
  +
SystemProperties - Class in com.openshift.client.configuration
 
SystemProperties(IOpenShiftConfiguration) - +Constructor for class com.openshift.client.configuration.SystemProperties +
  +
+
+

+T

+
+
toArray() - +Method in class com.openshift.internal.client.AbstractOpenShiftResource.Parameters +
  +
toJSchKeyType() - +Method in enum com.openshift.client.SSHKeyType +
Returns the JSch key pair constant for a given SSHKeyType. +
toList() - +Method in class com.openshift.internal.client.AbstractOpenShiftResource.Parameters +
  +
toLowerCase(String) - +Static method in class com.openshift.internal.client.utils.StringUtils +
  +
toLowerCase(Enum<?>) - +Static method in class com.openshift.internal.client.utils.StringUtils +
  +
toNames(ICartridge...) - +Static method in class com.openshift.client.utils.OpenShiftResourceUtils +
  +
toString() - +Method in class com.openshift.client.Message +
  +
toString() - +Method in class com.openshift.client.Messages +
  +
toString() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
toString() - +Method in class com.openshift.internal.client.cartridge.BaseCartridge +
  +
toString() - +Method in class com.openshift.internal.client.DomainResource +
  +
toString() - +Method in class com.openshift.internal.client.EmbeddedCartridgeResource +
  +
toString() - +Method in class com.openshift.internal.client.EnvironmentVariableResource +
  +
toString() - +Method in class com.openshift.internal.client.Gear +
  +
toString() - +Method in class com.openshift.internal.client.GearProfile +
  +
toString() - +Method in class com.openshift.internal.client.httpclient.request.Parameter +
  +
toString() - +Method in class com.openshift.internal.client.httpclient.request.ParameterValue +
  +
toString() - +Method in class com.openshift.internal.client.httpclient.request.ParameterValueArray +
  +
toString() - +Method in class com.openshift.internal.client.httpclient.request.ParameterValueMap +
  +
toString() - +Method in class com.openshift.internal.client.httpclient.request.StringParameter +
  +
toString() - +Method in class com.openshift.internal.client.httpclient.request.StringValue +
  +
toString() - +Method in class com.openshift.internal.client.response.ApplicationResourceDTO +
  +
toString() - +Method in class com.openshift.internal.client.response.CartridgeResourceDTO +
  +
toString() - +Method in class com.openshift.internal.client.response.CartridgeResourceProperties +
  +
toString() - +Method in class com.openshift.internal.client.response.CartridgeResourceProperty +
  +
toString() - +Method in class com.openshift.internal.client.response.GearResourceDTO +
  +
toString() - +Method in class com.openshift.internal.client.response.KeyResourceDTO +
  +
toString() - +Method in class com.openshift.internal.client.response.Link +
  +
toString() - +Method in class com.openshift.internal.client.ssh.AbstractSSHKey +
  +
toString() - +Method in class com.openshift.internal.client.ssh.ApplicationPortForwarding +
  +
toString() - +Method in class com.openshift.internal.client.SSHKeyResource +
  +
toString() - +Method in class com.openshift.internal.client.UserResource +
  +
toString(URL) - +Static method in class com.openshift.internal.client.utils.UrlUtils +
  +
toUnmodifiableCopy(Collection<T>) - +Static method in class com.openshift.internal.client.utils.CollectionUtils +
  +
type - +Variable in class com.openshift.internal.client.response.LinkParameter +
  +
+
+

+U

+
+
UnauthorizedException - Exception in com.openshift.internal.client.httpclient
 
UnauthorizedException(String, Throwable) - +Constructor for exception com.openshift.internal.client.httpclient.UnauthorizedException +
  +
UnauthorizedException(Throwable) - +Constructor for exception com.openshift.internal.client.httpclient.UnauthorizedException +
  +
update(String) - +Method in interface com.openshift.client.IEnvironmentVariable +
Updates this environment variable to the given value. +
update(ApplicationResourceDTO) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
update(CartridgeResourceDTO) - +Method in class com.openshift.internal.client.EmbeddedCartridgeResource +
  +
update(String) - +Method in class com.openshift.internal.client.EnvironmentVariableResource +
  +
update(KeyResourceDTO) - +Method in class com.openshift.internal.client.SSHKeyResource +
  +
updateEnvironmentVariables() - +Method in class com.openshift.internal.client.ApplicationResource +
  +
UrlConnectionHttpClient - Class in com.openshift.internal.client.httpclient
 
UrlConnectionHttpClient(String, String, String, boolean, String, String) - +Constructor for class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
UrlConnectionHttpClient(String, String, String, boolean, String, String, String, String) - +Constructor for class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
UrlConnectionHttpClientBuilder - Class in com.openshift.internal.client.httpclient
 
UrlConnectionHttpClientBuilder() - +Constructor for class com.openshift.internal.client.httpclient.UrlConnectionHttpClientBuilder +
  +
UrlPropertyQuery - Class in com.openshift.client.cartridge.selector
 
UrlPropertyQuery() - +Constructor for class com.openshift.client.cartridge.selector.UrlPropertyQuery +
  +
UrlUtils - Class in com.openshift.internal.client.utils
 
userAgent - +Variable in class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
UserConfiguration - Class in com.openshift.client.configuration
 
UserConfiguration(SystemConfiguration) - +Constructor for class com.openshift.client.configuration.UserConfiguration +
  +
username - +Variable in class com.openshift.internal.client.httpclient.UrlConnectionHttpClient +
  +
USERNAME - +Static variable in class com.openshift.internal.client.response.CartridgeResourceProperties +
  +
USERNAME_SEPARATOR - +Static variable in class com.openshift.internal.client.utils.UrlUtils +
  +
UserResource - Class in com.openshift.internal.client
 
UserResource(APIResource, UserResourceDTO, String) - +Constructor for class com.openshift.internal.client.UserResource +
  +
UserResourceDTO - Class in com.openshift.internal.client.response
 
+
+

+V

+
+
validateRequestParameters(Parameter[]) - +Method in class com.openshift.internal.client.response.Link +
  +
validOptions - +Variable in class com.openshift.internal.client.response.LinkParameter +
  +
VALUE_ADD_ALIAS - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
VALUE_FORCESTOP - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
VALUE_REMOVE_ALIAS - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
VALUE_RESTART - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
VALUE_SCALE_DOWN - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
VALUE_SCALE_UP - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
VALUE_START - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
VALUE_STATUS - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
VALUE_STATUS_CREATED - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
VALUE_STATUS_OK - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
VALUE_STOP - +Static variable in class com.openshift.internal.client.utils.IOpenShiftJsonConstants +
  +
valueOf(String) - +Static method in enum com.openshift.client.ApplicationScale +
Returns the enum constant of this type with the specified name. +
valueOf(String) - +Static method in enum com.openshift.client.GearState +
Returns the enum constant of this type with the specified name. +
valueOf(String) - +Static method in enum com.openshift.client.HttpMethod +
Returns the enum constant of this type with the specified name. +
valueOf(String) - +Static method in enum com.openshift.client.SSHKeyType +
Returns the enum constant of this type with the specified name. +
valueOf(String) - +Static method in enum com.openshift.internal.client.ApplicationResource.SshStreams +
Returns the enum constant of this type with the specified name. +
valueOf(String) - +Static method in enum com.openshift.internal.client.CartridgeType +
Returns the enum constant of this type with the specified name. +
valueOf(String) - +Static method in enum com.openshift.internal.client.response.EnumDataType +
Returns the enum constant of this type with the specified name. +
values() - +Static method in enum com.openshift.client.ApplicationScale +
Returns an array containing the constants of this enum type, in +the order they are declared. +
values() - +Static method in enum com.openshift.client.GearState +
Returns an array containing the constants of this enum type, in +the order they are declared. +
values() - +Static method in enum com.openshift.client.HttpMethod +
Returns an array containing the constants of this enum type, in +the order they are declared. +
values() - +Static method in enum com.openshift.client.SSHKeyType +
Returns an array containing the constants of this enum type, in +the order they are declared. +
values() - +Static method in enum com.openshift.internal.client.ApplicationResource.SshStreams +
Returns an array containing the constants of this enum type, in +the order they are declared. +
values() - +Static method in enum com.openshift.internal.client.CartridgeType +
Returns an array containing the constants of this enum type, in +the order they are declared. +
values() - +Static method in enum com.openshift.internal.client.response.EnumDataType +
Returns an array containing the constants of this enum type, in +the order they are declared. +
VERSION - +Static variable in interface com.openshift.client.IHttpClient +
  +
+
+

+W

+
+
waitForAccessible(long) - +Method in interface com.openshift.client.IApplication +
Waits for this application to become accessible on its public url. +
waitForAccessible(long) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
waitForAccessibleAsync(long) - +Method in interface com.openshift.client.IApplication +
Returns a Future that the caller can use to wait for the application to + become accessible on its public url. +
waitForAccessibleAsync(long) - +Method in class com.openshift.internal.client.ApplicationResource +
  +
writeTo(ParameterValueMap, OutputStream) - +Method in class com.openshift.internal.client.httpclient.request.FormUrlEncodedMediaType +
  +
writeTo(ParameterValueMap, OutputStream) - +Method in interface com.openshift.internal.client.httpclient.request.IMediaType +
  +
writeTo(ParameterValueMap, OutputStream) - +Method in class com.openshift.internal.client.httpclient.request.JsonMediaType +
  +
writeTo(InputStream, OutputStream) - +Static method in class com.openshift.internal.client.utils.StreamUtils +
Writes the content of the given input stream to the given output stream + and returns and input stream that may still be used to read from. +
writeTo(byte[], OutputStream) - +Static method in class com.openshift.internal.client.utils.StreamUtils +
Writes the given string to the given output stream. +
+
+

+Z

+
+
zend() - +Static method in class com.openshift.client.cartridge.selector.LatestVersionOf +
  +
+
+A B C D E F G H I J K L M N O P Q R S T U V W Z + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/index.html b/documentation/index.html new file mode 100644 index 00000000..ea094f92 --- /dev/null +++ b/documentation/index.html @@ -0,0 +1,74 @@ + + + + + + + +OpenShift Java Client 2.5.0.Final API + + + + + + + + + + + +<H2> +Frame Alert</H2> + +<P> +This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. +<BR> +Link to<A HREF="overview-summary.html">Non-frame version.</A> + + + diff --git a/documentation/overview-frame.html b/documentation/overview-frame.html new file mode 100644 index 00000000..39a826e9 --- /dev/null +++ b/documentation/overview-frame.html @@ -0,0 +1,65 @@ + + + + + + + +Overview List (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final
+ + + + + +
All Classes +

+ +Packages +
+com.openshift.client +
+com.openshift.client.cartridge +
+com.openshift.client.cartridge.selector +
+com.openshift.client.configuration +
+com.openshift.client.utils +
+com.openshift.internal.client +
+com.openshift.internal.client.cartridge +
+com.openshift.internal.client.httpclient +
+com.openshift.internal.client.httpclient.request +
+com.openshift.internal.client.response +
+com.openshift.internal.client.ssh +
+com.openshift.internal.client.utils +
+

+ +

+  + + diff --git a/documentation/overview-summary.html b/documentation/overview-summary.html new file mode 100644 index 00000000..b9149a24 --- /dev/null +++ b/documentation/overview-summary.html @@ -0,0 +1,201 @@ + + + + + + + +Overview (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+OpenShift Java Client 2.5.0.Final API +

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Packages
com.openshift.client 
com.openshift.client.cartridge 
com.openshift.client.cartridge.selector 
com.openshift.client.configuration 
com.openshift.client.utils 
com.openshift.internal.client 
com.openshift.internal.client.cartridge 
com.openshift.internal.client.httpclient 
com.openshift.internal.client.httpclient.request 
com.openshift.internal.client.response 
com.openshift.internal.client.ssh 
com.openshift.internal.client.utils 
+ +


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/overview-tree.html b/documentation/overview-tree.html new file mode 100644 index 00000000..84df60db --- /dev/null +++ b/documentation/overview-tree.html @@ -0,0 +1,239 @@ + + + + + + + +Class Hierarchy (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Hierarchy For All Packages

+
+
+
Package Hierarchies:
com.openshift.client, com.openshift.client.cartridge, com.openshift.client.cartridge.selector, com.openshift.client.configuration, com.openshift.client.utils, com.openshift.internal.client, com.openshift.internal.client.cartridge, com.openshift.internal.client.httpclient, com.openshift.internal.client.httpclient.request, com.openshift.internal.client.response, com.openshift.internal.client.ssh, com.openshift.internal.client.utils
+
+

+Class Hierarchy +

+ +

+Interface Hierarchy +

+ +

+Enum Hierarchy +

+ +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/package-list b/documentation/package-list new file mode 100644 index 00000000..b061304d --- /dev/null +++ b/documentation/package-list @@ -0,0 +1,12 @@ +com.openshift.client +com.openshift.client.cartridge +com.openshift.client.cartridge.selector +com.openshift.client.configuration +com.openshift.client.utils +com.openshift.internal.client +com.openshift.internal.client.cartridge +com.openshift.internal.client.httpclient +com.openshift.internal.client.httpclient.request +com.openshift.internal.client.response +com.openshift.internal.client.ssh +com.openshift.internal.client.utils diff --git a/documentation/resources/inherit.gif b/documentation/resources/inherit.gif new file mode 100644 index 00000000..c814867a Binary files /dev/null and b/documentation/resources/inherit.gif differ diff --git a/documentation/serialized-form.html b/documentation/serialized-form.html new file mode 100644 index 00000000..d976cad9 --- /dev/null +++ b/documentation/serialized-form.html @@ -0,0 +1,446 @@ + + + + + + + +Serialized Form (OpenShift Java Client 2.5.0.Final API) + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+
+

+Serialized Form

+
+
+ + + + + +
+Package com.openshift.client
+ +

+ + + + + +
+Class com.openshift.client.InvalidCredentialsOpenShiftException extends OpenShiftEndpointException implements Serializable
+ +

+serialVersionUID: 1L + +

+ +

+ + + + + +
+Class com.openshift.client.InvalidNameOpenShiftException extends OpenShiftException implements Serializable
+ +

+serialVersionUID: 1L + +

+ +

+ + + + + +
+Class com.openshift.client.NotFoundOpenShiftException extends OpenShiftEndpointException implements Serializable
+ +

+serialVersionUID: 1L + +

+ +

+ + + + + +
+Class com.openshift.client.OpenShiftApplicationNotAvailableException extends OpenShiftException implements Serializable
+ +

+serialVersionUID: 1L + +

+ +

+ + + + + +
+Class com.openshift.client.OpenShiftEndpointException extends OpenShiftException implements Serializable
+ +

+serialVersionUID: 8251533839480636815L + +

+ + + + + +
+Serialized Fields
+ +

+url

+
+String url
+
+
+
+
+
+

+response

+
+RestResponse response
+
+
+
+
+ +

+ + + + + +
+Class com.openshift.client.OpenShiftException extends RuntimeException implements Serializable
+ +

+serialVersionUID: 1L + +

+ +

+ + + + + +
+Class com.openshift.client.OpenShiftRequestException extends OpenShiftException implements Serializable
+ +

+serialVersionUID: 1L + +

+ +

+ + + + + +
+Class com.openshift.client.OpenShiftSSHKeyException extends OpenShiftException implements Serializable
+ +

+serialVersionUID: 1L + +

+ +

+ + + + + +
+Class com.openshift.client.OpenShiftSSHOperationException extends OpenShiftException implements Serializable
+ +

+serialVersionUID: -1058021959768485317L + +

+ +

+ + + + + +
+Class com.openshift.client.OpenShiftTimeoutException extends OpenShiftEndpointException implements Serializable
+ +

+serialVersionUID: 1L + +

+ +

+ + + + + +
+Class com.openshift.client.OpenShiftUnknonwSSHKeyTypeException extends OpenShiftException implements Serializable
+ +

+serialVersionUID: 1L + +

+


+ + + + + +
+Package com.openshift.internal.client.httpclient
+ +

+ + + + + +
+Class com.openshift.internal.client.httpclient.BadRequestException extends HttpClientException implements Serializable
+ +

+serialVersionUID: 1L + +

+ +

+ + + + + +
+Class com.openshift.internal.client.httpclient.EncodingException extends HttpClientException implements Serializable
+ +

+serialVersionUID: 1L + +

+ +

+ + + + + +
+Class com.openshift.internal.client.httpclient.HttpClientException extends RuntimeException implements Serializable
+ +

+serialVersionUID: 1L + +

+ +

+ + + + + +
+Class com.openshift.internal.client.httpclient.InternalServerErrorException extends HttpClientException implements Serializable
+ +

+serialVersionUID: 1L + +

+ +

+ + + + + +
+Class com.openshift.internal.client.httpclient.NotFoundException extends HttpClientException implements Serializable
+ +

+serialVersionUID: 1L + +

+ +

+ + + + + +
+Class com.openshift.internal.client.httpclient.UnauthorizedException extends HttpClientException implements Serializable
+ +

+serialVersionUID: 1L + +

+


+ + + + + +
+Package com.openshift.internal.client.utils
+ +

+ + + + + +
+Class com.openshift.internal.client.utils.Assert.AssertionFailedException extends RuntimeException implements Serializable
+ +

+serialVersionUID: 1L + +

+ +

+


+ + + + + + + + + + + + + + + +
+OpenShift Java Client 2.5.0.Final +
+ + + +
+Copyright © 2014 JBoss, a division of Red Hat, Inc.. All Rights Reserved. + + diff --git a/documentation/stylesheet.css b/documentation/stylesheet.css new file mode 100644 index 00000000..6ea9e516 --- /dev/null +++ b/documentation/stylesheet.css @@ -0,0 +1,29 @@ +/* Javadoc style sheet */ + +/* Define colors, fonts and other style attributes here to override the defaults */ + +/* Page background color */ +body { background-color: #FFFFFF; color:#000000 } + +/* Headings */ +h1 { font-size: 145% } + +/* Table colors */ +.TableHeadingColor { background: #CCCCFF; color:#000000 } /* Dark mauve */ +.TableSubHeadingColor { background: #EEEEFF; color:#000000 } /* Light mauve */ +.TableRowColor { background: #FFFFFF; color:#000000 } /* White */ + +/* Font used in left-hand frame lists */ +.FrameTitleFont { font-size: 100%; font-family: Helvetica, Arial, sans-serif; color:#000000 } +.FrameHeadingFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif; color:#000000 } +.FrameItemFont { font-size: 90%; font-family: Helvetica, Arial, sans-serif; color:#000000 } + +/* Navigation bar fonts and colors */ +.NavBarCell1 { background-color:#EEEEFF; color:#000000} /* Light mauve */ +.NavBarCell1Rev { background-color:#00008B; color:#FFFFFF} /* Dark Blue */ +.NavBarFont1 { font-family: Arial, Helvetica, sans-serif; color:#000000;color:#000000;} +.NavBarFont1Rev { font-family: Arial, Helvetica, sans-serif; color:#FFFFFF;color:#FFFFFF;} + +.NavBarCell2 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF; color:#000000} +.NavBarCell3 { font-family: Arial, Helvetica, sans-serif; background-color:#FFFFFF; color:#000000} + diff --git a/epl-v10.html b/epl-v10.html deleted file mode 100644 index 3998fceb..00000000 --- a/epl-v10.html +++ /dev/null @@ -1,261 +0,0 @@ - - - - - - -Eclipse Public License - Version 1.0 - - - - - - -

Eclipse Public License - v 1.0

- -

THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE -PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR -DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS -AGREEMENT.

- -

1. DEFINITIONS

- -

"Contribution" means:

- -

a) in the case of the initial Contributor, the initial -code and documentation distributed under this Agreement, and

-

b) in the case of each subsequent Contributor:

-

i) changes to the Program, and

-

ii) additions to the Program;

-

where such changes and/or additions to the Program -originate from and are distributed by that particular Contributor. A -Contribution 'originates' from a Contributor if it was added to the -Program by such Contributor itself or anyone acting on such -Contributor's behalf. Contributions do not include additions to the -Program which: (i) are separate modules of software distributed in -conjunction with the Program under their own license agreement, and (ii) -are not derivative works of the Program.

- -

"Contributor" means any person or entity that distributes -the Program.

- -

"Licensed Patents" mean patent claims licensable by a -Contributor which are necessarily infringed by the use or sale of its -Contribution alone or when combined with the Program.

- -

"Program" means the Contributions distributed in accordance -with this Agreement.

- -

"Recipient" means anyone who receives the Program under -this Agreement, including all Contributors.

- -

2. GRANT OF RIGHTS

- -

a) Subject to the terms of this Agreement, each -Contributor hereby grants Recipient a non-exclusive, worldwide, -royalty-free copyright license to reproduce, prepare derivative works -of, publicly display, publicly perform, distribute and sublicense the -Contribution of such Contributor, if any, and such derivative works, in -source code and object code form.

- -

b) Subject to the terms of this Agreement, each -Contributor hereby grants Recipient a non-exclusive, worldwide, -royalty-free patent license under Licensed Patents to make, use, sell, -offer to sell, import and otherwise transfer the Contribution of such -Contributor, if any, in source code and object code form. This patent -license shall apply to the combination of the Contribution and the -Program if, at the time the Contribution is added by the Contributor, -such addition of the Contribution causes such combination to be covered -by the Licensed Patents. The patent license shall not apply to any other -combinations which include the Contribution. No hardware per se is -licensed hereunder.

- -

c) Recipient understands that although each Contributor -grants the licenses to its Contributions set forth herein, no assurances -are provided by any Contributor that the Program does not infringe the -patent or other intellectual property rights of any other entity. Each -Contributor disclaims any liability to Recipient for claims brought by -any other entity based on infringement of intellectual property rights -or otherwise. As a condition to exercising the rights and licenses -granted hereunder, each Recipient hereby assumes sole responsibility to -secure any other intellectual property rights needed, if any. For -example, if a third party patent license is required to allow Recipient -to distribute the Program, it is Recipient's responsibility to acquire -that license before distributing the Program.

- -

d) Each Contributor represents that to its knowledge it -has sufficient copyright rights in its Contribution, if any, to grant -the copyright license set forth in this Agreement.

- -

3. REQUIREMENTS

- -

A Contributor may choose to distribute the Program in object code -form under its own license agreement, provided that:

- -

a) it complies with the terms and conditions of this -Agreement; and

- -

b) its license agreement:

- -

i) effectively disclaims on behalf of all Contributors -all warranties and conditions, express and implied, including warranties -or conditions of title and non-infringement, and implied warranties or -conditions of merchantability and fitness for a particular purpose;

- -

ii) effectively excludes on behalf of all Contributors -all liability for damages, including direct, indirect, special, -incidental and consequential damages, such as lost profits;

- -

iii) states that any provisions which differ from this -Agreement are offered by that Contributor alone and not by any other -party; and

- -

iv) states that source code for the Program is available -from such Contributor, and informs licensees how to obtain it in a -reasonable manner on or through a medium customarily used for software -exchange.

- -

When the Program is made available in source code form:

- -

a) it must be made available under this Agreement; and

- -

b) a copy of this Agreement must be included with each -copy of the Program.

- -

Contributors may not remove or alter any copyright notices contained -within the Program.

- -

Each Contributor must identify itself as the originator of its -Contribution, if any, in a manner that reasonably allows subsequent -Recipients to identify the originator of the Contribution.

- -

4. COMMERCIAL DISTRIBUTION

- -

Commercial distributors of software may accept certain -responsibilities with respect to end users, business partners and the -like. While this license is intended to facilitate the commercial use of -the Program, the Contributor who includes the Program in a commercial -product offering should do so in a manner which does not create -potential liability for other Contributors. Therefore, if a Contributor -includes the Program in a commercial product offering, such Contributor -("Commercial Contributor") hereby agrees to defend and -indemnify every other Contributor ("Indemnified Contributor") -against any losses, damages and costs (collectively "Losses") -arising from claims, lawsuits and other legal actions brought by a third -party against the Indemnified Contributor to the extent caused by the -acts or omissions of such Commercial Contributor in connection with its -distribution of the Program in a commercial product offering. The -obligations in this section do not apply to any claims or Losses -relating to any actual or alleged intellectual property infringement. In -order to qualify, an Indemnified Contributor must: a) promptly notify -the Commercial Contributor in writing of such claim, and b) allow the -Commercial Contributor to control, and cooperate with the Commercial -Contributor in, the defense and any related settlement negotiations. The -Indemnified Contributor may participate in any such claim at its own -expense.

- -

For example, a Contributor might include the Program in a commercial -product offering, Product X. That Contributor is then a Commercial -Contributor. If that Commercial Contributor then makes performance -claims, or offers warranties related to Product X, those performance -claims and warranties are such Commercial Contributor's responsibility -alone. Under this section, the Commercial Contributor would have to -defend claims against the other Contributors related to those -performance claims and warranties, and if a court requires any other -Contributor to pay any damages as a result, the Commercial Contributor -must pay those damages.

- -

5. NO WARRANTY

- -

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS -PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS -OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, -ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY -OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely -responsible for determining the appropriateness of using and -distributing the Program and assumes all risks associated with its -exercise of rights under this Agreement , including but not limited to -the risks and costs of program errors, compliance with applicable laws, -damage to or loss of data, programs or equipment, and unavailability or -interruption of operations.

- -

6. DISCLAIMER OF LIABILITY

- -

EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT -NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING -WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF -LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR -DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED -HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

- -

7. GENERAL

- -

If any provision of this Agreement is invalid or unenforceable under -applicable law, it shall not affect the validity or enforceability of -the remainder of the terms of this Agreement, and without further action -by the parties hereto, such provision shall be reformed to the minimum -extent necessary to make such provision valid and enforceable.

- -

If Recipient institutes patent litigation against any entity -(including a cross-claim or counterclaim in a lawsuit) alleging that the -Program itself (excluding combinations of the Program with other -software or hardware) infringes such Recipient's patent(s), then such -Recipient's rights granted under Section 2(b) shall terminate as of the -date such litigation is filed.

- -

All Recipient's rights under this Agreement shall terminate if it -fails to comply with any of the material terms or conditions of this -Agreement and does not cure such failure in a reasonable period of time -after becoming aware of such noncompliance. If all Recipient's rights -under this Agreement terminate, Recipient agrees to cease use and -distribution of the Program as soon as reasonably practicable. However, -Recipient's obligations under this Agreement and any licenses granted by -Recipient relating to the Program shall continue and survive.

- -

Everyone is permitted to copy and distribute copies of this -Agreement, but in order to avoid inconsistency the Agreement is -copyrighted and may only be modified in the following manner. The -Agreement Steward reserves the right to publish new versions (including -revisions) of this Agreement from time to time. No one other than the -Agreement Steward has the right to modify this Agreement. The Eclipse -Foundation is the initial Agreement Steward. The Eclipse Foundation may -assign the responsibility to serve as the Agreement Steward to a -suitable separate entity. Each new version of the Agreement will be -given a distinguishing version number. The Program (including -Contributions) may always be distributed subject to the version of the -Agreement under which it was received. In addition, after a new version -of the Agreement is published, Contributor may elect to distribute the -Program (including its Contributions) under the new version. Except as -expressly stated in Sections 2(a) and 2(b) above, Recipient receives no -rights or licenses to the intellectual property of any Contributor under -this Agreement, whether expressly, by implication, estoppel or -otherwise. All rights in the Program not expressly granted under this -Agreement are reserved.

- -

This Agreement is governed by the laws of the State of New York and -the intellectual property laws of the United States of America. No party -to this Agreement will bring a legal action under this Agreement more -than one year after the cause of action arose. Each party waives its -rights to a jury trial in any resulting litigation.

- - - - \ No newline at end of file diff --git a/fonts/bootstrap/glyphicons-halflings-regular.eot b/fonts/bootstrap/glyphicons-halflings-regular.eot new file mode 100644 index 00000000..4a4ca865 Binary files /dev/null and b/fonts/bootstrap/glyphicons-halflings-regular.eot differ diff --git a/fonts/bootstrap/glyphicons-halflings-regular.svg b/fonts/bootstrap/glyphicons-halflings-regular.svg new file mode 100644 index 00000000..e3e2dc73 --- /dev/null +++ b/fonts/bootstrap/glyphicons-halflings-regular.svg @@ -0,0 +1,229 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/bootstrap/glyphicons-halflings-regular.ttf b/fonts/bootstrap/glyphicons-halflings-regular.ttf new file mode 100644 index 00000000..67fa00bf Binary files /dev/null and b/fonts/bootstrap/glyphicons-halflings-regular.ttf differ diff --git a/fonts/bootstrap/glyphicons-halflings-regular.woff b/fonts/bootstrap/glyphicons-halflings-regular.woff new file mode 100644 index 00000000..8c54182a Binary files /dev/null and b/fonts/bootstrap/glyphicons-halflings-regular.woff differ diff --git a/gethelp/index.html.haml b/gethelp/index.html.haml new file mode 100644 index 00000000..2c9187ea --- /dev/null +++ b/gethelp/index.html.haml @@ -0,0 +1,23 @@ +--- +layout: default +title: Get Help +page_name: gethelp +--- +%h1 Get Help! +%p Everyone needs a little help sometimes, from n00bs to veteran Java programmers. Keep reading below to find out where you can get help using the OpenShift Java Client, and contributing to this awesome project. + +%h3 Where can I chat in real time with people about the OpenShift Java Client? +%p + Excellent question! If you want to chat in real time with people about this library, whether it is questions about using it in your own applications, or how you can contribute to this project, then you should join one (or both) of the following channels on Freenode IRC. + %ul + %li Join the #openshift-dev channel on the irc.freenode.net IRC server + %li Join the #jbosstools channel on the irc.freenode.net IRC server +%h3 Where can I file bug reports, feature requests, and track the status of the project? +%p The best way to file bug reports, feature requests, and generally keep up to date on the project is to create an account at JBoss.org and then check out the OpenShift Java Client Project. This is especially important if you plan on becoming a contributor. + +%h3 Where can I ask questions and get responses while I work on something else? +%p Sometimes you want to reach a larger audience with your question in hopes of receiving responses from experts in different technologies, have people vote your question up or down, and let the community decide what the best answer to your question is. Does this sound familiar? It should. stackoverflow to the rescue! +%p Sign up for an account at stackoverflow and post your question! Make sure that you add the openshift tag, which is monitored by contributors to this project, along with many other projects that have to do with OpenShift, and any other tags that you feel are appropriate to get your question in front of the people that will be able to help you out. + +%h3 I'm old school, is there a mailing list? +%p Of course there is a mailing list! You can join the OpenShift Developer Mailing List to post questions, help answer others questions, and keep up to date on what is going on with OpenShift and it's associated tools and sub-projects. This mailing list is not specific to the OpenShift Java Client, but there are contributors subscribed to it. \ No newline at end of file diff --git a/getstarted/index.html.haml b/getstarted/index.html.haml new file mode 100644 index 00000000..c2b2b0ce --- /dev/null +++ b/getstarted/index.html.haml @@ -0,0 +1,98 @@ +--- +layout: default +title: Get Started +page_name: getstarted +--- + +%h1 Getting Started again +%p There are three main ways to obtain the OpenShift Java Client library for use in your applications. + +%h3 Download the Pre-Compiled JAR File +%p If you are not using an Apache Maven based project, or not familiar with building Maven Based projects from source, the easiest way to use this library would be to download the pre-compiled JAR file. +%p To do this you can visit the Maven Central Repository and do a search for "openshift-java-client", or you can click this link and then look for the version that you are interested in using and click on the "jar" link under the Download header on the right side of the page. +%p Next you will need to add the JAR file that you have downloaded to your project. This can be accomplished by placing the JAR file in the appropriate folder within your application, and then adding it as a dependency within your IDE. +%p In Eclipse this can be accomplished by going to Project Properties->Libraries->Add Jar, and then selecting the JAR file that you downloaded previously and placed within your project structure. Make sure that you select the correct options when you compile your project so that the JAR file will be bundled as a dependency within your application. + +%h3 Add to pom.xml as a Dependency +%p If you are using a Maven based project, the easiest way to use this library in your application is to add it as a dependency in your pom.xml file. +%p To do this, you need to visit the Maven Central Repository and pick which version you want to use from this page. Once you have chosen a version, click on the version number that is displayed under the "Latest Version" heading. +%p On the left side of the page, under "Dependency Information" you will see a box with the heading of "Apache Maven". You will need to copy the xml that is provided in that box and add it into the dependencies section of your pom.xml file. Sample XML code is provided below for the 2.5.0.Final version. +:plain +
+  <dependencies>
+      <dependency>
+          <groupId>com.openshift</groupId>
+          <artifactId>openshift-java-client</artifactId>
+          <version>2.5.0.Final</version>
+      </dependency>
+  </dependencies>
+  
+%p Once you have added the dependency you can build your project and the OpenShift Java Client will be downloaded and installed. + +%h3 Build the Library Using Maven and Use Within a Non-Maven Based Project +%p The last and most exciting way to get the OpenShift Java Client library is to download the source code and build it yourself. While adding it to your pom.xml file is the easiest and best way if you are using a Maven based project, building it yourself will give you a certain level of satisfaction and accomplishment. +%p First, make sure that you have Apache Maven installed by visiting the download page. We recommend using the newest stable version that is available. If you are using OS X you can use Macports or Homebrew to install it, or if you are using Linux use your included package manager such as YUM, APT. +%p The next step is to get the code. The best way to get it would be to fork the repository on github and then clone it to your workstation. Please see the Join Us section of the website for help updating your local working copy with upstream changes. Alternatively you can also download a zip file from github. +%p Once you have Maven installed and the source code downloaded you will need to open up a terminal and cd (change directory) to the location in which the source code resides. You will then need to type the command mvn clean package. This will clean the project (if you have issued the command before and have leftovers) and then build the project, including downloading any dependencies that are defined in the pom.xml file. +%p Maven will also run a few unit-tests to make sure that everything works after building the project. This is a basic set of functional tests and should not take very long to complete. Once it is finished you should have a new directory called target. If you cd (change directory) into the new target directory and run ls -lah you will see something similar to the below files: +:plain +
+  total 680
+  drwxr-xr-x  10 user  staff   340B Jan 28 23:02 .
+  drwxr-xr-x  10 user  staff   340B Jan 28 23:01 ..
+  drwxr-xr-x   4 user  staff   136B Jan 28 23:01 classes
+  drwxr-xr-x   4 user  staff   136B Jan 28 23:01 generated-sources
+  drwxr-xr-x   3 user  staff   102B Jan 28 23:02 maven-archiver
+  -rw-r--r--   1 user  staff   134K Jan 28 23:02 openshift-java-client-2.5.0.Final-sources.jar
+  -rw-r--r--   1 user  staff   204K Jan 28 23:02 openshift-java-client-2.5.0.Final.jar
+  drwxr-xr-x   2 user  staff    68B Jan 28 23:02 surefire
+  drwxr-xr-x   4 user  staff   136B Jan 28 23:02 surefire-reports
+  drwxr-xr-x   6 user  staff   204B Jan 28 23:01 test-classe
+  
+%p The file with the .jar extension, that is not -sources.jar is the one that you want to use. The version will be whatever the version of code that you downloaded or checked out is, and is defined in the pom.xml file of the project in the "Artifact Information" section as seen below: +:plain +
+  <!-- Artifact Information -->
+  <groupId>com.openshift</groupId>
+  <artifactId>openshift-java-client</artifactId>
+  <version>2.5.0.Final</version>
+  <packaging>jar</packaging>
+  <name>OpenShift Java Client</name>
+  <url>http://openshift.redhat.com</url>
+  <description>OpenShift Java Client</description>
+  
+ +%p Lastly you will need to add the JAR file that you have downloaded to your project. This can be accomplished by viewing your projects properties in your favorite IDE and adding this file as a dependency, or sometimes by placing it in a "libs" directory inside of your project. +%p If you would like to run the full integration tests you can run the command mvn clean verify -Pintegration-tests, it will take quite awhile so be patient, but remember that it is not required to build and use the library. It is covered more in the Join Us section of this website. + +%h3 Build the Library Using Maven and Use Within a Maven Based Project +%p The last and most exciting way to get the OpenShift Java Client library is to download the source code and build it yourself. While adding it to your pom.xml file is the easiest and best way if you are using a Maven based project, building it yourself will give you a certain level of satisfaction and accomplishment. +%p First, make sure that you have Apache Maven installed by visiting the download page. We recommend using the newest stable version that is available. If you are using OS X you can use Macports or Homebrew to install it, or if you are using Linux use your included package manager such as YUM, APT. +%p The next step is to get the code. The best way to get it would be to fork the repository on github and then clone it to your workstation. Please see the Join Us section of the website for help updating your local working copy with upstream changes. Alternatively you can also download a zip file from github. +%p Once you have Maven installed and the source code downloaded you will need to open up a terminal and cd (change directory) to the location in which the source code and the pom.xml resides. You will then need to type the command mvn clean install. This will clean the project, build the project, including downloading any dependencies that are defined in the pom.xml file, and then install it into your local Maven repository usually located at ~/.m2. +%p Once the package is installed, you can use it by inserting the following dependency in your projects pom.xml file. +:plain +
+  <dependencies>
+      <dependency>
+          <groupId>com.openshift</groupId>
+          <artifactId>openshift-java-client</artifactId>
+          <version>2.5.0.Final</version>
+      </dependency>
+  </dependencies>
+  
+%p Where 2.5.0 is the version that was built and installed. If you make any changes to the source code you should increment the minor or major version, depending on the depth of the change that you have made. It is also a Maven convention to use version-SNAPSHOT for any non-finalized version of the library. So the dependency you add in your local project's pom.xml file when testing updated version of the library may look more like this: +:plain +
+  <dependencies>
+      <dependency>
+          <groupId>com.openshift</groupId>
+          <artifactId>openshift-java-client</artifactId>
+          <version>2.5.1-SNAPSHOT</version>
+      </dependency>
+  </dependencies>
+  
+ +%p Maven will also run a few unit-tests to make sure that everything works after building the project. This is a basic set of functional tests and should not take very long to complete. Once it is finished you should have the library installed in your ~/.m2 directory as stated above. + +%p If you would like to run the full integration tests you can run the command mvn clean verify -Pintegration-tests, it will take quite awhile so be patient, but remember that it is not required to build and use the library. It is covered more in the Join Us section of this website. diff --git a/images/favicon.png b/images/favicon.png new file mode 100644 index 00000000..3cf000bd Binary files /dev/null and b/images/favicon.png differ diff --git a/index.html.haml b/index.html.haml new file mode 100644 index 00000000..ec09a454 --- /dev/null +++ b/index.html.haml @@ -0,0 +1,47 @@ +--- +layout: landing +title: Home +--- +.jumbotron + .container + %h1.brand OpenShift Java Client + %p A Java library for interacting with the OpenShift API. It offers most of the features that are currently available in the rhc command line tools (create/rename a domain, create/destroy applications, list all existing applications, available cartridges, embed cartridges, etc.). This library is also used in the Eclipse JBoss Tools Plugin for OpenShift. +.container + .row + .col-md-4 + %h2 Get Started + %p.fixedheight + Instructions on how to get the source code and build the library using Maven, or use the pre-built artifact from the Maven Central Repository. + %p + %a.btn.btn-default{:href=>"getstarted", :role=>"button"} Read More » + .col-md-4 + %h2 Documentation + %p.fixedheight + Learn how to interact with the OpenShift API in your own applications. The code is well documented and the Javadocs are available here.

+ %p + %a.btn.btn-default{ :href=>"documentation", :target=>"_blank", :role=>"button"}Read More » + .col-md-4 + %h2 Sample Code + %p.fixedheight + How about some example code to help you get going using this library? Click the link below and view basic and advanced code samples.

+ %p + %a.btn.btn-default{:href=>"samplecode", :role=>"button"}Read More » + .row + .col-md-4 + %h2 Get Help + %p.fixedheight + Find out where you can read the documentation, ask questions, log bug reports, and who you can contact if all else fails. + %p + %a.btn.btn-default{:href=>"gethelp", :role=>"button"}Read More » + .col-md-4 + %h2 Source Code + %p.fixedheight + View the source code on github, fork it, and send a pull request, after you read the Contribute section of course.

+ %p + %a.btn.btn-default{:target=>"_blank", :href=>"https://github.com/openshift/openshift-java-client", :role=>"button"}View on github » + .col-md-4 + %h2 Join Us + %p.fixedheight + Learn how to setup your favorite IDE, install the Maven dependencies, run the tests, and build the library. Also included are tips on indentation, merging your changes in git, squashing commits, and sending pull requests.

+ %p + %a.btn.btn-default{:href=>"joinus", :role=>"button"}Read More » \ No newline at end of file diff --git a/joinus/index.html.haml b/joinus/index.html.haml new file mode 100644 index 00000000..5543899a --- /dev/null +++ b/joinus/index.html.haml @@ -0,0 +1,192 @@ +--- +layout: default +title: Join Us +page_name: joinus +--- +%h1 Join Us +%h3 Why Should I Help? +%p You're already reading this page so we can assume that you are a.) using this library for something and b.) interested in contributing somehow. Great! +%p Open Source projects like this one can't survive without you, the user. We love working on this project, and absolutely want to provide every update and fix that you, our users, want. But we are a small team and can use all the help we can get. +%p Even if you don't have the time to hack away on this project, there are lots of things you can do to help. Please read through the list in the next section and I am sure you can find something that you have the time to help with. +%h3 Ok, You Convinced Me. How Can I Help? +%p Great, glad you made it to this section. There are lots of ways that you can help: +%ul + %li Spread the word about the OpenShift Java Client library. If you have friends or co-workers who are interested in both Java and OpenShift, and looking for an Open Source project to work on, this could be a great match! + %li Use the library and file Bug Reports on the JIRA Issue Tracker + %li Think up great new ideas for this library, and create a Feature Request on the JIRA Issue Tracker + %li Help keep this website, and the documenation for the OpenShift Java Client up to date by fixing spelling/grammatical errors, documenting methods, or adding code samples. Just for this repository on github and checkout the gh-pages branch. It uses Jekyll and is written in HTML/CSS using Bootstrap. + %li Review the list of Feature Requests and Bug Reports on the JIRA Issue Tracker and see if there is anything that you would like to work on. Make sure that you sign up for an account on the JBoss Community Site so that you can take ownership of issues and comment on them. + +%p If you have any other ideas of how you can contribute feel free to run them by us using the contact information on the Get Help page. + +%h3 Project Best Practices + +%strong Communication +%p Communication is the key to keeping any good project rolling in the right direction. Anything that is being worked on, Bugs, Feature Requests, Documenation efforts, are all tracked in the JIRA Issue Tracker. This makes sure that everyone is on the same page and that there are no duplication of efforts. +%p If you want to work on an existing Bug or Feature request, please check the JIRA issue for it and make sure that no one else has already claimed it. Also comment letting everyone know that you want to work on it and ask that the issue be assigned to you (or assign it to yourself if you have the correct permissions). +%p If you would like to work on an Bug or Enhancement that you have come up with, please log it in the JIRA Issue Tracker and get some feedback first. This make sure that no one else is working on the issue without coordinating on it, and that the issue can be properly tracked and prioritized within the project. +%p If you have any questions at all please don't hesitate to ask them on the JIRA issue, or using any of the methods listed on the Get Help page. We want to make it as easy as possible to help with the project and also keep the project moving in the right direction. + +%strong Javadoc +%p We are strong proponents of well documented code and use Javadoc extensively. The documentation section of this website is built by running the Javadoc tool against this code using the command mvn javadoc:javadoc. Please document any new classes or methods, and make sure to update the comments for any existing code that you update. + +%h3 Getting The Code and git Best Practices +%ol + %li Create an account on github if you don't already have one at github.com. + %li Fork the OpenShift java Client project to your github account. + %li + Clone your newly forked repository into your local workspace + :plain +
+      User$ git clone git@github.com:[your user]/openshift-java-client.git
+      Cloning into 'openshift-java-client'...
+      remote: Reusing existing pack: 4745, done.
+      remote: Total 4745 (delta 0), reused 0 (delta 0)
+      Receiving objects: 100% (4745/4745), 1.92 MiB | 1.52 MiB/s, done.
+      Resolving deltas: 100% (1475/1475), done.
+      Checking connectivity... done
+      
+ + %li + Add a remote ref to upstream for pulling future updates + :plain +
+        git remote add upstream https://github.com/openshift/openshift-java-client.git
+        
+ + %li + As a precaution, disable merge commits to your master branch + :plain +
+        git config branch.master.mergeoptions --ff-only
+        
+ + %li + To pull later updates from the upstream + :plain +
+        git pull --rebase upstream master
+        
+ (--rebase will automatically move your local commits, if you have any, on top of the latest branch you pull from, you can leave it off if you do not). + + Please note that --rebase is very important if you do have commits. What happens is that when git pull can't fast forward, it does a merge commit, and a merge commit puts the sucked in changes ON TOP of yours whereas a rebase puts them BELOW yours. In other words a merge commit makes the history a graph, and we prefer a cleaner, easier to follow linear history (hence the rebasing). Further once you do a merge commit it will be difficult to rebase the history before that commit (say you want to combine two commits to one later) as described in point 13. Luckily the option set in step 5 will prevent this from happening. + + %li + Push the pulled updates to your fork of openshift-java-client on github + :plain +
+        git push
+        
+ + %li Make sure there is a JIRA logged for your Bug Fix or Feature Request that you are working on here. + %li + Create a simple topic branch to isolate that work (just a recommendation) + :plain +
+        git checkout -b my_cool_feature
+        
+ + %li + Make the changes and commit one or more times (Don't forget to push) + :plain +
+        git commit -m 'OSJC-XXXX Making this awesome new feature'
+        git commit -m 'OSJC-YYYY Fixing this really bad bug'
+        git push origin my_cool_feature
+        
+ + %li + Rebase your branch against the latest master (applies your patches on top of master) + :plain +
+        git fetch upstream
+        git rebase -i upstream/master
+        # if you have conflicts fix them and rerun rebase
+        # The -f, forces the push, alters history, see note below
+        git push -f origin my_cool_feature
+        
+ The -i triggers an interactive update which also allows you to combine commits, alter commit messages etc. It's a good idea to make the commit log very nice for external consumption. Note that this alters history, which while great for making a clean patch, is unfriendly to anyone who has forked your branch. Therefore you want to make sure that you either work in a branch that you don't share, or if you do share it, tell them you are about to revise the branch history (and thus, they will then need to rebase on top of your branch once you push it out). + + %li + Get your changes merged into upstream + %ol + %li Make sure your repo is in sync with other unrelated changes in upstream before requesting your changes be merged into upstream by repeating step 11. + %li Send a github pull request, by clicking the pull request link while in your repo's fork + %li As part of the review you may see an automated test run comment on your request. Currently this link can only be viewed by Red Hat employees, but if you request a copy we can send you one. In the future we hope to make this public + %li After review a maintainer will merge your patch, update/resolve issues by request, and reply when complete + %li + Don't forget to switch back to master and pull the updates + :plain +
+            git checkout master
+            git pull --ff-only upstream master
+            
+ + %li + To update the master branch of your github repository (otherwise you will see a message like 'Your branch is ahead of 'origin/master' by XXX commits.' + :plain + if you are use 'git status' on your local master branch. +
git push origin master
+ +%h3 Setting Up Your IDE + +%p If you are using Eclipse or IntelliJ IDEA to work on this project, you will need to create a Maven project, or import an existing Maven project. This will allow the IDE to download the required dependencies, build the project (so that you don't get any nasty errors), and show you the test code coverage if applicable. + +%h3 Writing Tests +%p All tests must pass before a pull request will be merged. We also require that all new code, such as Feature Requests be covered by tests. Tests are written using the junit 4.x framework and are located in the src/test/java directory. We also use the fest assertions (https://code.google.com/p/fest/) to take advantage of more expressive verification-(assertion) statements. We have both unit tests and integration tests. The unit tests do no remoting, they use pre-recorded answers that you may find in src/test/resources/samples/. To fake server responses we use mockito and mock the http-client we're using in the openshift-java-client (HttpClientMockDirector): +:plain +
+  public HttpClientMockDirector mockGetAny(String response) throws
+      SocketTimeoutException, HttpClientException {
+      when(client.get(any(URL.class), anyInt())).thenReturn(response);
+      return this;
+  }
+  
+%p The tests are all in src/test/java. We name unit tests XXXTest.java and integration tests XXXIntegrationTest.java so that one immediately knows if the test is talking to the backend or not. + +%h3 Running the Tests +%p You can either run the tests using your IDE or run the mvn clean verify -Pintegration-tests command in your terminal inside of the project directory that you cloned with git. The integration tests take quite awhile to run so be patient. +%p You can also run mvn clean verify -DshowTestTimes or mvn clean verify -Pintegration-tests -DshowTestTimes to show the name of each test and how many milliseconds it took to run. +%p + If you would like to single out a specific test to run (maybe one you are currently working on writing) you can do the following: + %ul + %li Running a single test class: mvn -Dtest=APIResourceTest test + %li Running a single method in a test class: mvn -Dtest=APIResourceTest#shouldLoadListOfStandaloneCartridges test + %li You can also combine this with the -DshowTestTimes like this: mvn -Dtest=APIResourceTest test -DshowTestTimes + +%p You can read more about running specific tests here. +%h3 Building the Library +%p To build the library, run the mvn clean package command in your terminal inside of the project directory that you cloned with git. This will create a new directory called target that will contain all of the compiled class files along with a JAR file, and a sources.JAR file for use in your projects. +%p You can also run the command mvn clean install which will install the library in your ~/.m2 directory. You can then include the library in your project by adding the correct configuration to your pom.xml such as: +:plain +
+  <dependencies>
+      <dependency>
+          <groupId>com.openshift</groupId>
+          <artifactId>openshift-java-client</artifactId>
+          <version>2.5.1-SNAPSHOT</version>
+      </dependency>
+  </dependencies>
+  
+%p When you are testing locally it is Maven convention to use version-SNAPSHOT for any non-finalized versions. Also remember to increment the minor or major version depending on the scale of the changes you have made to the source code. + +%h3 Updating this website and adding documentation +%p + Just as important as adding new features and fixing bugs is helping others figure out how to use this library in their own projects. That is where this website and the documentation section comes into play. If you notice an error on this website or have some knowledge that would be useful to others? Have some extra time to document a method? + %ul + %li Fork the repository on github + %li Checkout the gh-pages-awestruct branch + %li Read the README.md for that branch + %li Add your fix or new information + %li Commit your change locally + %li Push your change to your repo on github + %li Do a pull request + + Now just sit back, relax, and give yourself a high five while we review your change and merge it. We'll let you know if we have any questions or something in your change needs to be corrected. + +%p We use Awestruct for this website and the documentation. Most of it is static HTML/CSS with Awestruct handling the templates (header, footer, navigation, etc). + +%h3 Thanks +%p +A special thanks to the WildFly team for putting together this page which was the inspiration for the git tips listed here. + diff --git a/js/alignbuttons.js b/js/alignbuttons.js new file mode 100644 index 00000000..93c5b52c --- /dev/null +++ b/js/alignbuttons.js @@ -0,0 +1,21 @@ +function fixheight() { + var maxheight = 0 + $(".fixedheight").each(function(){ + $(this).height('auto'); + }) + $(".fixedheight").each(function(){ + var height = $(this).height(); + if (height > maxheight) { + maxheight = height; + } + }) + $(".fixedheight").each(function(){ + $(this).height(maxheight); + }) +} +$(function(){ + fixheight(); +}); +$(window).resize(function(){ + fixheight(); +}); \ No newline at end of file diff --git a/js/bootstrap.min.js b/js/bootstrap.min.js new file mode 100644 index 00000000..1a6258ef --- /dev/null +++ b/js/bootstrap.min.js @@ -0,0 +1,7 @@ +/*! + * Bootstrap v3.0.3 (http://getbootstrap.com) + * Copyright 2013 Twitter, Inc. + * Licensed under http://www.apache.org/licenses/LICENSE-2.0 + */ + +if("undefined"==typeof jQuery)throw new Error("Bootstrap requires jQuery");+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]}}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one(a.support.transition.end,function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b()})}(jQuery),+function(a){"use strict";var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function c(){f.trigger("closed.bs.alert").remove()}var d=a(this),e=d.attr("data-target");e||(e=d.attr("href"),e=e&&e.replace(/.*(?=#[^\s]*$)/,""));var f=a(e);b&&b.preventDefault(),f.length||(f=d.hasClass("alert")?d:d.parent()),f.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one(a.support.transition.end,c).emulateTransitionEnd(150):c())};var d=a.fn.alert;a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("bs.alert");e||d.data("bs.alert",e=new c(this)),"string"==typeof b&&e[b].call(d)})},a.fn.alert.Constructor=c,a.fn.alert.noConflict=function(){return a.fn.alert=d,this},a(document).on("click.bs.alert.data-api",b,c.prototype.close)}(jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d)};b.DEFAULTS={loadingText:"loading..."},b.prototype.setState=function(a){var b="disabled",c=this.$element,d=c.is("input")?"val":"html",e=c.data();a+="Text",e.resetText||c.data("resetText",c[d]()),c[d](e[a]||this.options[a]),setTimeout(function(){"loadingText"==a?c.addClass(b).attr(b,b):c.removeClass(b).removeAttr(b)},0)},b.prototype.toggle=function(){var a=this.$element.closest('[data-toggle="buttons"]'),b=!0;if(a.length){var c=this.$element.find("input");"radio"===c.prop("type")&&(c.prop("checked")&&this.$element.hasClass("active")?b=!1:a.find(".active").removeClass("active")),b&&c.prop("checked",!this.$element.hasClass("active")).trigger("change")}b&&this.$element.toggleClass("active")};var c=a.fn.button;a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof c&&c;e||d.data("bs.button",e=new b(this,f)),"toggle"==c?e.toggle():c&&e.setState(c)})},a.fn.button.Constructor=b,a.fn.button.noConflict=function(){return a.fn.button=c,this},a(document).on("click.bs.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle"),b.preventDefault()})}(jQuery),+function(a){"use strict";var b=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=this.sliding=this.interval=this.$active=this.$items=null,"hover"==this.options.pause&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.DEFAULTS={interval:5e3,pause:"hover",wrap:!0},b.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},b.prototype.getActiveIndex=function(){return this.$active=this.$element.find(".item.active"),this.$items=this.$active.parent().children(),this.$items.index(this.$active)},b.prototype.to=function(b){var c=this,d=this.getActiveIndex();return b>this.$items.length-1||0>b?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){c.to(b)}):d==b?this.pause().cycle():this.slide(b>d?"next":"prev",a(this.$items[b]))},b.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition.end&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},b.prototype.next=function(){return this.sliding?void 0:this.slide("next")},b.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},b.prototype.slide=function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g="next"==b?"left":"right",h="next"==b?"first":"last",i=this;if(!e.length){if(!this.options.wrap)return;e=this.$element.find(".item")[h]()}this.sliding=!0,f&&this.pause();var j=a.Event("slide.bs.carousel",{relatedTarget:e[0],direction:g});if(!e.hasClass("active")){if(this.$indicators.length&&(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid.bs.carousel",function(){var b=a(i.$indicators.children()[i.getActiveIndex()]);b&&b.addClass("active")})),a.support.transition&&this.$element.hasClass("slide")){if(this.$element.trigger(j),j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),d.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid.bs.carousel")},0)}).emulateTransitionEnd(600)}else{if(this.$element.trigger(j),j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid.bs.carousel")}return f&&this.cycle(),this}};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c),g="string"==typeof c?c:f.slide;e||d.data("bs.carousel",e=new b(this,f)),"number"==typeof c?e.to(c):g?e[g]():f.interval&&e.pause().cycle()})},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",function(b){var c,d=a(this),e=a(d.attr("data-target")||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),d.data()),g=d.attr("data-slide-to");g&&(f.interval=!1),e.carousel(f),(g=d.attr("data-slide-to"))&&e.data("bs.carousel").to(g),b.preventDefault()}),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var b=a(this);b.carousel(b.data())})})}(jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d),this.transitioning=null,this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.DEFAULTS={toggle:!0},b.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},b.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b=a.Event("show.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.$parent&&this.$parent.find("> .panel > .in");if(c&&c.length){var d=c.data("bs.collapse");if(d&&d.transitioning)return;c.collapse("hide"),d||c.data("bs.collapse",null)}var e=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[e](0),this.transitioning=1;var f=function(){this.$element.removeClass("collapsing").addClass("in")[e]("auto"),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return f.call(this);var g=a.camelCase(["scroll",e].join("-"));this.$element.one(a.support.transition.end,a.proxy(f,this)).emulateTransitionEnd(350)[e](this.$element[0][g])}}},b.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse").removeClass("in"),this.transitioning=1;var d=function(){this.transitioning=0,this.$element.trigger("hidden.bs.collapse").removeClass("collapsing").addClass("collapse")};return a.support.transition?(this.$element[c](0).one(a.support.transition.end,a.proxy(d,this)).emulateTransitionEnd(350),void 0):d.call(this)}}},b.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("bs.collapse"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c);e||d.data("bs.collapse",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.bs.collapse.data-api","[data-toggle=collapse]",function(b){var c,d=a(this),e=d.attr("data-target")||b.preventDefault()||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,""),f=a(e),g=f.data("bs.collapse"),h=g?"toggle":d.data(),i=d.attr("data-parent"),j=i&&a(i);g&&g.transitioning||(j&&j.find('[data-toggle=collapse][data-parent="'+i+'"]').not(d).addClass("collapsed"),d[f.hasClass("in")?"addClass":"removeClass"]("collapsed")),f.collapse(h)})}(jQuery),+function(a){"use strict";function b(){a(d).remove(),a(e).each(function(b){var d=c(a(this));d.hasClass("open")&&(d.trigger(b=a.Event("hide.bs.dropdown")),b.isDefaultPrevented()||d.removeClass("open").trigger("hidden.bs.dropdown"))})}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}var d=".dropdown-backdrop",e="[data-toggle=dropdown]",f=function(b){a(b).on("click.bs.dropdown",this.toggle)};f.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){if("ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(''}),b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),b.prototype.constructor=b,b.prototype.getDefaults=function(){return b.DEFAULTS},b.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},b.prototype.hasContent=function(){return this.getTitle()||this.getContent()},b.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},b.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")},b.prototype.tip=function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip};var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof c&&c;e||d.data("bs.popover",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(jQuery),+function(a){"use strict";function b(c,d){var e,f=a.proxy(this.process,this);this.$element=a(c).is("body")?a(window):a(c),this.$body=a("body"),this.$scrollElement=this.$element.on("scroll.bs.scroll-spy.data-api",f),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||(e=a(c).attr("href"))&&e.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.offsets=a([]),this.targets=a([]),this.activeTarget=null,this.refresh(),this.process()}b.DEFAULTS={offset:10},b.prototype.refresh=function(){var b=this.$element[0]==window?"offset":"position";this.offsets=a([]),this.targets=a([]);var c=this;this.$body.find(this.selector).map(function(){var d=a(this),e=d.data("target")||d.attr("href"),f=/^#\w/.test(e)&&a(e);return f&&f.length&&[[f[b]().top+(!a.isWindow(c.$scrollElement.get(0))&&c.$scrollElement.scrollTop()),e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){c.offsets.push(this[0]),c.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,d=c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(b>=d)return g!=(a=f.last()[0])&&this.activate(a);for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(!e[a+1]||b<=e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,a(this.selector).parents(".active").removeClass("active");var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate.bs.scrollspy")};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(jQuery),+function(a){"use strict";var b=function(b){this.element=a(b)};b.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a")[0],f=a.Event("show.bs.tab",{relatedTarget:e});if(b.trigger(f),!f.isDefaultPrevented()){var g=a(d);this.activate(b.parent("li"),c),this.activate(g,g.parent(),function(){b.trigger({type:"shown.bs.tab",relatedTarget:e})})}}},b.prototype.activate=function(b,c,d){function e(){f.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),g?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var f=c.find("> .active"),g=d&&a.support.transition&&f.hasClass("fade");g?f.one(a.support.transition.end,e).emulateTransitionEnd(150):e(),f.removeClass("in")};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new b(this)),"string"==typeof c&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(jQuery),+function(a){"use strict";var b=function(c,d){this.options=a.extend({},b.DEFAULTS,d),this.$window=a(window).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(c),this.affixed=this.unpin=null,this.checkPosition()};b.RESET="affix affix-top affix-bottom",b.DEFAULTS={offset:0},b.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},b.prototype.checkPosition=function(){if(this.$element.is(":visible")){var c=a(document).height(),d=this.$window.scrollTop(),e=this.$element.offset(),f=this.options.offset,g=f.top,h=f.bottom;"object"!=typeof f&&(h=g=f),"function"==typeof g&&(g=f.top()),"function"==typeof h&&(h=f.bottom());var i=null!=this.unpin&&d+this.unpin<=e.top?!1:null!=h&&e.top+this.$element.height()>=c-h?"bottom":null!=g&&g>=d?"top":!1;this.affixed!==i&&(this.unpin&&this.$element.css("top",""),this.affixed=i,this.unpin="bottom"==i?e.top-d:null,this.$element.removeClass(b.RESET).addClass("affix"+(i?"-"+i:"")),"bottom"==i&&this.$element.offset({top:document.body.offsetHeight-h-this.$element.height()}))}};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof c&&c;e||d.data("bs.affix",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(jQuery); \ No newline at end of file diff --git a/js/html5shiv.js b/js/html5shiv.js new file mode 100644 index 00000000..448cebd7 --- /dev/null +++ b/js/html5shiv.js @@ -0,0 +1,8 @@ +/* + HTML5 Shiv v3.7.0 | @afarkas @jdalton @jon_neal @rem | MIT/GPL2 Licensed +*/ +(function(l,f){function m(){var a=e.elements;return"string"==typeof a?a.split(" "):a}function i(a){var b=n[a[o]];b||(b={},h++,a[o]=h,n[h]=b);return b}function p(a,b,c){b||(b=f);if(g)return b.createElement(a);c||(c=i(b));b=c.cache[a]?c.cache[a].cloneNode():r.test(a)?(c.cache[a]=c.createElem(a)).cloneNode():c.createElem(a);return b.canHaveChildren&&!s.test(a)?c.frag.appendChild(b):b}function t(a,b){if(!b.cache)b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag(); +a.createElement=function(c){return!e.shivMethods?b.createElem(c):p(c,a,b)};a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+m().join().replace(/[\w\-]+/g,function(a){b.createElem(a);b.frag.createElement(a);return'c("'+a+'")'})+");return n}")(e,b.frag)}function q(a){a||(a=f);var b=i(a);if(e.shivCSS&&!j&&!b.hasCSS){var c,d=a;c=d.createElement("p");d=d.getElementsByTagName("head")[0]||d.documentElement;c.innerHTML="x"; +c=d.insertBefore(c.lastChild,d.firstChild);b.hasCSS=!!c}g||t(a,b);return a}var k=l.html5||{},s=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,r=/^(?:a|b|code|div|fieldset|h1|h2|h3|h4|h5|h6|i|label|li|ol|p|q|span|strong|style|table|tbody|td|th|tr|ul)$/i,j,o="_html5shiv",h=0,n={},g;(function(){try{var a=f.createElement("a");a.innerHTML="";j="hidden"in a;var b;if(!(b=1==a.childNodes.length)){f.createElement("a");var c=f.createDocumentFragment();b="undefined"==typeof c.cloneNode|| +"undefined"==typeof c.createDocumentFragment||"undefined"==typeof c.createElement}g=b}catch(d){g=j=!0}})();var e={elements:k.elements||"abbr article aside audio bdi canvas data datalist details dialog figcaption figure footer header hgroup main mark meter nav output progress section summary template time video",version:"3.7.0",shivCSS:!1!==k.shivCSS,supportsUnknownElements:g,shivMethods:!1!==k.shivMethods,type:"default",shivDocument:q,createElement:p,createDocumentFragment:function(a,b){a||(a=f); +if(g)return a.createDocumentFragment();for(var b=b||i(a),c=b.frag.cloneNode(),d=0,e=m(),h=e.length;d)[^>]*|#([\w-]*))$/,k=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,E=/^[\],:{}\s]*$/,S=/(?:^|:|,)(?:\s*\[)+/g,A=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,j=/"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g,D=/^-ms-/,L=/-([\da-z])/gi,H=function(e,t){return t.toUpperCase()},q=function(e){(a.addEventListener||"load"===e.type||"complete"===a.readyState)&&(_(),x.ready())},_=function(){a.addEventListener?(a.removeEventListener("DOMContentLoaded",q,!1),e.removeEventListener("load",q,!1)):(a.detachEvent("onreadystatechange",q),e.detachEvent("onload",q))};x.fn=x.prototype={jquery:f,constructor:x,init:function(e,n,r){var i,o;if(!e)return this;if("string"==typeof e){if(i="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:N.exec(e),!i||!i[1]&&n)return!n||n.jquery?(n||r).find(e):this.constructor(n).find(e);if(i[1]){if(n=n instanceof x?n[0]:n,x.merge(this,x.parseHTML(i[1],n&&n.nodeType?n.ownerDocument||n:a,!0)),k.test(i[1])&&x.isPlainObject(n))for(i in n)x.isFunction(this[i])?this[i](n[i]):this.attr(i,n[i]);return this}if(o=a.getElementById(i[2]),o&&o.parentNode){if(o.id!==i[2])return r.find(e);this.length=1,this[0]=o}return this.context=a,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):x.isFunction(e)?r.ready(e):(e.selector!==t&&(this.selector=e.selector,this.context=e.context),x.makeArray(e,this))},selector:"",length:0,toArray:function(){return g.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=x.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return x.each(this,e,t)},ready:function(e){return x.ready.promise().done(e),this},slice:function(){return this.pushStack(g.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(x.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:h,sort:[].sort,splice:[].splice},x.fn.init.prototype=x.fn,x.extend=x.fn.extend=function(){var e,n,r,i,o,a,s=arguments[0]||{},l=1,u=arguments.length,c=!1;for("boolean"==typeof s&&(c=s,s=arguments[1]||{},l=2),"object"==typeof s||x.isFunction(s)||(s={}),u===l&&(s=this,--l);u>l;l++)if(null!=(o=arguments[l]))for(i in o)e=s[i],r=o[i],s!==r&&(c&&r&&(x.isPlainObject(r)||(n=x.isArray(r)))?(n?(n=!1,a=e&&x.isArray(e)?e:[]):a=e&&x.isPlainObject(e)?e:{},s[i]=x.extend(c,a,r)):r!==t&&(s[i]=r));return s},x.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),noConflict:function(t){return e.$===x&&(e.$=u),t&&e.jQuery===x&&(e.jQuery=l),x},isReady:!1,readyWait:1,holdReady:function(e){e?x.readyWait++:x.ready(!0)},ready:function(e){if(e===!0?!--x.readyWait:!x.isReady){if(!a.body)return setTimeout(x.ready);x.isReady=!0,e!==!0&&--x.readyWait>0||(n.resolveWith(a,[x]),x.fn.trigger&&x(a).trigger("ready").off("ready"))}},isFunction:function(e){return"function"===x.type(e)},isArray:Array.isArray||function(e){return"array"===x.type(e)},isWindow:function(e){return null!=e&&e==e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?c[y.call(e)]||"object":typeof e},isPlainObject:function(e){var n;if(!e||"object"!==x.type(e)||e.nodeType||x.isWindow(e))return!1;try{if(e.constructor&&!v.call(e,"constructor")&&!v.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(r){return!1}if(x.support.ownLast)for(n in e)return v.call(e,n);for(n in e);return n===t||v.call(e,n)},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||a;var r=k.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=x.buildFragment([e],t,i),i&&x(i).remove(),x.merge([],r.childNodes))},parseJSON:function(n){return e.JSON&&e.JSON.parse?e.JSON.parse(n):null===n?n:"string"==typeof n&&(n=x.trim(n),n&&E.test(n.replace(A,"@").replace(j,"]").replace(S,"")))?Function("return "+n)():(x.error("Invalid JSON: "+n),t)},parseXML:function(n){var r,i;if(!n||"string"!=typeof n)return null;try{e.DOMParser?(i=new DOMParser,r=i.parseFromString(n,"text/xml")):(r=new ActiveXObject("Microsoft.XMLDOM"),r.async="false",r.loadXML(n))}catch(o){r=t}return r&&r.documentElement&&!r.getElementsByTagName("parsererror").length||x.error("Invalid XML: "+n),r},noop:function(){},globalEval:function(t){t&&x.trim(t)&&(e.execScript||function(t){e.eval.call(e,t)})(t)},camelCase:function(e){return e.replace(D,"ms-").replace(L,H)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,a=M(e);if(n){if(a){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(a){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:b&&!b.call("\ufeff\u00a0")?function(e){return null==e?"":b.call(e)}:function(e){return null==e?"":(e+"").replace(C,"")},makeArray:function(e,t){var n=t||[];return null!=e&&(M(Object(e))?x.merge(n,"string"==typeof e?[e]:e):h.call(n,e)),n},inArray:function(e,t,n){var r;if(t){if(m)return m.call(t,e,n);for(r=t.length,n=n?0>n?Math.max(0,r+n):n:0;r>n;n++)if(n in t&&t[n]===e)return n}return-1},merge:function(e,n){var r=n.length,i=e.length,o=0;if("number"==typeof r)for(;r>o;o++)e[i++]=n[o];else while(n[o]!==t)e[i++]=n[o++];return e.length=i,e},grep:function(e,t,n){var r,i=[],o=0,a=e.length;for(n=!!n;a>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,a=M(e),s=[];if(a)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(s[s.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(s[s.length]=r);return d.apply([],s)},guid:1,proxy:function(e,n){var r,i,o;return"string"==typeof n&&(o=e[n],n=e,e=o),x.isFunction(e)?(r=g.call(arguments,2),i=function(){return e.apply(n||this,r.concat(g.call(arguments)))},i.guid=e.guid=e.guid||x.guid++,i):t},access:function(e,n,r,i,o,a,s){var l=0,u=e.length,c=null==r;if("object"===x.type(r)){o=!0;for(l in r)x.access(e,n,l,r[l],!0,a,s)}else if(i!==t&&(o=!0,x.isFunction(i)||(s=!0),c&&(s?(n.call(e,i),n=null):(c=n,n=function(e,t,n){return c.call(x(e),n)})),n))for(;u>l;l++)n(e[l],r,s?i:i.call(e[l],l,n(e[l],r)));return o?e:c?n.call(e):u?n(e[0],r):a},now:function(){return(new Date).getTime()},swap:function(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=a[o];return i}}),x.ready.promise=function(t){if(!n)if(n=x.Deferred(),"complete"===a.readyState)setTimeout(x.ready);else if(a.addEventListener)a.addEventListener("DOMContentLoaded",q,!1),e.addEventListener("load",q,!1);else{a.attachEvent("onreadystatechange",q),e.attachEvent("onload",q);var r=!1;try{r=null==e.frameElement&&a.documentElement}catch(i){}r&&r.doScroll&&function o(){if(!x.isReady){try{r.doScroll("left")}catch(e){return setTimeout(o,50)}_(),x.ready()}}()}return n.promise(t)},x.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){c["[object "+t+"]"]=t.toLowerCase()});function M(e){var t=e.length,n=x.type(e);return x.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}r=x(a),function(e,t){var n,r,i,o,a,s,l,u,c,p,f,d,h,g,m,y,v,b="sizzle"+-new Date,w=e.document,T=0,C=0,N=st(),k=st(),E=st(),S=!1,A=function(e,t){return e===t?(S=!0,0):0},j=typeof t,D=1<<31,L={}.hasOwnProperty,H=[],q=H.pop,_=H.push,M=H.push,O=H.slice,F=H.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},B="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",P="[\\x20\\t\\r\\n\\f]",R="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",W=R.replace("w","w#"),$="\\["+P+"*("+R+")"+P+"*(?:([*^$|!~]?=)"+P+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+W+")|)|)"+P+"*\\]",I=":("+R+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+$.replace(3,8)+")*)|.*)\\)|)",z=RegExp("^"+P+"+|((?:^|[^\\\\])(?:\\\\.)*)"+P+"+$","g"),X=RegExp("^"+P+"*,"+P+"*"),U=RegExp("^"+P+"*([>+~]|"+P+")"+P+"*"),V=RegExp(P+"*[+~]"),Y=RegExp("="+P+"*([^\\]'\"]*)"+P+"*\\]","g"),J=RegExp(I),G=RegExp("^"+W+"$"),Q={ID:RegExp("^#("+R+")"),CLASS:RegExp("^\\.("+R+")"),TAG:RegExp("^("+R.replace("w","w*")+")"),ATTR:RegExp("^"+$),PSEUDO:RegExp("^"+I),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+P+"*(even|odd|(([+-]|)(\\d*)n|)"+P+"*(?:([+-]|)"+P+"*(\\d+)|))"+P+"*\\)|)","i"),bool:RegExp("^(?:"+B+")$","i"),needsContext:RegExp("^"+P+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+P+"*((?:-\\d)?\\d*)"+P+"*\\)|)(?=[^-]|$)","i")},K=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,et=/^(?:input|select|textarea|button)$/i,tt=/^h\d$/i,nt=/'|\\/g,rt=RegExp("\\\\([\\da-f]{1,6}"+P+"?|("+P+")|.)","ig"),it=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:0>r?String.fromCharCode(r+65536):String.fromCharCode(55296|r>>10,56320|1023&r)};try{M.apply(H=O.call(w.childNodes),w.childNodes),H[w.childNodes.length].nodeType}catch(ot){M={apply:H.length?function(e,t){_.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function at(e,t,n,i){var o,a,s,l,u,c,d,m,y,x;if((t?t.ownerDocument||t:w)!==f&&p(t),t=t||f,n=n||[],!e||"string"!=typeof e)return n;if(1!==(l=t.nodeType)&&9!==l)return[];if(h&&!i){if(o=Z.exec(e))if(s=o[1]){if(9===l){if(a=t.getElementById(s),!a||!a.parentNode)return n;if(a.id===s)return n.push(a),n}else if(t.ownerDocument&&(a=t.ownerDocument.getElementById(s))&&v(t,a)&&a.id===s)return n.push(a),n}else{if(o[2])return M.apply(n,t.getElementsByTagName(e)),n;if((s=o[3])&&r.getElementsByClassName&&t.getElementsByClassName)return M.apply(n,t.getElementsByClassName(s)),n}if(r.qsa&&(!g||!g.test(e))){if(m=d=b,y=t,x=9===l&&e,1===l&&"object"!==t.nodeName.toLowerCase()){c=mt(e),(d=t.getAttribute("id"))?m=d.replace(nt,"\\$&"):t.setAttribute("id",m),m="[id='"+m+"'] ",u=c.length;while(u--)c[u]=m+yt(c[u]);y=V.test(e)&&t.parentNode||t,x=c.join(",")}if(x)try{return M.apply(n,y.querySelectorAll(x)),n}catch(T){}finally{d||t.removeAttribute("id")}}}return kt(e.replace(z,"$1"),t,n,i)}function st(){var e=[];function t(n,r){return e.push(n+=" ")>o.cacheLength&&delete t[e.shift()],t[n]=r}return t}function lt(e){return e[b]=!0,e}function ut(e){var t=f.createElement("div");try{return!!e(t)}catch(n){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function ct(e,t){var n=e.split("|"),r=e.length;while(r--)o.attrHandle[n[r]]=t}function pt(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||D)-(~e.sourceIndex||D);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function ft(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function dt(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function ht(e){return lt(function(t){return t=+t,lt(function(n,r){var i,o=e([],n.length,t),a=o.length;while(a--)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))})})}s=at.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},r=at.support={},p=at.setDocument=function(e){var n=e?e.ownerDocument||e:w,i=n.defaultView;return n!==f&&9===n.nodeType&&n.documentElement?(f=n,d=n.documentElement,h=!s(n),i&&i.attachEvent&&i!==i.top&&i.attachEvent("onbeforeunload",function(){p()}),r.attributes=ut(function(e){return e.className="i",!e.getAttribute("className")}),r.getElementsByTagName=ut(function(e){return e.appendChild(n.createComment("")),!e.getElementsByTagName("*").length}),r.getElementsByClassName=ut(function(e){return e.innerHTML="
",e.firstChild.className="i",2===e.getElementsByClassName("i").length}),r.getById=ut(function(e){return d.appendChild(e).id=b,!n.getElementsByName||!n.getElementsByName(b).length}),r.getById?(o.find.ID=function(e,t){if(typeof t.getElementById!==j&&h){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},o.filter.ID=function(e){var t=e.replace(rt,it);return function(e){return e.getAttribute("id")===t}}):(delete o.find.ID,o.filter.ID=function(e){var t=e.replace(rt,it);return function(e){var n=typeof e.getAttributeNode!==j&&e.getAttributeNode("id");return n&&n.value===t}}),o.find.TAG=r.getElementsByTagName?function(e,n){return typeof n.getElementsByTagName!==j?n.getElementsByTagName(e):t}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},o.find.CLASS=r.getElementsByClassName&&function(e,n){return typeof n.getElementsByClassName!==j&&h?n.getElementsByClassName(e):t},m=[],g=[],(r.qsa=K.test(n.querySelectorAll))&&(ut(function(e){e.innerHTML="",e.querySelectorAll("[selected]").length||g.push("\\["+P+"*(?:value|"+B+")"),e.querySelectorAll(":checked").length||g.push(":checked")}),ut(function(e){var t=n.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("t",""),e.querySelectorAll("[t^='']").length&&g.push("[*^$]="+P+"*(?:''|\"\")"),e.querySelectorAll(":enabled").length||g.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),g.push(",.*:")})),(r.matchesSelector=K.test(y=d.webkitMatchesSelector||d.mozMatchesSelector||d.oMatchesSelector||d.msMatchesSelector))&&ut(function(e){r.disconnectedMatch=y.call(e,"div"),y.call(e,"[s!='']:x"),m.push("!=",I)}),g=g.length&&RegExp(g.join("|")),m=m.length&&RegExp(m.join("|")),v=K.test(d.contains)||d.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},A=d.compareDocumentPosition?function(e,t){if(e===t)return S=!0,0;var i=t.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(t);return i?1&i||!r.sortDetached&&t.compareDocumentPosition(e)===i?e===n||v(w,e)?-1:t===n||v(w,t)?1:c?F.call(c,e)-F.call(c,t):0:4&i?-1:1:e.compareDocumentPosition?-1:1}:function(e,t){var r,i=0,o=e.parentNode,a=t.parentNode,s=[e],l=[t];if(e===t)return S=!0,0;if(!o||!a)return e===n?-1:t===n?1:o?-1:a?1:c?F.call(c,e)-F.call(c,t):0;if(o===a)return pt(e,t);r=e;while(r=r.parentNode)s.unshift(r);r=t;while(r=r.parentNode)l.unshift(r);while(s[i]===l[i])i++;return i?pt(s[i],l[i]):s[i]===w?-1:l[i]===w?1:0},n):f},at.matches=function(e,t){return at(e,null,null,t)},at.matchesSelector=function(e,t){if((e.ownerDocument||e)!==f&&p(e),t=t.replace(Y,"='$1']"),!(!r.matchesSelector||!h||m&&m.test(t)||g&&g.test(t)))try{var n=y.call(e,t);if(n||r.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(i){}return at(t,f,null,[e]).length>0},at.contains=function(e,t){return(e.ownerDocument||e)!==f&&p(e),v(e,t)},at.attr=function(e,n){(e.ownerDocument||e)!==f&&p(e);var i=o.attrHandle[n.toLowerCase()],a=i&&L.call(o.attrHandle,n.toLowerCase())?i(e,n,!h):t;return a===t?r.attributes||!h?e.getAttribute(n):(a=e.getAttributeNode(n))&&a.specified?a.value:null:a},at.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},at.uniqueSort=function(e){var t,n=[],i=0,o=0;if(S=!r.detectDuplicates,c=!r.sortStable&&e.slice(0),e.sort(A),S){while(t=e[o++])t===e[o]&&(i=n.push(o));while(i--)e.splice(n[i],1)}return e},a=at.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=a(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=a(t);return n},o=at.selectors={cacheLength:50,createPseudo:lt,match:Q,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(rt,it),e[3]=(e[4]||e[5]||"").replace(rt,it),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||at.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&at.error(e[0]),e},PSEUDO:function(e){var n,r=!e[5]&&e[2];return Q.CHILD.test(e[0])?null:(e[3]&&e[4]!==t?e[2]=e[4]:r&&J.test(r)&&(n=mt(r,!0))&&(n=r.indexOf(")",r.length-n)-r.length)&&(e[0]=e[0].slice(0,n),e[2]=r.slice(0,n)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(rt,it).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=N[e+" "];return t||(t=RegExp("(^|"+P+")"+e+"("+P+"|$)"))&&N(e,function(e){return t.test("string"==typeof e.className&&e.className||typeof e.getAttribute!==j&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=at.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),s="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,l){var u,c,p,f,d,h,g=o!==a?"nextSibling":"previousSibling",m=t.parentNode,y=s&&t.nodeName.toLowerCase(),v=!l&&!s;if(m){if(o){while(g){p=t;while(p=p[g])if(s?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;h=g="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?m.firstChild:m.lastChild],a&&v){c=m[b]||(m[b]={}),u=c[e]||[],d=u[0]===T&&u[1],f=u[0]===T&&u[2],p=d&&m.childNodes[d];while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if(1===p.nodeType&&++f&&p===t){c[e]=[T,d,f];break}}else if(v&&(u=(t[b]||(t[b]={}))[e])&&u[0]===T)f=u[1];else while(p=++d&&p&&p[g]||(f=d=0)||h.pop())if((s?p.nodeName.toLowerCase()===y:1===p.nodeType)&&++f&&(v&&((p[b]||(p[b]={}))[e]=[T,f]),p===t))break;return f-=i,f===r||0===f%r&&f/r>=0}}},PSEUDO:function(e,t){var n,r=o.pseudos[e]||o.setFilters[e.toLowerCase()]||at.error("unsupported pseudo: "+e);return r[b]?r(t):r.length>1?(n=[e,e,"",t],o.setFilters.hasOwnProperty(e.toLowerCase())?lt(function(e,n){var i,o=r(e,t),a=o.length;while(a--)i=F.call(e,o[a]),e[i]=!(n[i]=o[a])}):function(e){return r(e,0,n)}):r}},pseudos:{not:lt(function(e){var t=[],n=[],r=l(e.replace(z,"$1"));return r[b]?lt(function(e,t,n,i){var o,a=r(e,null,i,[]),s=e.length;while(s--)(o=a[s])&&(e[s]=!(t[s]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:lt(function(e){return function(t){return at(e,t).length>0}}),contains:lt(function(e){return function(t){return(t.textContent||t.innerText||a(t)).indexOf(e)>-1}}),lang:lt(function(e){return G.test(e||"")||at.error("unsupported lang: "+e),e=e.replace(rt,it).toLowerCase(),function(t){var n;do if(n=h?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===d},focus:function(e){return e===f.activeElement&&(!f.hasFocus||f.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!o.pseudos.empty(e)},header:function(e){return tt.test(e.nodeName)},input:function(e){return et.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:ht(function(){return[0]}),last:ht(function(e,t){return[t-1]}),eq:ht(function(e,t,n){return[0>n?n+t:n]}),even:ht(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:ht(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:ht(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:ht(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}},o.pseudos.nth=o.pseudos.eq;for(n in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})o.pseudos[n]=ft(n);for(n in{submit:!0,reset:!0})o.pseudos[n]=dt(n);function gt(){}gt.prototype=o.filters=o.pseudos,o.setFilters=new gt;function mt(e,t){var n,r,i,a,s,l,u,c=k[e+" "];if(c)return t?0:c.slice(0);s=e,l=[],u=o.preFilter;while(s){(!n||(r=X.exec(s)))&&(r&&(s=s.slice(r[0].length)||s),l.push(i=[])),n=!1,(r=U.exec(s))&&(n=r.shift(),i.push({value:n,type:r[0].replace(z," ")}),s=s.slice(n.length));for(a in o.filter)!(r=Q[a].exec(s))||u[a]&&!(r=u[a](r))||(n=r.shift(),i.push({value:n,type:a,matches:r}),s=s.slice(n.length));if(!n)break}return t?s.length:s?at.error(e):k(e,l).slice(0)}function yt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function vt(e,t,n){var r=t.dir,o=n&&"parentNode"===r,a=C++;return t.first?function(t,n,i){while(t=t[r])if(1===t.nodeType||o)return e(t,n,i)}:function(t,n,s){var l,u,c,p=T+" "+a;if(s){while(t=t[r])if((1===t.nodeType||o)&&e(t,n,s))return!0}else while(t=t[r])if(1===t.nodeType||o)if(c=t[b]||(t[b]={}),(u=c[r])&&u[0]===p){if((l=u[1])===!0||l===i)return l===!0}else if(u=c[r]=[p],u[1]=e(t,n,s)||i,u[1]===!0)return!0}}function bt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function xt(e,t,n,r,i){var o,a=[],s=0,l=e.length,u=null!=t;for(;l>s;s++)(o=e[s])&&(!n||n(o,r,i))&&(a.push(o),u&&t.push(s));return a}function wt(e,t,n,r,i,o){return r&&!r[b]&&(r=wt(r)),i&&!i[b]&&(i=wt(i,o)),lt(function(o,a,s,l){var u,c,p,f=[],d=[],h=a.length,g=o||Nt(t||"*",s.nodeType?[s]:s,[]),m=!e||!o&&t?g:xt(g,f,e,s,l),y=n?i||(o?e:h||r)?[]:a:m;if(n&&n(m,y,s,l),r){u=xt(y,d),r(u,[],s,l),c=u.length;while(c--)(p=u[c])&&(y[d[c]]=!(m[d[c]]=p))}if(o){if(i||e){if(i){u=[],c=y.length;while(c--)(p=y[c])&&u.push(m[c]=p);i(null,y=[],u,l)}c=y.length;while(c--)(p=y[c])&&(u=i?F.call(o,p):f[c])>-1&&(o[u]=!(a[u]=p))}}else y=xt(y===a?y.splice(h,y.length):y),i?i(null,a,y,l):M.apply(a,y)})}function Tt(e){var t,n,r,i=e.length,a=o.relative[e[0].type],s=a||o.relative[" "],l=a?1:0,c=vt(function(e){return e===t},s,!0),p=vt(function(e){return F.call(t,e)>-1},s,!0),f=[function(e,n,r){return!a&&(r||n!==u)||((t=n).nodeType?c(e,n,r):p(e,n,r))}];for(;i>l;l++)if(n=o.relative[e[l].type])f=[vt(bt(f),n)];else{if(n=o.filter[e[l].type].apply(null,e[l].matches),n[b]){for(r=++l;i>r;r++)if(o.relative[e[r].type])break;return wt(l>1&&bt(f),l>1&&yt(e.slice(0,l-1).concat({value:" "===e[l-2].type?"*":""})).replace(z,"$1"),n,r>l&&Tt(e.slice(l,r)),i>r&&Tt(e=e.slice(r)),i>r&&yt(e))}f.push(n)}return bt(f)}function Ct(e,t){var n=0,r=t.length>0,a=e.length>0,s=function(s,l,c,p,d){var h,g,m,y=[],v=0,b="0",x=s&&[],w=null!=d,C=u,N=s||a&&o.find.TAG("*",d&&l.parentNode||l),k=T+=null==C?1:Math.random()||.1;for(w&&(u=l!==f&&l,i=n);null!=(h=N[b]);b++){if(a&&h){g=0;while(m=e[g++])if(m(h,l,c)){p.push(h);break}w&&(T=k,i=++n)}r&&((h=!m&&h)&&v--,s&&x.push(h))}if(v+=b,r&&b!==v){g=0;while(m=t[g++])m(x,y,l,c);if(s){if(v>0)while(b--)x[b]||y[b]||(y[b]=q.call(p));y=xt(y)}M.apply(p,y),w&&!s&&y.length>0&&v+t.length>1&&at.uniqueSort(p)}return w&&(T=k,u=C),x};return r?lt(s):s}l=at.compile=function(e,t){var n,r=[],i=[],o=E[e+" "];if(!o){t||(t=mt(e)),n=t.length;while(n--)o=Tt(t[n]),o[b]?r.push(o):i.push(o);o=E(e,Ct(i,r))}return o};function Nt(e,t,n){var r=0,i=t.length;for(;i>r;r++)at(e,t[r],n);return n}function kt(e,t,n,i){var a,s,u,c,p,f=mt(e);if(!i&&1===f.length){if(s=f[0]=f[0].slice(0),s.length>2&&"ID"===(u=s[0]).type&&r.getById&&9===t.nodeType&&h&&o.relative[s[1].type]){if(t=(o.find.ID(u.matches[0].replace(rt,it),t)||[])[0],!t)return n;e=e.slice(s.shift().value.length)}a=Q.needsContext.test(e)?0:s.length;while(a--){if(u=s[a],o.relative[c=u.type])break;if((p=o.find[c])&&(i=p(u.matches[0].replace(rt,it),V.test(s[0].type)&&t.parentNode||t))){if(s.splice(a,1),e=i.length&&yt(s),!e)return M.apply(n,i),n;break}}}return l(e,f)(i,t,!h,n,V.test(e)),n}r.sortStable=b.split("").sort(A).join("")===b,r.detectDuplicates=S,p(),r.sortDetached=ut(function(e){return 1&e.compareDocumentPosition(f.createElement("div"))}),ut(function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")})||ct("type|href|height|width",function(e,n,r){return r?t:e.getAttribute(n,"type"===n.toLowerCase()?1:2)}),r.attributes&&ut(function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||ct("value",function(e,n,r){return r||"input"!==e.nodeName.toLowerCase()?t:e.defaultValue}),ut(function(e){return null==e.getAttribute("disabled")})||ct(B,function(e,n,r){var i;return r?t:(i=e.getAttributeNode(n))&&i.specified?i.value:e[n]===!0?n.toLowerCase():null}),x.find=at,x.expr=at.selectors,x.expr[":"]=x.expr.pseudos,x.unique=at.uniqueSort,x.text=at.getText,x.isXMLDoc=at.isXML,x.contains=at.contains}(e);var O={};function F(e){var t=O[e]={};return x.each(e.match(T)||[],function(e,n){t[n]=!0}),t}x.Callbacks=function(e){e="string"==typeof e?O[e]||F(e):x.extend({},e);var n,r,i,o,a,s,l=[],u=!e.once&&[],c=function(t){for(r=e.memory&&t,i=!0,a=s||0,s=0,o=l.length,n=!0;l&&o>a;a++)if(l[a].apply(t[0],t[1])===!1&&e.stopOnFalse){r=!1;break}n=!1,l&&(u?u.length&&c(u.shift()):r?l=[]:p.disable())},p={add:function(){if(l){var t=l.length;(function i(t){x.each(t,function(t,n){var r=x.type(n);"function"===r?e.unique&&p.has(n)||l.push(n):n&&n.length&&"string"!==r&&i(n)})})(arguments),n?o=l.length:r&&(s=t,c(r))}return this},remove:function(){return l&&x.each(arguments,function(e,t){var r;while((r=x.inArray(t,l,r))>-1)l.splice(r,1),n&&(o>=r&&o--,a>=r&&a--)}),this},has:function(e){return e?x.inArray(e,l)>-1:!(!l||!l.length)},empty:function(){return l=[],o=0,this},disable:function(){return l=u=r=t,this},disabled:function(){return!l},lock:function(){return u=t,r||p.disable(),this},locked:function(){return!u},fireWith:function(e,t){return!l||i&&!u||(t=t||[],t=[e,t.slice?t.slice():t],n?u.push(t):c(t)),this},fire:function(){return p.fireWith(this,arguments),this},fired:function(){return!!i}};return p},x.extend({Deferred:function(e){var t=[["resolve","done",x.Callbacks("once memory"),"resolved"],["reject","fail",x.Callbacks("once memory"),"rejected"],["notify","progress",x.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return x.Deferred(function(n){x.each(t,function(t,o){var a=o[0],s=x.isFunction(e[t])&&e[t];i[o[1]](function(){var e=s&&s.apply(this,arguments);e&&x.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[a+"With"](this===r?n.promise():this,s?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?x.extend(e,r):r}},i={};return r.pipe=r.then,x.each(t,function(e,o){var a=o[2],s=o[3];r[o[1]]=a.add,s&&a.add(function(){n=s},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=a.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=g.call(arguments),r=n.length,i=1!==r||e&&x.isFunction(e.promise)?r:0,o=1===i?e:x.Deferred(),a=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?g.call(arguments):r,n===s?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},s,l,u;if(r>1)for(s=Array(r),l=Array(r),u=Array(r);r>t;t++)n[t]&&x.isFunction(n[t].promise)?n[t].promise().done(a(t,u,n)).fail(o.reject).progress(a(t,l,s)):--i;return i||o.resolveWith(u,n),o.promise()}}),x.support=function(t){var n,r,o,s,l,u,c,p,f,d=a.createElement("div");if(d.setAttribute("className","t"),d.innerHTML="
a",n=d.getElementsByTagName("*")||[],r=d.getElementsByTagName("a")[0],!r||!r.style||!n.length)return t;s=a.createElement("select"),u=s.appendChild(a.createElement("option")),o=d.getElementsByTagName("input")[0],r.style.cssText="top:1px;float:left;opacity:.5",t.getSetAttribute="t"!==d.className,t.leadingWhitespace=3===d.firstChild.nodeType,t.tbody=!d.getElementsByTagName("tbody").length,t.htmlSerialize=!!d.getElementsByTagName("link").length,t.style=/top/.test(r.getAttribute("style")),t.hrefNormalized="/a"===r.getAttribute("href"),t.opacity=/^0.5/.test(r.style.opacity),t.cssFloat=!!r.style.cssFloat,t.checkOn=!!o.value,t.optSelected=u.selected,t.enctype=!!a.createElement("form").enctype,t.html5Clone="<:nav>"!==a.createElement("nav").cloneNode(!0).outerHTML,t.inlineBlockNeedsLayout=!1,t.shrinkWrapBlocks=!1,t.pixelPosition=!1,t.deleteExpando=!0,t.noCloneEvent=!0,t.reliableMarginRight=!0,t.boxSizingReliable=!0,o.checked=!0,t.noCloneChecked=o.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!u.disabled;try{delete d.test}catch(h){t.deleteExpando=!1}o=a.createElement("input"),o.setAttribute("value",""),t.input=""===o.getAttribute("value"),o.value="t",o.setAttribute("type","radio"),t.radioValue="t"===o.value,o.setAttribute("checked","t"),o.setAttribute("name","t"),l=a.createDocumentFragment(),l.appendChild(o),t.appendChecked=o.checked,t.checkClone=l.cloneNode(!0).cloneNode(!0).lastChild.checked,d.attachEvent&&(d.attachEvent("onclick",function(){t.noCloneEvent=!1}),d.cloneNode(!0).click());for(f in{submit:!0,change:!0,focusin:!0})d.setAttribute(c="on"+f,"t"),t[f+"Bubbles"]=c in e||d.attributes[c].expando===!1;d.style.backgroundClip="content-box",d.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===d.style.backgroundClip;for(f in x(t))break;return t.ownLast="0"!==f,x(function(){var n,r,o,s="padding:0;margin:0;border:0;display:block;box-sizing:content-box;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;",l=a.getElementsByTagName("body")[0];l&&(n=a.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",l.appendChild(n).appendChild(d),d.innerHTML="
t
",o=d.getElementsByTagName("td"),o[0].style.cssText="padding:0;margin:0;border:0;display:none",p=0===o[0].offsetHeight,o[0].style.display="",o[1].style.display="none",t.reliableHiddenOffsets=p&&0===o[0].offsetHeight,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",x.swap(l,null!=l.style.zoom?{zoom:1}:{},function(){t.boxSizing=4===d.offsetWidth}),e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(d,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(d,null)||{width:"4px"}).width,r=d.appendChild(a.createElement("div")),r.style.cssText=d.style.cssText=s,r.style.marginRight=r.style.width="0",d.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),typeof d.style.zoom!==i&&(d.innerHTML="",d.style.cssText=s+"width:1px;padding:1px;display:inline;zoom:1",t.inlineBlockNeedsLayout=3===d.offsetWidth,d.style.display="block",d.innerHTML="
",d.firstChild.style.width="5px",t.shrinkWrapBlocks=3!==d.offsetWidth,t.inlineBlockNeedsLayout&&(l.style.zoom=1)),l.removeChild(n),n=d=o=r=null)}),n=s=l=u=r=o=null,t +}({});var B=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,P=/([A-Z])/g;function R(e,n,r,i){if(x.acceptData(e)){var o,a,s=x.expando,l=e.nodeType,u=l?x.cache:e,c=l?e[s]:e[s]&&s;if(c&&u[c]&&(i||u[c].data)||r!==t||"string"!=typeof n)return c||(c=l?e[s]=p.pop()||x.guid++:s),u[c]||(u[c]=l?{}:{toJSON:x.noop}),("object"==typeof n||"function"==typeof n)&&(i?u[c]=x.extend(u[c],n):u[c].data=x.extend(u[c].data,n)),a=u[c],i||(a.data||(a.data={}),a=a.data),r!==t&&(a[x.camelCase(n)]=r),"string"==typeof n?(o=a[n],null==o&&(o=a[x.camelCase(n)])):o=a,o}}function W(e,t,n){if(x.acceptData(e)){var r,i,o=e.nodeType,a=o?x.cache:e,s=o?e[x.expando]:x.expando;if(a[s]){if(t&&(r=n?a[s]:a[s].data)){x.isArray(t)?t=t.concat(x.map(t,x.camelCase)):t in r?t=[t]:(t=x.camelCase(t),t=t in r?[t]:t.split(" ")),i=t.length;while(i--)delete r[t[i]];if(n?!I(r):!x.isEmptyObject(r))return}(n||(delete a[s].data,I(a[s])))&&(o?x.cleanData([e],!0):x.support.deleteExpando||a!=a.window?delete a[s]:a[s]=null)}}}x.extend({cache:{},noData:{applet:!0,embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(e){return e=e.nodeType?x.cache[e[x.expando]]:e[x.expando],!!e&&!I(e)},data:function(e,t,n){return R(e,t,n)},removeData:function(e,t){return W(e,t)},_data:function(e,t,n){return R(e,t,n,!0)},_removeData:function(e,t){return W(e,t,!0)},acceptData:function(e){if(e.nodeType&&1!==e.nodeType&&9!==e.nodeType)return!1;var t=e.nodeName&&x.noData[e.nodeName.toLowerCase()];return!t||t!==!0&&e.getAttribute("classid")===t}}),x.fn.extend({data:function(e,n){var r,i,o=null,a=0,s=this[0];if(e===t){if(this.length&&(o=x.data(s),1===s.nodeType&&!x._data(s,"parsedAttrs"))){for(r=s.attributes;r.length>a;a++)i=r[a].name,0===i.indexOf("data-")&&(i=x.camelCase(i.slice(5)),$(s,i,o[i]));x._data(s,"parsedAttrs",!0)}return o}return"object"==typeof e?this.each(function(){x.data(this,e)}):arguments.length>1?this.each(function(){x.data(this,e,n)}):s?$(s,e,x.data(s,e)):null},removeData:function(e){return this.each(function(){x.removeData(this,e)})}});function $(e,n,r){if(r===t&&1===e.nodeType){var i="data-"+n.replace(P,"-$1").toLowerCase();if(r=e.getAttribute(i),"string"==typeof r){try{r="true"===r?!0:"false"===r?!1:"null"===r?null:+r+""===r?+r:B.test(r)?x.parseJSON(r):r}catch(o){}x.data(e,n,r)}else r=t}return r}function I(e){var t;for(t in e)if(("data"!==t||!x.isEmptyObject(e[t]))&&"toJSON"!==t)return!1;return!0}x.extend({queue:function(e,n,r){var i;return e?(n=(n||"fx")+"queue",i=x._data(e,n),r&&(!i||x.isArray(r)?i=x._data(e,n,x.makeArray(r)):i.push(r)),i||[]):t},dequeue:function(e,t){t=t||"fx";var n=x.queue(e,t),r=n.length,i=n.shift(),o=x._queueHooks(e,t),a=function(){x.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,a,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return x._data(e,n)||x._data(e,n,{empty:x.Callbacks("once memory").add(function(){x._removeData(e,t+"queue"),x._removeData(e,n)})})}}),x.fn.extend({queue:function(e,n){var r=2;return"string"!=typeof e&&(n=e,e="fx",r--),r>arguments.length?x.queue(this[0],e):n===t?this:this.each(function(){var t=x.queue(this,e,n);x._queueHooks(this,e),"fx"===e&&"inprogress"!==t[0]&&x.dequeue(this,e)})},dequeue:function(e){return this.each(function(){x.dequeue(this,e)})},delay:function(e,t){return e=x.fx?x.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,n){var r,i=1,o=x.Deferred(),a=this,s=this.length,l=function(){--i||o.resolveWith(a,[a])};"string"!=typeof e&&(n=e,e=t),e=e||"fx";while(s--)r=x._data(a[s],e+"queueHooks"),r&&r.empty&&(i++,r.empty.add(l));return l(),o.promise(n)}});var z,X,U=/[\t\r\n\f]/g,V=/\r/g,Y=/^(?:input|select|textarea|button|object)$/i,J=/^(?:a|area)$/i,G=/^(?:checked|selected)$/i,Q=x.support.getSetAttribute,K=x.support.input;x.fn.extend({attr:function(e,t){return x.access(this,x.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){x.removeAttr(this,e)})},prop:function(e,t){return x.access(this,x.prop,e,t,arguments.length>1)},removeProp:function(e){return e=x.propFix[e]||e,this.each(function(){try{this[e]=t,delete this[e]}catch(n){}})},addClass:function(e){var t,n,r,i,o,a=0,s=this.length,l="string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).addClass(e.call(this,t,this.className))});if(l)for(t=(e||"").match(T)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(U," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=x.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,a=0,s=this.length,l=0===arguments.length||"string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).removeClass(e.call(this,t,this.className))});if(l)for(t=(e||"").match(T)||[];s>a;a++)if(n=this[a],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(U," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?x.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):x.isFunction(e)?this.each(function(n){x(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var t,r=0,o=x(this),a=e.match(T)||[];while(t=a[r++])o.hasClass(t)?o.removeClass(t):o.addClass(t)}else(n===i||"boolean"===n)&&(this.className&&x._data(this,"__className__",this.className),this.className=this.className||e===!1?"":x._data(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(U," ").indexOf(t)>=0)return!0;return!1},val:function(e){var n,r,i,o=this[0];{if(arguments.length)return i=x.isFunction(e),this.each(function(n){var o;1===this.nodeType&&(o=i?e.call(this,n,x(this).val()):e,null==o?o="":"number"==typeof o?o+="":x.isArray(o)&&(o=x.map(o,function(e){return null==e?"":e+""})),r=x.valHooks[this.type]||x.valHooks[this.nodeName.toLowerCase()],r&&"set"in r&&r.set(this,o,"value")!==t||(this.value=o))});if(o)return r=x.valHooks[o.type]||x.valHooks[o.nodeName.toLowerCase()],r&&"get"in r&&(n=r.get(o,"value"))!==t?n:(n=o.value,"string"==typeof n?n.replace(V,""):null==n?"":n)}}}),x.extend({valHooks:{option:{get:function(e){var t=x.find.attr(e,"value");return null!=t?t:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,a=o?null:[],s=o?i+1:r.length,l=0>i?s:o?i:0;for(;s>l;l++)if(n=r[l],!(!n.selected&&l!==i||(x.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&x.nodeName(n.parentNode,"optgroup"))){if(t=x(n).val(),o)return t;a.push(t)}return a},set:function(e,t){var n,r,i=e.options,o=x.makeArray(t),a=i.length;while(a--)r=i[a],(r.selected=x.inArray(x(r).val(),o)>=0)&&(n=!0);return n||(e.selectedIndex=-1),o}}},attr:function(e,n,r){var o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return typeof e.getAttribute===i?x.prop(e,n,r):(1===s&&x.isXMLDoc(e)||(n=n.toLowerCase(),o=x.attrHooks[n]||(x.expr.match.bool.test(n)?X:z)),r===t?o&&"get"in o&&null!==(a=o.get(e,n))?a:(a=x.find.attr(e,n),null==a?t:a):null!==r?o&&"set"in o&&(a=o.set(e,r,n))!==t?a:(e.setAttribute(n,r+""),r):(x.removeAttr(e,n),t))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(T);if(o&&1===e.nodeType)while(n=o[i++])r=x.propFix[n]||n,x.expr.match.bool.test(n)?K&&Q||!G.test(n)?e[r]=!1:e[x.camelCase("default-"+n)]=e[r]=!1:x.attr(e,n,""),e.removeAttribute(Q?n:r)},attrHooks:{type:{set:function(e,t){if(!x.support.radioValue&&"radio"===t&&x.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{"for":"htmlFor","class":"className"},prop:function(e,n,r){var i,o,a,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return a=1!==s||!x.isXMLDoc(e),a&&(n=x.propFix[n]||n,o=x.propHooks[n]),r!==t?o&&"set"in o&&(i=o.set(e,r,n))!==t?i:e[n]=r:o&&"get"in o&&null!==(i=o.get(e,n))?i:e[n]},propHooks:{tabIndex:{get:function(e){var t=x.find.attr(e,"tabindex");return t?parseInt(t,10):Y.test(e.nodeName)||J.test(e.nodeName)&&e.href?0:-1}}}}),X={set:function(e,t,n){return t===!1?x.removeAttr(e,n):K&&Q||!G.test(n)?e.setAttribute(!Q&&x.propFix[n]||n,n):e[x.camelCase("default-"+n)]=e[n]=!0,n}},x.each(x.expr.match.bool.source.match(/\w+/g),function(e,n){var r=x.expr.attrHandle[n]||x.find.attr;x.expr.attrHandle[n]=K&&Q||!G.test(n)?function(e,n,i){var o=x.expr.attrHandle[n],a=i?t:(x.expr.attrHandle[n]=t)!=r(e,n,i)?n.toLowerCase():null;return x.expr.attrHandle[n]=o,a}:function(e,n,r){return r?t:e[x.camelCase("default-"+n)]?n.toLowerCase():null}}),K&&Q||(x.attrHooks.value={set:function(e,n,r){return x.nodeName(e,"input")?(e.defaultValue=n,t):z&&z.set(e,n,r)}}),Q||(z={set:function(e,n,r){var i=e.getAttributeNode(r);return i||e.setAttributeNode(i=e.ownerDocument.createAttribute(r)),i.value=n+="","value"===r||n===e.getAttribute(r)?n:t}},x.expr.attrHandle.id=x.expr.attrHandle.name=x.expr.attrHandle.coords=function(e,n,r){var i;return r?t:(i=e.getAttributeNode(n))&&""!==i.value?i.value:null},x.valHooks.button={get:function(e,n){var r=e.getAttributeNode(n);return r&&r.specified?r.value:t},set:z.set},x.attrHooks.contenteditable={set:function(e,t,n){z.set(e,""===t?!1:t,n)}},x.each(["width","height"],function(e,n){x.attrHooks[n]={set:function(e,r){return""===r?(e.setAttribute(n,"auto"),r):t}}})),x.support.hrefNormalized||x.each(["href","src"],function(e,t){x.propHooks[t]={get:function(e){return e.getAttribute(t,4)}}}),x.support.style||(x.attrHooks.style={get:function(e){return e.style.cssText||t},set:function(e,t){return e.style.cssText=t+""}}),x.support.optSelected||(x.propHooks.selected={get:function(e){var t=e.parentNode;return t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex),null}}),x.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){x.propFix[this.toLowerCase()]=this}),x.support.enctype||(x.propFix.enctype="encoding"),x.each(["radio","checkbox"],function(){x.valHooks[this]={set:function(e,n){return x.isArray(n)?e.checked=x.inArray(x(e).val(),n)>=0:t}},x.support.checkOn||(x.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var Z=/^(?:input|select|textarea)$/i,et=/^key/,tt=/^(?:mouse|contextmenu)|click/,nt=/^(?:focusinfocus|focusoutblur)$/,rt=/^([^.]*)(?:\.(.+)|)$/;function it(){return!0}function ot(){return!1}function at(){try{return a.activeElement}catch(e){}}x.event={global:{},add:function(e,n,r,o,a){var s,l,u,c,p,f,d,h,g,m,y,v=x._data(e);if(v){r.handler&&(c=r,r=c.handler,a=c.selector),r.guid||(r.guid=x.guid++),(l=v.events)||(l=v.events={}),(f=v.handle)||(f=v.handle=function(e){return typeof x===i||e&&x.event.triggered===e.type?t:x.event.dispatch.apply(f.elem,arguments)},f.elem=e),n=(n||"").match(T)||[""],u=n.length;while(u--)s=rt.exec(n[u])||[],g=y=s[1],m=(s[2]||"").split(".").sort(),g&&(p=x.event.special[g]||{},g=(a?p.delegateType:p.bindType)||g,p=x.event.special[g]||{},d=x.extend({type:g,origType:y,data:o,handler:r,guid:r.guid,selector:a,needsContext:a&&x.expr.match.needsContext.test(a),namespace:m.join(".")},c),(h=l[g])||(h=l[g]=[],h.delegateCount=0,p.setup&&p.setup.call(e,o,m,f)!==!1||(e.addEventListener?e.addEventListener(g,f,!1):e.attachEvent&&e.attachEvent("on"+g,f))),p.add&&(p.add.call(e,d),d.handler.guid||(d.handler.guid=r.guid)),a?h.splice(h.delegateCount++,0,d):h.push(d),x.event.global[g]=!0);e=null}},remove:function(e,t,n,r,i){var o,a,s,l,u,c,p,f,d,h,g,m=x.hasData(e)&&x._data(e);if(m&&(c=m.events)){t=(t||"").match(T)||[""],u=t.length;while(u--)if(s=rt.exec(t[u])||[],d=g=s[1],h=(s[2]||"").split(".").sort(),d){p=x.event.special[d]||{},d=(r?p.delegateType:p.bindType)||d,f=c[d]||[],s=s[2]&&RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),l=o=f.length;while(o--)a=f[o],!i&&g!==a.origType||n&&n.guid!==a.guid||s&&!s.test(a.namespace)||r&&r!==a.selector&&("**"!==r||!a.selector)||(f.splice(o,1),a.selector&&f.delegateCount--,p.remove&&p.remove.call(e,a));l&&!f.length&&(p.teardown&&p.teardown.call(e,h,m.handle)!==!1||x.removeEvent(e,d,m.handle),delete c[d])}else for(d in c)x.event.remove(e,d+t[u],n,r,!0);x.isEmptyObject(c)&&(delete m.handle,x._removeData(e,"events"))}},trigger:function(n,r,i,o){var s,l,u,c,p,f,d,h=[i||a],g=v.call(n,"type")?n.type:n,m=v.call(n,"namespace")?n.namespace.split("."):[];if(u=f=i=i||a,3!==i.nodeType&&8!==i.nodeType&&!nt.test(g+x.event.triggered)&&(g.indexOf(".")>=0&&(m=g.split("."),g=m.shift(),m.sort()),l=0>g.indexOf(":")&&"on"+g,n=n[x.expando]?n:new x.Event(g,"object"==typeof n&&n),n.isTrigger=o?2:3,n.namespace=m.join("."),n.namespace_re=n.namespace?RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,n.result=t,n.target||(n.target=i),r=null==r?[n]:x.makeArray(r,[n]),p=x.event.special[g]||{},o||!p.trigger||p.trigger.apply(i,r)!==!1)){if(!o&&!p.noBubble&&!x.isWindow(i)){for(c=p.delegateType||g,nt.test(c+g)||(u=u.parentNode);u;u=u.parentNode)h.push(u),f=u;f===(i.ownerDocument||a)&&h.push(f.defaultView||f.parentWindow||e)}d=0;while((u=h[d++])&&!n.isPropagationStopped())n.type=d>1?c:p.bindType||g,s=(x._data(u,"events")||{})[n.type]&&x._data(u,"handle"),s&&s.apply(u,r),s=l&&u[l],s&&x.acceptData(u)&&s.apply&&s.apply(u,r)===!1&&n.preventDefault();if(n.type=g,!o&&!n.isDefaultPrevented()&&(!p._default||p._default.apply(h.pop(),r)===!1)&&x.acceptData(i)&&l&&i[g]&&!x.isWindow(i)){f=i[l],f&&(i[l]=null),x.event.triggered=g;try{i[g]()}catch(y){}x.event.triggered=t,f&&(i[l]=f)}return n.result}},dispatch:function(e){e=x.event.fix(e);var n,r,i,o,a,s=[],l=g.call(arguments),u=(x._data(this,"events")||{})[e.type]||[],c=x.event.special[e.type]||{};if(l[0]=e,e.delegateTarget=this,!c.preDispatch||c.preDispatch.call(this,e)!==!1){s=x.event.handlers.call(this,e,u),n=0;while((o=s[n++])&&!e.isPropagationStopped()){e.currentTarget=o.elem,a=0;while((i=o.handlers[a++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(i.namespace))&&(e.handleObj=i,e.data=i.data,r=((x.event.special[i.origType]||{}).handle||i.handler).apply(o.elem,l),r!==t&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return c.postDispatch&&c.postDispatch.call(this,e),e.result}},handlers:function(e,n){var r,i,o,a,s=[],l=n.delegateCount,u=e.target;if(l&&u.nodeType&&(!e.button||"click"!==e.type))for(;u!=this;u=u.parentNode||this)if(1===u.nodeType&&(u.disabled!==!0||"click"!==e.type)){for(o=[],a=0;l>a;a++)i=n[a],r=i.selector+" ",o[r]===t&&(o[r]=i.needsContext?x(r,this).index(u)>=0:x.find(r,this,null,[u]).length),o[r]&&o.push(i);o.length&&s.push({elem:u,handlers:o})}return n.length>l&&s.push({elem:this,handlers:n.slice(l)}),s},fix:function(e){if(e[x.expando])return e;var t,n,r,i=e.type,o=e,s=this.fixHooks[i];s||(this.fixHooks[i]=s=tt.test(i)?this.mouseHooks:et.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new x.Event(o),t=r.length;while(t--)n=r[t],e[n]=o[n];return e.target||(e.target=o.srcElement||a),3===e.target.nodeType&&(e.target=e.target.parentNode),e.metaKey=!!e.metaKey,s.filter?s.filter(e,o):e},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,n){var r,i,o,s=n.button,l=n.fromElement;return null==e.pageX&&null!=n.clientX&&(i=e.target.ownerDocument||a,o=i.documentElement,r=i.body,e.pageX=n.clientX+(o&&o.scrollLeft||r&&r.scrollLeft||0)-(o&&o.clientLeft||r&&r.clientLeft||0),e.pageY=n.clientY+(o&&o.scrollTop||r&&r.scrollTop||0)-(o&&o.clientTop||r&&r.clientTop||0)),!e.relatedTarget&&l&&(e.relatedTarget=l===e.target?n.toElement:l),e.which||s===t||(e.which=1&s?1:2&s?3:4&s?2:0),e}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==at()&&this.focus)try{return this.focus(),!1}catch(e){}},delegateType:"focusin"},blur:{trigger:function(){return this===at()&&this.blur?(this.blur(),!1):t},delegateType:"focusout"},click:{trigger:function(){return x.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):t},_default:function(e){return x.nodeName(e.target,"a")}},beforeunload:{postDispatch:function(e){e.result!==t&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=x.extend(new x.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?x.event.trigger(i,null,t):x.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},x.removeEvent=a.removeEventListener?function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)}:function(e,t,n){var r="on"+t;e.detachEvent&&(typeof e[r]===i&&(e[r]=null),e.detachEvent(r,n))},x.Event=function(e,n){return this instanceof x.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.returnValue===!1||e.getPreventDefault&&e.getPreventDefault()?it:ot):this.type=e,n&&x.extend(this,n),this.timeStamp=e&&e.timeStamp||x.now(),this[x.expando]=!0,t):new x.Event(e,n)},x.Event.prototype={isDefaultPrevented:ot,isPropagationStopped:ot,isImmediatePropagationStopped:ot,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=it,e&&(e.preventDefault?e.preventDefault():e.returnValue=!1)},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=it,e&&(e.stopPropagation&&e.stopPropagation(),e.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=it,this.stopPropagation()}},x.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){x.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return(!i||i!==r&&!x.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),x.support.submitBubbles||(x.event.special.submit={setup:function(){return x.nodeName(this,"form")?!1:(x.event.add(this,"click._submit keypress._submit",function(e){var n=e.target,r=x.nodeName(n,"input")||x.nodeName(n,"button")?n.form:t;r&&!x._data(r,"submitBubbles")&&(x.event.add(r,"submit._submit",function(e){e._submit_bubble=!0}),x._data(r,"submitBubbles",!0))}),t)},postDispatch:function(e){e._submit_bubble&&(delete e._submit_bubble,this.parentNode&&!e.isTrigger&&x.event.simulate("submit",this.parentNode,e,!0))},teardown:function(){return x.nodeName(this,"form")?!1:(x.event.remove(this,"._submit"),t)}}),x.support.changeBubbles||(x.event.special.change={setup:function(){return Z.test(this.nodeName)?(("checkbox"===this.type||"radio"===this.type)&&(x.event.add(this,"propertychange._change",function(e){"checked"===e.originalEvent.propertyName&&(this._just_changed=!0)}),x.event.add(this,"click._change",function(e){this._just_changed&&!e.isTrigger&&(this._just_changed=!1),x.event.simulate("change",this,e,!0)})),!1):(x.event.add(this,"beforeactivate._change",function(e){var t=e.target;Z.test(t.nodeName)&&!x._data(t,"changeBubbles")&&(x.event.add(t,"change._change",function(e){!this.parentNode||e.isSimulated||e.isTrigger||x.event.simulate("change",this.parentNode,e,!0)}),x._data(t,"changeBubbles",!0))}),t)},handle:function(e){var n=e.target;return this!==n||e.isSimulated||e.isTrigger||"radio"!==n.type&&"checkbox"!==n.type?e.handleObj.handler.apply(this,arguments):t},teardown:function(){return x.event.remove(this,"._change"),!Z.test(this.nodeName)}}),x.support.focusinBubbles||x.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){x.event.simulate(t,e.target,x.event.fix(e),!0)};x.event.special[t]={setup:function(){0===n++&&a.addEventListener(e,r,!0)},teardown:function(){0===--n&&a.removeEventListener(e,r,!0)}}}),x.fn.extend({on:function(e,n,r,i,o){var a,s;if("object"==typeof e){"string"!=typeof n&&(r=r||n,n=t);for(a in e)this.on(a,n,r,e[a],o);return this}if(null==r&&null==i?(i=n,r=n=t):null==i&&("string"==typeof n?(i=r,r=t):(i=r,r=n,n=t)),i===!1)i=ot;else if(!i)return this;return 1===o&&(s=i,i=function(e){return x().off(e),s.apply(this,arguments)},i.guid=s.guid||(s.guid=x.guid++)),this.each(function(){x.event.add(this,e,i,r,n)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,n,r){var i,o;if(e&&e.preventDefault&&e.handleObj)return i=e.handleObj,x(e.delegateTarget).off(i.namespace?i.origType+"."+i.namespace:i.origType,i.selector,i.handler),this;if("object"==typeof e){for(o in e)this.off(o,n,e[o]);return this}return(n===!1||"function"==typeof n)&&(r=n,n=t),r===!1&&(r=ot),this.each(function(){x.event.remove(this,e,r,n)})},trigger:function(e,t){return this.each(function(){x.event.trigger(e,t,this)})},triggerHandler:function(e,n){var r=this[0];return r?x.event.trigger(e,n,r,!0):t}});var st=/^.[^:#\[\.,]*$/,lt=/^(?:parents|prev(?:Until|All))/,ut=x.expr.match.needsContext,ct={children:!0,contents:!0,next:!0,prev:!0};x.fn.extend({find:function(e){var t,n=[],r=this,i=r.length;if("string"!=typeof e)return this.pushStack(x(e).filter(function(){for(t=0;i>t;t++)if(x.contains(r[t],this))return!0}));for(t=0;i>t;t++)x.find(e,r[t],n);return n=this.pushStack(i>1?x.unique(n):n),n.selector=this.selector?this.selector+" "+e:e,n},has:function(e){var t,n=x(e,this),r=n.length;return this.filter(function(){for(t=0;r>t;t++)if(x.contains(this,n[t]))return!0})},not:function(e){return this.pushStack(ft(this,e||[],!0))},filter:function(e){return this.pushStack(ft(this,e||[],!1))},is:function(e){return!!ft(this,"string"==typeof e&&ut.test(e)?x(e):e||[],!1).length},closest:function(e,t){var n,r=0,i=this.length,o=[],a=ut.test(e)||"string"!=typeof e?x(e,t||this.context):0;for(;i>r;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(11>n.nodeType&&(a?a.index(n)>-1:1===n.nodeType&&x.find.matchesSelector(n,e))){n=o.push(n);break}return this.pushStack(o.length>1?x.unique(o):o)},index:function(e){return e?"string"==typeof e?x.inArray(this[0],x(e)):x.inArray(e.jquery?e[0]:e,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?x(e,t):x.makeArray(e&&e.nodeType?[e]:e),r=x.merge(this.get(),n);return this.pushStack(x.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function pt(e,t){do e=e[t];while(e&&1!==e.nodeType);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return x.dir(e,"parentNode")},parentsUntil:function(e,t,n){return x.dir(e,"parentNode",n)},next:function(e){return pt(e,"nextSibling")},prev:function(e){return pt(e,"previousSibling")},nextAll:function(e){return x.dir(e,"nextSibling")},prevAll:function(e){return x.dir(e,"previousSibling")},nextUntil:function(e,t,n){return x.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return x.dir(e,"previousSibling",n)},siblings:function(e){return x.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return x.sibling(e.firstChild)},contents:function(e){return x.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:x.merge([],e.childNodes)}},function(e,t){x.fn[e]=function(n,r){var i=x.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=x.filter(r,i)),this.length>1&&(ct[e]||(i=x.unique(i)),lt.test(e)&&(i=i.reverse())),this.pushStack(i)}}),x.extend({filter:function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?x.find.matchesSelector(r,e)?[r]:[]:x.find.matches(e,x.grep(t,function(e){return 1===e.nodeType}))},dir:function(e,n,r){var i=[],o=e[n];while(o&&9!==o.nodeType&&(r===t||1!==o.nodeType||!x(o).is(r)))1===o.nodeType&&i.push(o),o=o[n];return i},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function ft(e,t,n){if(x.isFunction(t))return x.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return x.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(st.test(t))return x.filter(t,e,n);t=x.filter(t,e)}return x.grep(e,function(e){return x.inArray(e,t)>=0!==n})}function dt(e){var t=ht.split("|"),n=e.createDocumentFragment();if(n.createElement)while(t.length)n.createElement(t.pop());return n}var ht="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",gt=/ jQuery\d+="(?:null|\d+)"/g,mt=RegExp("<(?:"+ht+")[\\s/>]","i"),yt=/^\s+/,vt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bt=/<([\w:]+)/,xt=/\s*$/g,At={option:[1,""],legend:[1,"
","
"],area:[1,"",""],param:[1,"",""],thead:[1,"","
"],tr:[2,"","
"],col:[2,"","
"],td:[3,"","
"],_default:x.support.htmlSerialize?[0,"",""]:[1,"X
","
"]},jt=dt(a),Dt=jt.appendChild(a.createElement("div"));At.optgroup=At.option,At.tbody=At.tfoot=At.colgroup=At.caption=At.thead,At.th=At.td,x.fn.extend({text:function(e){return x.access(this,function(e){return e===t?x.text(this):this.empty().append((this[0]&&this[0].ownerDocument||a).createTextNode(e))},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Lt(this,e);t.appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Lt(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=e?x.filter(e,this):this,i=0;for(;null!=(n=r[i]);i++)t||1!==n.nodeType||x.cleanData(Ft(n)),n.parentNode&&(t&&x.contains(n.ownerDocument,n)&&_t(Ft(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++){1===e.nodeType&&x.cleanData(Ft(e,!1));while(e.firstChild)e.removeChild(e.firstChild);e.options&&x.nodeName(e,"select")&&(e.options.length=0)}return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return x.clone(this,e,t)})},html:function(e){return x.access(this,function(e){var n=this[0]||{},r=0,i=this.length;if(e===t)return 1===n.nodeType?n.innerHTML.replace(gt,""):t;if(!("string"!=typeof e||Tt.test(e)||!x.support.htmlSerialize&&mt.test(e)||!x.support.leadingWhitespace&&yt.test(e)||At[(bt.exec(e)||["",""])[1].toLowerCase()])){e=e.replace(vt,"<$1>");try{for(;i>r;r++)n=this[r]||{},1===n.nodeType&&(x.cleanData(Ft(n,!1)),n.innerHTML=e);n=0}catch(o){}}n&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=x.map(this,function(e){return[e.nextSibling,e.parentNode]}),t=0;return this.domManip(arguments,function(n){var r=e[t++],i=e[t++];i&&(r&&r.parentNode!==i&&(r=this.nextSibling),x(this).remove(),i.insertBefore(n,r))},!0),t?this:this.remove()},detach:function(e){return this.remove(e,!0)},domManip:function(e,t,n){e=d.apply([],e);var r,i,o,a,s,l,u=0,c=this.length,p=this,f=c-1,h=e[0],g=x.isFunction(h);if(g||!(1>=c||"string"!=typeof h||x.support.checkClone)&&Nt.test(h))return this.each(function(r){var i=p.eq(r);g&&(e[0]=h.call(this,r,i.html())),i.domManip(e,t,n)});if(c&&(l=x.buildFragment(e,this[0].ownerDocument,!1,!n&&this),r=l.firstChild,1===l.childNodes.length&&(l=r),r)){for(a=x.map(Ft(l,"script"),Ht),o=a.length;c>u;u++)i=l,u!==f&&(i=x.clone(i,!0,!0),o&&x.merge(a,Ft(i,"script"))),t.call(this[u],i,u);if(o)for(s=a[a.length-1].ownerDocument,x.map(a,qt),u=0;o>u;u++)i=a[u],kt.test(i.type||"")&&!x._data(i,"globalEval")&&x.contains(s,i)&&(i.src?x._evalUrl(i.src):x.globalEval((i.text||i.textContent||i.innerHTML||"").replace(St,"")));l=r=null}return this}});function Lt(e,t){return x.nodeName(e,"table")&&x.nodeName(1===t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function Ht(e){return e.type=(null!==x.find.attr(e,"type"))+"/"+e.type,e}function qt(e){var t=Et.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function _t(e,t){var n,r=0;for(;null!=(n=e[r]);r++)x._data(n,"globalEval",!t||x._data(t[r],"globalEval"))}function Mt(e,t){if(1===t.nodeType&&x.hasData(e)){var n,r,i,o=x._data(e),a=x._data(t,o),s=o.events;if(s){delete a.handle,a.events={};for(n in s)for(r=0,i=s[n].length;i>r;r++)x.event.add(t,n,s[n][r])}a.data&&(a.data=x.extend({},a.data))}}function Ot(e,t){var n,r,i;if(1===t.nodeType){if(n=t.nodeName.toLowerCase(),!x.support.noCloneEvent&&t[x.expando]){i=x._data(t);for(r in i.events)x.removeEvent(t,r,i.handle);t.removeAttribute(x.expando)}"script"===n&&t.text!==e.text?(Ht(t).text=e.text,qt(t)):"object"===n?(t.parentNode&&(t.outerHTML=e.outerHTML),x.support.html5Clone&&e.innerHTML&&!x.trim(t.innerHTML)&&(t.innerHTML=e.innerHTML)):"input"===n&&Ct.test(e.type)?(t.defaultChecked=t.checked=e.checked,t.value!==e.value&&(t.value=e.value)):"option"===n?t.defaultSelected=t.selected=e.defaultSelected:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}}x.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){x.fn[e]=function(e){var n,r=0,i=[],o=x(e),a=o.length-1;for(;a>=r;r++)n=r===a?this:this.clone(!0),x(o[r])[t](n),h.apply(i,n.get());return this.pushStack(i)}});function Ft(e,n){var r,o,a=0,s=typeof e.getElementsByTagName!==i?e.getElementsByTagName(n||"*"):typeof e.querySelectorAll!==i?e.querySelectorAll(n||"*"):t;if(!s)for(s=[],r=e.childNodes||e;null!=(o=r[a]);a++)!n||x.nodeName(o,n)?s.push(o):x.merge(s,Ft(o,n));return n===t||n&&x.nodeName(e,n)?x.merge([e],s):s}function Bt(e){Ct.test(e.type)&&(e.defaultChecked=e.checked)}x.extend({clone:function(e,t,n){var r,i,o,a,s,l=x.contains(e.ownerDocument,e);if(x.support.html5Clone||x.isXMLDoc(e)||!mt.test("<"+e.nodeName+">")?o=e.cloneNode(!0):(Dt.innerHTML=e.outerHTML,Dt.removeChild(o=Dt.firstChild)),!(x.support.noCloneEvent&&x.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||x.isXMLDoc(e)))for(r=Ft(o),s=Ft(e),a=0;null!=(i=s[a]);++a)r[a]&&Ot(i,r[a]);if(t)if(n)for(s=s||Ft(e),r=r||Ft(o),a=0;null!=(i=s[a]);a++)Mt(i,r[a]);else Mt(e,o);return r=Ft(o,"script"),r.length>0&&_t(r,!l&&Ft(e,"script")),r=s=i=null,o},buildFragment:function(e,t,n,r){var i,o,a,s,l,u,c,p=e.length,f=dt(t),d=[],h=0;for(;p>h;h++)if(o=e[h],o||0===o)if("object"===x.type(o))x.merge(d,o.nodeType?[o]:o);else if(wt.test(o)){s=s||f.appendChild(t.createElement("div")),l=(bt.exec(o)||["",""])[1].toLowerCase(),c=At[l]||At._default,s.innerHTML=c[1]+o.replace(vt,"<$1>")+c[2],i=c[0];while(i--)s=s.lastChild;if(!x.support.leadingWhitespace&&yt.test(o)&&d.push(t.createTextNode(yt.exec(o)[0])),!x.support.tbody){o="table"!==l||xt.test(o)?""!==c[1]||xt.test(o)?0:s:s.firstChild,i=o&&o.childNodes.length;while(i--)x.nodeName(u=o.childNodes[i],"tbody")&&!u.childNodes.length&&o.removeChild(u)}x.merge(d,s.childNodes),s.textContent="";while(s.firstChild)s.removeChild(s.firstChild);s=f.lastChild}else d.push(t.createTextNode(o));s&&f.removeChild(s),x.support.appendChecked||x.grep(Ft(d,"input"),Bt),h=0;while(o=d[h++])if((!r||-1===x.inArray(o,r))&&(a=x.contains(o.ownerDocument,o),s=Ft(f.appendChild(o),"script"),a&&_t(s),n)){i=0;while(o=s[i++])kt.test(o.type||"")&&n.push(o)}return s=null,f},cleanData:function(e,t){var n,r,o,a,s=0,l=x.expando,u=x.cache,c=x.support.deleteExpando,f=x.event.special;for(;null!=(n=e[s]);s++)if((t||x.acceptData(n))&&(o=n[l],a=o&&u[o])){if(a.events)for(r in a.events)f[r]?x.event.remove(n,r):x.removeEvent(n,r,a.handle); +u[o]&&(delete u[o],c?delete n[l]:typeof n.removeAttribute!==i?n.removeAttribute(l):n[l]=null,p.push(o))}},_evalUrl:function(e){return x.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})}}),x.fn.extend({wrapAll:function(e){if(x.isFunction(e))return this.each(function(t){x(this).wrapAll(e.call(this,t))});if(this[0]){var t=x(e,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstChild&&1===e.firstChild.nodeType)e=e.firstChild;return e}).append(this)}return this},wrapInner:function(e){return x.isFunction(e)?this.each(function(t){x(this).wrapInner(e.call(this,t))}):this.each(function(){var t=x(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=x.isFunction(e);return this.each(function(n){x(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){x.nodeName(this,"body")||x(this).replaceWith(this.childNodes)}).end()}});var Pt,Rt,Wt,$t=/alpha\([^)]*\)/i,It=/opacity\s*=\s*([^)]*)/,zt=/^(top|right|bottom|left)$/,Xt=/^(none|table(?!-c[ea]).+)/,Ut=/^margin/,Vt=RegExp("^("+w+")(.*)$","i"),Yt=RegExp("^("+w+")(?!px)[a-z%]+$","i"),Jt=RegExp("^([+-])=("+w+")","i"),Gt={BODY:"block"},Qt={position:"absolute",visibility:"hidden",display:"block"},Kt={letterSpacing:0,fontWeight:400},Zt=["Top","Right","Bottom","Left"],en=["Webkit","O","Moz","ms"];function tn(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=en.length;while(i--)if(t=en[i]+n,t in e)return t;return r}function nn(e,t){return e=t||e,"none"===x.css(e,"display")||!x.contains(e.ownerDocument,e)}function rn(e,t){var n,r,i,o=[],a=0,s=e.length;for(;s>a;a++)r=e[a],r.style&&(o[a]=x._data(r,"olddisplay"),n=r.style.display,t?(o[a]||"none"!==n||(r.style.display=""),""===r.style.display&&nn(r)&&(o[a]=x._data(r,"olddisplay",ln(r.nodeName)))):o[a]||(i=nn(r),(n&&"none"!==n||!i)&&x._data(r,"olddisplay",i?n:x.css(r,"display"))));for(a=0;s>a;a++)r=e[a],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[a]||"":"none"));return e}x.fn.extend({css:function(e,n){return x.access(this,function(e,n,r){var i,o,a={},s=0;if(x.isArray(n)){for(o=Rt(e),i=n.length;i>s;s++)a[n[s]]=x.css(e,n[s],!1,o);return a}return r!==t?x.style(e,n,r):x.css(e,n)},e,n,arguments.length>1)},show:function(){return rn(this,!0)},hide:function(){return rn(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){nn(this)?x(this).show():x(this).hide()})}}),x.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Wt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":x.support.cssFloat?"cssFloat":"styleFloat"},style:function(e,n,r,i){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var o,a,s,l=x.camelCase(n),u=e.style;if(n=x.cssProps[l]||(x.cssProps[l]=tn(u,l)),s=x.cssHooks[n]||x.cssHooks[l],r===t)return s&&"get"in s&&(o=s.get(e,!1,i))!==t?o:u[n];if(a=typeof r,"string"===a&&(o=Jt.exec(r))&&(r=(o[1]+1)*o[2]+parseFloat(x.css(e,n)),a="number"),!(null==r||"number"===a&&isNaN(r)||("number"!==a||x.cssNumber[l]||(r+="px"),x.support.clearCloneStyle||""!==r||0!==n.indexOf("background")||(u[n]="inherit"),s&&"set"in s&&(r=s.set(e,r,i))===t)))try{u[n]=r}catch(c){}}},css:function(e,n,r,i){var o,a,s,l=x.camelCase(n);return n=x.cssProps[l]||(x.cssProps[l]=tn(e.style,l)),s=x.cssHooks[n]||x.cssHooks[l],s&&"get"in s&&(a=s.get(e,!0,r)),a===t&&(a=Wt(e,n,i)),"normal"===a&&n in Kt&&(a=Kt[n]),""===r||r?(o=parseFloat(a),r===!0||x.isNumeric(o)?o||0:a):a}}),e.getComputedStyle?(Rt=function(t){return e.getComputedStyle(t,null)},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),l=s?s.getPropertyValue(n)||s[n]:t,u=e.style;return s&&(""!==l||x.contains(e.ownerDocument,e)||(l=x.style(e,n)),Yt.test(l)&&Ut.test(n)&&(i=u.width,o=u.minWidth,a=u.maxWidth,u.minWidth=u.maxWidth=u.width=l,l=s.width,u.width=i,u.minWidth=o,u.maxWidth=a)),l}):a.documentElement.currentStyle&&(Rt=function(e){return e.currentStyle},Wt=function(e,n,r){var i,o,a,s=r||Rt(e),l=s?s[n]:t,u=e.style;return null==l&&u&&u[n]&&(l=u[n]),Yt.test(l)&&!zt.test(n)&&(i=u.left,o=e.runtimeStyle,a=o&&o.left,a&&(o.left=e.currentStyle.left),u.left="fontSize"===n?"1em":l,l=u.pixelLeft+"px",u.left=i,a&&(o.left=a)),""===l?"auto":l});function on(e,t,n){var r=Vt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function an(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,a=0;for(;4>o;o+=2)"margin"===n&&(a+=x.css(e,n+Zt[o],!0,i)),r?("content"===n&&(a-=x.css(e,"padding"+Zt[o],!0,i)),"margin"!==n&&(a-=x.css(e,"border"+Zt[o]+"Width",!0,i))):(a+=x.css(e,"padding"+Zt[o],!0,i),"padding"!==n&&(a+=x.css(e,"border"+Zt[o]+"Width",!0,i)));return a}function sn(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Rt(e),a=x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=Wt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Yt.test(i))return i;r=a&&(x.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+an(e,t,n||(a?"border":"content"),r,o)+"px"}function ln(e){var t=a,n=Gt[e];return n||(n=un(e,t),"none"!==n&&n||(Pt=(Pt||x("