Package org.errai.samples.serialization.server

Source Code of org.errai.samples.serialization.server.ObjectService

/*
* Copyright 2010 JBoss, a divison 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.
*/

package org.errai.samples.serialization.server;

import com.google.inject.Inject;

import org.errai.samples.serialization.client.shared.Item;
import org.errai.samples.serialization.client.shared.Record;
import org.errai.samples.serialization.client.shared.RecordType;
import org.jboss.errai.bus.client.api.Message;
import org.jboss.errai.bus.client.api.MessageCallback;
import org.jboss.errai.bus.client.api.base.MessageBuilder;
import org.jboss.errai.bus.client.framework.MessageBus;
import org.jboss.errai.bus.server.annotations.Service;

import java.sql.Date;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.List;

@Service
public class ObjectService implements MessageCallback {
  private MessageBus bus;

  @Inject
  public ObjectService(MessageBus bus) {
    this.bus = bus;
  }

  public void callback(Message message) {

    List<Record> records = new ArrayList<Record>();

    Date date = getDate(2004, 5, 2);

    records.add(new Record(1, "Mike", -40.23f, date, RecordType.Savings, new Item[]{new Item(2, "iPhone3G"),
            new Item(2, null)}, new String[][]{{"FavoriteColor", "Blue"}, {"Place", "Toronto"}}));
    records.add(new Record(2, "Lillian", 30.10f, date, RecordType.Savings, new Item[]{new Item(1, "iPhone3G"),
            new Item(1, "MacBookPro15")}, new String[][]{{"FavoriteColor", "Green"}, {"Place", "Toronto"}}));
    records.add(new Record(3, "Heiko", 50.50f, date, RecordType.Checking, new Item[]{new Item(1, "iPhone3Gs"),
            new Item(2, "MacBookPro13")}, new String[][]{{"FavoriteColor", "Orange"}, {"Place", "Germany"}}));


    if (message.hasPart("Recs")) {
      List<Record> recs = message.get(List.class, "Recs");

      for (Record r : recs) {
        System.out.println(">" + r);
      }

      return;
    }

    MessageBuilder.createConversation(message)
            .subjectProvided()
            .with("Records", records)
            .noErrorHandling().sendNowWith(bus);
  }

  private static Date getDate(int year, int month, int day) {
    Calendar c = Calendar.getInstance();
    c.set(year, month, day);
    return new Date(c.getTimeInMillis());
  }

}
TOP

Related Classes of org.errai.samples.serialization.server.ObjectService

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.