Package com.google.gwt.gadgets.client.osapi.people

Source Code of com.google.gwt.gadgets.client.osapi.people.GetPersonRequestBuilder

/*
* Copyright 2010 Google 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.
*/
package com.google.gwt.gadgets.client.osapi.people;

import com.google.gwt.core.client.JavaScriptObject;
import com.google.gwt.core.client.JsArrayString;
import com.google.gwt.gadgets.client.osapi.OsapiRequest;
import com.google.gwt.gadgets.client.osapi.OsapiRequestBuilder;

/**
* Builder for requests returning a single {@link Person}.
*/
public class GetPersonRequestBuilder extends
    OsapiRequestBuilder<GetPersonRequestBuilder> {

  /**
   * Returns new instance of {@link GetPersonRequestBuilder}.
   *
   * @return New instance of {@link GetPersonRequestBuilder}.
   */
  static GetPersonRequestBuilder newInstance() {
    return JavaScriptObject.createObject().cast();
  }

  /**
   * Required by {@link JavaScriptObject} policy.
   */
  protected GetPersonRequestBuilder() {
  }

  /**
   * Builds the request.
   *
   * @return {@link OsapiRequest} instance.
   */
  public final native OsapiRequest<Person> build() /*-{
    return $wnd.osapi.people.get(this);
  }-*/;

  /**
   * Defines a set of fields to be requested.
   *
   * @see PeopleService#setDefaultFields(String...)
   *
   * @param fields A set of fields to be requested.
   */
  public final native GetPersonRequestBuilder setFields(JsArrayString fields) /*-{
    this.fields = fields;
    return this;
  }-*/;

  /**
   * Defines a set of fields to be requested.
   *
   * @see PeopleService#setDefaultFields(String...)
   *
   * @param fields A set of fields to be requested.
   */
  public final GetPersonRequestBuilder setFields(String... fields) {
    JsArrayString array = JavaScriptObject.createArray().cast();
    for (String field : fields) {
      array.push(field);
    }
    return setFields(array);
  }
}
TOP

Related Classes of com.google.gwt.gadgets.client.osapi.people.GetPersonRequestBuilder

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.