Java tutorial
// // Copyright (c) 2012 Red Hat, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // // ********************************************************************* // ********************* GENERATED CODE - DO NOT MODIFY **************** // ********************************************************************* package org.ovirt.engine.sdk.decorators; import java.io.IOException; import java.util.List; import java.util.UUID; import org.apache.http.Header; import org.apache.http.client.ClientProtocolException; import org.ovirt.engine.sdk.common.CollectionDecorator; import org.ovirt.engine.sdk.exceptions.ServerException; import org.ovirt.engine.sdk.utils.CollectionUtils; import org.ovirt.engine.sdk.utils.HttpHeaderBuilder; import org.ovirt.engine.sdk.utils.HttpHeaderUtils; import org.ovirt.engine.sdk.utils.UrlBuilder; import org.ovirt.engine.sdk.utils.UrlBuilder; import org.ovirt.engine.sdk.utils.UrlHelper; import org.ovirt.engine.sdk.web.HttpProxyBroker; import org.ovirt.engine.sdk.web.UrlParameterType; import org.ovirt.engine.sdk.entities.Action; /** * <p>DataCenterClusterGlusterVolumeGlusterBricks providing relation and functional services * <p>to {@link org.ovirt.engine.sdk.entities.GlusterBricks }. */ @SuppressWarnings("unused") public class DataCenterClusterGlusterVolumeGlusterBricks extends CollectionDecorator<org.ovirt.engine.sdk.entities.GlusterBrick, org.ovirt.engine.sdk.entities.GlusterBricks, DataCenterClusterGlusterVolumeGlusterBrick> { private DataCenterClusterGlusterVolume parent; /** * @param proxy HttpProxyBroker * @param parent DataCenterClusterGlusterVolume */ public DataCenterClusterGlusterVolumeGlusterBricks(HttpProxyBroker proxy, DataCenterClusterGlusterVolume parent) { super(proxy, "bricks"); this.parent = parent; } /** * Lists DataCenterClusterGlusterVolumeGlusterBrick objects. * * @return * List of {@link DataCenterClusterGlusterVolumeGlusterBrick } * * @throws ClientProtocolException * Signals that HTTP/S protocol error has occurred. * @throws ServerException * Signals that an oVirt api error has occurred. * @throws IOException * Signals that an I/O exception of some sort has occurred. */ @Override public List<DataCenterClusterGlusterVolumeGlusterBrick> list() throws ClientProtocolException, ServerException, IOException { String url = this.parent.getHref() + SLASH + getName(); return list(url, org.ovirt.engine.sdk.entities.GlusterBricks.class, DataCenterClusterGlusterVolumeGlusterBrick.class); } /** * Fetches DataCenterClusterGlusterVolumeGlusterBrick object by id. * * @return * {@link DataCenterClusterGlusterVolumeGlusterBrick } * * @throws ClientProtocolException * Signals that HTTP/S protocol error has occurred. * @throws ServerException * Signals that an oVirt api error has occurred. * @throws IOException * Signals that an I/O exception of some sort has occurred. */ @Override public DataCenterClusterGlusterVolumeGlusterBrick get(UUID id) throws ClientProtocolException, ServerException, IOException { String url = this.parent.getHref() + SLASH + getName() + SLASH + id.toString(); return getProxy().get(url, org.ovirt.engine.sdk.entities.GlusterBrick.class, DataCenterClusterGlusterVolumeGlusterBrick.class); } /** * Fetches DataCenterClusterGlusterVolumeGlusterBrick object by id. * * @return * {@link DataCenterClusterGlusterVolumeGlusterBrick } * * @throws ClientProtocolException * Signals that HTTP/S protocol error has occurred. * @throws ServerException * Signals that an oVirt api error has occurred. * @throws IOException * Signals that an I/O exception of some sort has occurred. */ @Override public DataCenterClusterGlusterVolumeGlusterBrick getById(String id) throws ClientProtocolException, ServerException, IOException { String url = this.parent.getHref() + SLASH + getName() + SLASH + id; return getProxy().get(url, org.ovirt.engine.sdk.entities.GlusterBrick.class, DataCenterClusterGlusterVolumeGlusterBrick.class); } /** * Performs activate action. * * @param action {@link org.ovirt.engine.sdk.entities.Action} * @return * {@link Action } * * @throws ClientProtocolException * Signals that HTTP/S protocol error has occurred. * @throws ServerException * Signals that an oVirt api error has occurred. * @throws IOException * Signals that an I/O exception of some sort has occurred. */ public Action activate(Action action) throws ClientProtocolException, ServerException, IOException { String url = this.parent.getHref() + SLASH + getName() + SLASH + "activate"; HttpHeaderBuilder headersBuilder = new HttpHeaderBuilder(); List<Header> headers = headersBuilder.build(); UrlBuilder urlBuilder = new UrlBuilder(url); url = urlBuilder.build(); return getProxy().action(url, action, Action.class, Action.class, headers); } /** * Performs stopmigrate action. * * @param action {@link org.ovirt.engine.sdk.entities.Action} * @return * {@link Action } * * @throws ClientProtocolException * Signals that HTTP/S protocol error has occurred. * @throws ServerException * Signals that an oVirt api error has occurred. * @throws IOException * Signals that an I/O exception of some sort has occurred. */ public Action stopmigrate(Action action) throws ClientProtocolException, ServerException, IOException { String url = this.parent.getHref() + SLASH + getName() + SLASH + "stopmigrate"; HttpHeaderBuilder headersBuilder = new HttpHeaderBuilder(); List<Header> headers = headersBuilder.build(); UrlBuilder urlBuilder = new UrlBuilder(url); url = urlBuilder.build(); return getProxy().action(url, action, Action.class, Action.class, headers); } /** * Performs migrate action. * * @param action {@link org.ovirt.engine.sdk.entities.Action} * @return * {@link Action } * * @throws ClientProtocolException * Signals that HTTP/S protocol error has occurred. * @throws ServerException * Signals that an oVirt api error has occurred. * @throws IOException * Signals that an I/O exception of some sort has occurred. */ public Action migrate(Action action) throws ClientProtocolException, ServerException, IOException { String url = this.parent.getHref() + SLASH + getName() + SLASH + "migrate"; HttpHeaderBuilder headersBuilder = new HttpHeaderBuilder(); List<Header> headers = headersBuilder.build(); UrlBuilder urlBuilder = new UrlBuilder(url); url = urlBuilder.build(); return getProxy().action(url, action, Action.class, Action.class, headers); } /** * Adds GlusterBrick object. * * @param glusterbricks {@link org.ovirt.engine.sdk.entities.GlusterBricks} * @return * {@link DataCenterClusterGlusterVolumeGlusterBrick } * * @throws ClientProtocolException * Signals that HTTP/S protocol error has occurred. * @throws ServerException * Signals that an oVirt api error has occurred. * @throws IOException * Signals that an I/O exception of some sort has occurred. */ public DataCenterClusterGlusterVolumeGlusterBrick add(org.ovirt.engine.sdk.entities.GlusterBrick glusterbrick) throws ClientProtocolException, ServerException, IOException { String url = this.parent.getHref() + SLASH + getName(); HttpHeaderBuilder headersBuilder = new HttpHeaderBuilder(); List<Header> headers = headersBuilder.build(); UrlBuilder urlBuilder = new UrlBuilder(url); url = urlBuilder.build(); return getProxy().add(url, glusterbrick, org.ovirt.engine.sdk.entities.GlusterBrick.class, DataCenterClusterGlusterVolumeGlusterBrick.class, headers); } }