text stringlengths 3 1.18M |
|---|
package net.everythingandroid.smspopup.service;
import net.everythingandroid.smspopup.BuildConfig;
import net.everythingandroid.smspopup.R;
import net.everythingandroid.smspopup.provider.SmsMmsMessage;
import net.everythingandroid.smspopup.receiver.ReminderReceiver;
import net.everythingandroid.smspopup.util.Log... |
package net.everythingandroid.smspopup.service;
import java.util.List;
import net.everythingandroid.smspopup.BuildConfig;
import net.everythingandroid.smspopup.R;
import net.everythingandroid.smspopup.provider.SmsMmsMessage;
import net.everythingandroid.smspopup.provider.SmsPopupContract.ContactNotifications;
... |
package net.everythingandroid.smspopup.receiver;
import net.everythingandroid.smspopup.BuildConfig;
import net.everythingandroid.smspopup.R;
import net.everythingandroid.smspopup.util.Log;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.co... |
package net.everythingandroid.smspopup.receiver;
import net.everythingandroid.smspopup.BuildConfig;
import net.everythingandroid.smspopup.util.Log;
import net.everythingandroid.smspopup.util.ManageKeyguard;
import net.everythingandroid.smspopup.util.ManageWakeLock;
import android.app.AlarmManager;
import androi... |
// Copyright 2011 Google Inc. All Rights Reserved.
package net.everythingandroid.smspopup.receiver;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import com.commonsware.cwac.wakeful.WakefulIntentService;
import net.everythingandroid.smspopup.service.Reminde... |
package net.everythingandroid.smspopup.receiver;
import net.everythingandroid.smspopup.BuildConfig;
import net.everythingandroid.smspopup.service.SmsReceiverService;
import net.everythingandroid.smspopup.util.Log;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.I... |
/*
* Copyright (C) 2008 Esmertec AG. Copyright (C) 2008 The Android Open Source
* Project
*
* 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/LI... |
package net.everythingandroid.smspopup.util;
import java.util.ArrayList;
import net.everythingandroid.smspopup.BuildConfig;
import net.everythingandroid.smspopup.R;
import net.everythingandroid.smspopup.provider.SmsMmsMessage;
import net.everythingandroid.smspopup.provider.SmsPopupContract.ContactNotifications... |
package net.everythingandroid.smspopup.util;
import net.everythingandroid.smspopup.BuildConfig;
import android.app.KeyguardManager;
import android.app.KeyguardManager.KeyguardLock;
import android.app.KeyguardManager.OnKeyguardExitResult;
import android.content.Context;
public class ManageKeyguard {
priva... |
package net.everythingandroid.smspopup.util;
import net.everythingandroid.smspopup.BuildConfig;
import net.everythingandroid.smspopup.R;
import net.everythingandroid.smspopup.receiver.ClearAllReceiver;
import android.content.Context;
import android.content.SharedPreferences;
import android.os.PowerManager;
imp... |
package net.everythingandroid.smspopup.util;
public class Log {
public final static String LOGTAG = "SMSPopup";
public static void v(String msg) {
android.util.Log.v(LOGTAG, msg);
}
public static void e(String msg) {
android.util.Log.e(LOGTAG, msg);
}
}
|
package net.everythingandroid.smspopup.util;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import net... |
package net.everythingandroid.smspopup.util;
import java.io.BufferedReader;
import java.io.Closeable;
import java.io.IOException;
import java.io.InputStreamReader;
import net.everythingandroid.smspopup.R;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
i... |
package net.everythingandroid.smspopup.util;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
public class RetainFragment extends Fragment {
private static final String TAG = "net.everythingandroid.smspopup.retainfragment";
private Object mO... |
package net.everythingandroid.smspopup.util;
import net.everythingandroid.smspopup.BuildConfig;
import net.everythingandroid.smspopup.preferences.ButtonListPreference;
import net.everythingandroid.smspopup.provider.SmsPopupContract.ContactNotifications;
import net.everythingandroid.smspopup.service.SmsPopupUtilsS... |
package net.everythingandroid.smspopup.preferences;
import net.everythingandroid.smspopup.R;
import net.everythingandroid.smspopup.util.ManageNotification;
import android.app.AlertDialog.Builder;
import android.content.Context;
import android.content.DialogInterface;
import android.content.res.TypedArray;
impo... |
package net.everythingandroid.smspopup.preferences;
import net.everythingandroid.smspopup.R;
import net.everythingandroid.smspopup.provider.SmsPopupContract.ContactNotifications;
import net.everythingandroid.smspopup.util.ManagePreferences;
import android.app.AlertDialog;
import android.content.Context;
import ... |
package net.everythingandroid.smspopup.preferences;
import net.everythingandroid.smspopup.util.Log;
import android.content.Context;
import android.preference.CheckBoxPreference;
import android.util.AttributeSet;
public class QuickReplyCheckBoxPreference extends CheckBoxPreference {
public QuickReplyChec... |
package net.everythingandroid.smspopup.preferences;
import android.content.Context;
import android.util.AttributeSet;
public class DialogPreference extends android.preference.DialogPreference {
public DialogPreference(Context context, AttributeSet attrs) {
super(context, attrs);
}
publi... |
package net.everythingandroid.smspopup.preferences;
import net.everythingandroid.smspopup.R;
import net.everythingandroid.smspopup.provider.SmsMmsMessage;
import net.everythingandroid.smspopup.provider.SmsPopupContract.ContactNotifications;
import net.everythingandroid.smspopup.util.ManageNotification;
import an... |
package net.everythingandroid.smspopup.preferences;
import net.everythingandroid.smspopup.R;
import net.everythingandroid.smspopup.service.ReminderService;
import net.everythingandroid.smspopup.util.ManageNotification;
import android.app.AlertDialog;
import android.content.Context;
import android.preference.Che... |
package net.everythingandroid.smspopup.preferences;
import net.everythingandroid.smspopup.R;
import net.everythingandroid.smspopup.provider.SmsPopupContract.ContactNotifications;
import net.everythingandroid.smspopup.util.ManageNotification;
import net.everythingandroid.smspopup.util.ManagePreferences;
import an... |
package net.everythingandroid.smspopup.preferences;
import net.everythingandroid.smspopup.util.SmsPopupUtils;
import android.content.Context;
import android.preference.CheckBoxPreference;
import android.util.AttributeSet;
public class AppEnabledCheckBoxPreference extends CheckBoxPreference {
private Conte... |
package net.everythingandroid.smspopup.preferences;
import net.everythingandroid.smspopup.R;
import net.everythingandroid.smspopup.provider.SmsPopupContract.ContactNotifications;
import net.everythingandroid.smspopup.util.ManageNotification;
import net.everythingandroid.smspopup.util.ManagePreferences;
import an... |
package net.everythingandroid.smspopup.preferences;
import net.everythingandroid.smspopup.R;
import android.content.Context;
import android.preference.ListPreference;
import android.util.AttributeSet;
public class ButtonListPreference extends ListPreference {
public static final int BUTTON_DISABLED = 0;
... |
package net.everythingandroid.smspopup.ui;
import java.util.List;
import net.everythingandroid.smspopup.BuildConfig;
import net.everythingandroid.smspopup.R;
import net.everythingandroid.smspopup.provider.SmsPopupContract.ContactNotifications;
import net.everythingandroid.smspopup.service.SmsPopupUtilsService;
import... |
package net.everythingandroid.smspopup.ui;
import java.util.ArrayList;
import java.util.List;
import net.everythingandroid.smspopup.BuildConfig;
import net.everythingandroid.smspopup.R;
import net.everythingandroid.smspopup.controls.FragmentStatePagerAdapter;
import net.everythingandroid.smspopup.controls.QmT... |
package net.everythingandroid.smspopup.ui;
import java.lang.ref.WeakReference;
import net.everythingandroid.smspopup.BuildConfig;
import net.everythingandroid.smspopup.R;
import net.everythingandroid.smspopup.preferences.ButtonListPreference;
import net.everythingandroid.smspopup.provider.SmsMmsMessage;
impor... |
package net.everythingandroid.smspopup.ui;
import net.everythingandroid.smspopup.R;
import net.everythingandroid.smspopup.preferences.AppEnabledCheckBoxPreference;
import net.everythingandroid.smspopup.preferences.ButtonListPreference;
import net.everythingandroid.smspopup.preferences.DialogPreference;
import net.ever... |
package net.everythingandroid.smspopup.ui;
import net.everythingandroid.smspopup.BuildConfig;
import net.everythingandroid.smspopup.R;
import net.everythingandroid.smspopup.preferences.CustomLEDColorListPreference;
import net.everythingandroid.smspopup.preferences.CustomLEDPatternListPreference;
import net.every... |
package net.everythingandroid.smspopup.ui;
import net.everythingandroid.smspopup.BuildConfig;
import net.everythingandroid.smspopup.R;
import net.everythingandroid.smspopup.controls.QmTextWatcher;
import net.everythingandroid.smspopup.provider.SmsPopupContract.QuickMessages;
import net.everythingandroid.smspopup.util.... |
package net.everythingandroid.smspopupdonate;
public class Log {
public final static String LOGTAG = "SMSPopupDonate";
public static final boolean DEBUG = true;
public static void v(String msg) {
android.util.Log.v(LOGTAG, msg);
}
public static void e(String msg) {
android.util.Log.e(L... |
package net.everythingandroid.smspopupdonate;
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class SmsPopupDonateActivity extends Activity {
private... |
package org.dodgybits.shuffle.gwt.place;
import com.google.inject.BindingAnnotation;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.ElementType.METHOD;
import java.lang.annotat... |
package org.dodgybits.shuffle.gwt.place;
public class NameTokens {
public static final String error = "!error";
public static final String help = "!help";
public static final String inbox = "!inbox";
public static final String dueActions = "!dueActions";
public static final String nextActions = "!nextAct... |
package org.dodgybits.shuffle.gwt.place;
import com.google.inject.BindingAnnotation;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.ElementType.METHOD;
import java.lang.annotat... |
package org.dodgybits.shuffle.gwt.place;
import com.gwtplatform.mvp.client.proxy.PlaceManagerImpl;
import com.gwtplatform.mvp.client.proxy.PlaceRequest;
import com.google.inject.Inject;
import com.google.gwt.event.shared.EventBus;
import com.gwtplatform.mvp.client.proxy.TokenFormatter;
public class ClientPlac... |
package org.dodgybits.shuffle.gwt.gin;
import com.google.inject.Provides;
import com.google.inject.Singleton;
import com.gwtplatform.mvp.client.gin.AbstractPresenterModule;
import com.gwtplatform.mvp.client.gin.DefaultModule;
import org.dodgybits.shuffle.client.ShuffleRequestFactory;
import org.dodgybits.shuffle.gwt.c... |
package org.dodgybits.shuffle.gwt.gin;
import com.google.gwt.event.shared.EventBus;
import com.google.gwt.inject.client.AsyncProvider;
import com.google.gwt.inject.client.GinModules;
import com.google.gwt.inject.client.Ginjector;
import com.google.inject.Provider;
import com.gwtplatform.dispatch.client.gin.DispatchAsy... |
package org.dodgybits.shuffle.gwt.formatter;
import java.util.Date;
import com.google.gwt.i18n.client.DateTimeFormat;
public class ActionDateFormatter {
private DateTimeFormat dateFormat;
public ActionDateFormatter() {
dateFormat = DateTimeFormat.getFormat("d MMM");
}
public String getShortDate(Date date) {... |
package org.dodgybits.shuffle.gwt.cursor;
import com.google.common.base.Function;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import com.google.inject.Inject;
import com.google.web.bindery.requestfactory.shared.Receiver;
import com.google.web.bindery.requestfactory.shared.ServerFailu... |
package org.dodgybits.shuffle.gwt.cursor;
import com.google.inject.Inject;
import com.google.inject.Provider;
import com.google.web.bindery.requestfactory.shared.Receiver;
import com.google.web.bindery.requestfactory.shared.Request;
import org.dodgybits.shuffle.shared.ContextProxy;
import org.dodgybits.shuffle.shared.... |
package org.dodgybits.shuffle.gwt.cursor;
import com.google.gwt.core.client.GWT;
import com.google.gwt.event.shared.EventBus;
import com.google.gwt.view.client.AsyncDataProvider;
import com.google.gwt.view.client.HasData;
import com.google.gwt.view.client.Range;
import com.google.inject.Inject;
import com.google.injec... |
package org.dodgybits.shuffle.gwt.cursor;
import com.google.inject.Inject;
import com.google.inject.Provider;
import com.google.web.bindery.requestfactory.shared.Receiver;
import com.google.web.bindery.requestfactory.shared.Request;
import org.dodgybits.shuffle.shared.ProjectProxy;
import org.dodgybits.shuffle.shared.... |
/*
* 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 i... |
package org.dodgybits.shuffle.gwt.core;
import com.google.common.base.Function;
import com.google.common.collect.Lists;
import com.google.gwt.core.client.GWT;
import com.google.gwt.event.shared.EventBus;
import com.google.gwt.view.client.HasData;
import com.google.inject.Inject;
import com.google.inject.Provid... |
package org.dodgybits.shuffle.gwt.core;
import com.google.common.base.Function;
import com.google.common.collect.Lists;
import com.gwtplatform.mvp.client.HasUiHandlers;
import com.gwtplatform.mvp.client.Presenter;
import com.gwtplatform.mvp.client.View;
import com.gwtplatform.mvp.client.annotations.ProxyCodeSpl... |
package org.dodgybits.shuffle.gwt.core;
import com.google.gwt.cell.client.CheckboxCell;
import com.google.gwt.cell.client.ClickableTextCell;
import com.google.gwt.cell.client.FieldUpdater;
import com.google.gwt.cell.client.TextCell;
import com.google.gwt.core.client.GWT;
import com.google.gwt.dom.client.Style.U... |
package org.dodgybits.shuffle.gwt.core;
import com.gwtplatform.mvp.client.ViewImpl;
import com.google.gwt.uibinder.client.UiBinder;
import com.google.gwt.uibinder.client.UiField;
import com.google.gwt.user.client.ui.HTMLPanel;
import com.google.gwt.user.client.ui.Widget;
import com.google.inject.Inject;
publ... |
package org.dodgybits.shuffle.gwt.core;
import com.google.gwt.view.client.HasData;
import com.gwtplatform.mvp.client.UiHandlers;
import org.dodgybits.shuffle.shared.ContextProxy;
import org.dodgybits.shuffle.shared.ProjectProxy;
import org.dodgybits.shuffle.shared.TaskProxy;
import java.util.List;
public interface T... |
package org.dodgybits.shuffle.gwt.core;
import com.gwtplatform.mvp.client.ViewImpl;
import com.google.gwt.uibinder.client.UiBinder;
import com.google.gwt.user.client.ui.Widget;
import com.google.inject.Inject;
public class ErrorView extends ViewImpl implements ErrorPresenter.MyView {
private final Widget w... |
package org.dodgybits.shuffle.gwt.core;
import com.gwtplatform.mvp.client.UiHandlers;
import org.dodgybits.shuffle.shared.ContextProxy;
import org.dodgybits.shuffle.shared.ProjectProxy;
import org.dodgybits.shuffle.shared.TaskProxy;
import java.util.List;
public interface EditEntityUiHandlers extends UiHandlers {
... |
package org.dodgybits.shuffle.gwt.core;
import com.gwtplatform.mvp.client.UiHandlers;
public interface NavigationUiHandlers extends UiHandlers {
void onNewAction();
}
|
package org.dodgybits.shuffle.gwt.core;
import com.google.gwt.event.shared.EventBus;
import com.google.inject.Inject;
import com.gwtplatform.mvp.client.Presenter;
import com.gwtplatform.mvp.client.View;
import com.gwtplatform.mvp.client.annotations.NameToken;
import com.gwtplatform.mvp.client.annotations.ProxyC... |
package org.dodgybits.shuffle.gwt.core;
import com.google.gwt.event.dom.client.ClickEvent;
import com.google.gwt.uibinder.client.UiBinder;
import com.google.gwt.uibinder.client.UiField;
import com.google.gwt.uibinder.client.UiHandler;
import com.google.gwt.user.client.ui.*;
import com.google.inject.Inject;
imp... |
package org.dodgybits.shuffle.gwt.core;
import com.google.gwt.core.client.GWT;
import com.google.gwt.event.dom.client.ClickEvent;
import com.google.gwt.uibinder.client.UiBinder;
import com.google.gwt.uibinder.client.UiField;
import com.google.gwt.uibinder.client.UiHandler;
import com.google.gwt.user.client.ui.B... |
package org.dodgybits.shuffle.gwt.core;
import com.google.gwt.core.client.GWT;
import com.google.web.bindery.requestfactory.shared.Receiver;
import org.dodgybits.shuffle.gwt.cursor.ContextEntityCache;
import org.dodgybits.shuffle.gwt.place.NameTokens;
import com.google.gwt.event.shared.EventBus;
import com.go... |
package org.dodgybits.shuffle.gwt.core;
import com.google.gwt.event.shared.EventBus;
import com.google.gwt.event.shared.GwtEvent.Type;
import com.google.inject.Inject;
import com.gwtplatform.mvp.client.Presenter;
import com.gwtplatform.mvp.client.View;
import com.gwtplatform.mvp.client.annotations.ContentSlot;
... |
/*
* Copyright 2011 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 i... |
package org.dodgybits.shuffle.gwt.settings;
import com.google.gwt.event.shared.EventBus;
import com.google.inject.Inject;
import com.gwtplatform.mvp.client.Presenter;
import com.gwtplatform.mvp.client.View;
import com.gwtplatform.mvp.client.annotations.NameToken;
import com.gwtplatform.mvp.client.annotations.ProxyCode... |
package org.dodgybits.shuffle.gwt.settings;
import com.google.gwt.core.client.GWT;
import com.google.gwt.event.dom.client.ClickEvent;
import com.google.gwt.uibinder.client.UiBinder;
import com.google.gwt.uibinder.client.UiField;
import com.google.gwt.uibinder.client.UiHandler;
import com.google.gwt.user.client.Window;... |
package org.dodgybits.shuffle.server.model;
import javax.persistence.Transient;
public class WatchedContext extends Context {
@Transient
private boolean activeChanged = false;
@Transient
private boolean deletedChanged = false;
@Override
public void setActive(boolean active) {
if (act... |
package org.dodgybits.shuffle.server.model;
import javax.persistence.Transient;
public class WatchedProject extends Project {
@Transient
private boolean activeChanged = false;
@Transient
private boolean deletedChanged = false;
@Transient
private boolean parallelChanged = false;
@Override... |
package org.dodgybits.shuffle.server.model;
import com.googlecode.objectify.annotation.Entity;
import com.googlecode.objectify.annotation.Indexed;
import com.googlecode.objectify.annotation.Unindexed;
import javax.persistence.PrePersist;
import java.util.Date;
@Entity
@Unindexed
public class Context extends UserData... |
package org.dodgybits.shuffle.server.model;
import com.googlecode.objectify.annotation.Entity;
/**
* An application user, named with a prefix to avoid confusion with GAE User type
*/
@Entity
public class AppUser extends DatastoreObject
{
private String email;
public AppUser()
{
// No-arg constructor required ... |
package org.dodgybits.shuffle.server.model;
import com.google.appengine.api.datastore.Text;
import com.google.common.base.Function;
import com.google.common.collect.Lists;
import com.googlecode.objectify.Key;
import com.googlecode.objectify.annotation.Entity;
import com.googlecode.objectify.annotation.Indexed;
import ... |
package org.dodgybits.shuffle.server.model;
import java.util.List;
public class TaskQueryResult {
private List<WatchedTask> mEntities;
private int mTotalCount;
private int mOffset;
public List<WatchedTask> getEntities() {
return mEntities;
}
public void setEntities(List<WatchedTask>... |
package org.dodgybits.shuffle.server.model;
import com.googlecode.objectify.Key;
import com.googlecode.objectify.annotation.Indexed;
import com.googlecode.objectify.annotation.NotSaved;
import com.googlecode.objectify.condition.IfDefault;
import javax.persistence.Transient;
import java.util.List;
import java.util.log... |
package org.dodgybits.shuffle.server.model;
import com.googlecode.objectify.Key;
import com.googlecode.objectify.annotation.Entity;
import com.googlecode.objectify.annotation.Indexed;
import com.googlecode.objectify.annotation.Unindexed;
import javax.persistence.PrePersist;
import java.util.Date;
@Entity
@Unindexed
... |
package org.dodgybits.shuffle.server.model;
import javax.persistence.Id;
import javax.persistence.PrePersist;
public class DatastoreObject
{
@Id
private Long id;
private Integer version = 0;
/**
* Auto-increment version # whenever persisted
*/
@PrePersist
void onPersist()
{
this.version++;
}
public ... |
package org.dodgybits.shuffle.server.model;
import com.googlecode.objectify.Key;
import com.googlecode.objectify.annotation.Indexed;
import org.dodgybits.shuffle.server.service.ObjectifyDao;
public class UserDatastoreObject extends DatastoreObject {
@Indexed
private Key<AppUser> owner;
public AppUser ge... |
package org.dodgybits.shuffle.server.model;
import com.google.common.base.Function;
import com.google.common.collect.Lists;
import com.googlecode.objectify.Key;
import org.dodgybits.shuffle.shared.Flag;
import org.dodgybits.shuffle.shared.PredefinedQuery;
import javax.annotation.Nullable;
import java.util.Date;
impor... |
/*
* Copyright 2011 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 i... |
/*
* 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... |
package org.dodgybits.shuffle.server.service;
import com.googlecode.objectify.Query;
import org.dodgybits.shuffle.server.model.AppUser;
import org.dodgybits.shuffle.server.model.TaskQuery;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
public class TaskQueryService {
priv... |
package org.dodgybits.shuffle.server.service;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.dodgybits.shuffle.server.model.AppUser;
import org.dodgybits.shuffle.server.servlet.AuthFilter;
import com.google.appengine.api.users.UserService;
import com.google.ap... |
package org.dodgybits.shuffle.server.service;
import com.google.common.collect.Lists;
import com.google.common.collect.Sets;
import com.googlecode.objectify.Key;
import com.googlecode.objectify.NotFoundException;
import com.googlecode.objectify.Query;
import org.dodgybits.shuffle.server.model.*;
import org.dodgybits.s... |
package org.dodgybits.shuffle.server.service;
import com.googlecode.objectify.ObjectifyOpts;
import java.util.ConcurrentModificationException;
import java.util.logging.Level;
import java.util.logging.Logger;
public class TransactionalObjectifyDao<T> extends ObjectifyDao<T> {
private static final Logger log = Lo... |
package org.dodgybits.shuffle.server.service;
import com.googlecode.objectify.Key;
import com.googlecode.objectify.Query;
import org.dodgybits.shuffle.server.model.AppUser;
import org.dodgybits.shuffle.server.model.WatchedContext;
import java.util.Arrays;
import java.util.List;
import java.util.logging.Level;
import ... |
package org.dodgybits.shuffle.server.service;
import com.googlecode.objectify.Key;
import com.googlecode.objectify.ObjectifyOpts;
import com.googlecode.objectify.ObjectifyService;
import com.googlecode.objectify.Query;
import com.googlecode.objectify.util.DAOBase;
import org.dodgybits.shuffle.server.model.*;
i... |
package org.dodgybits.shuffle.server.service;
import com.google.common.collect.Lists;
import org.dodgybits.shuffle.server.model.TaskQuery;
import org.dodgybits.shuffle.server.model.WatchedContext;
import org.dodgybits.shuffle.server.model.WatchedProject;
import org.dodgybits.shuffle.server.model.WatchedTask;
import j... |
package org.dodgybits.shuffle.server.service;
import com.googlecode.objectify.Key;
import com.googlecode.objectify.Query;
import org.dodgybits.shuffle.server.model.*;
import java.util.List;
import java.util.logging.Level;
import java.util.logging.Logger;
public class ProjectService {
private static final Logger ... |
/*
* Copyright 2011 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 i... |
/*
* Copyright 2011 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 i... |
/*
* Copyright 2011 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 i... |
package org.dodgybits.shuffle.server.locator;
public class TaskLocator extends ObjectifyLocator {
}
|
package org.dodgybits.shuffle.server.locator;
import com.google.web.bindery.requestfactory.shared.Locator;
import com.googlecode.objectify.util.DAOBase;
import org.dodgybits.shuffle.server.model.DatastoreObject;
/**
* Generic @Locator for objects that extend DatastoreObject
*/
public class ObjectifyLocator extends ... |
package org.dodgybits.shuffle.server.locator;
import com.google.web.bindery.requestfactory.shared.ServiceLocator;
/**
* Generic locator service that can be referenced in the @Service annotation
* for any RequestFactory service stub
*/
public class DaoServiceLocator implements ServiceLocator {
@Override
public ... |
package org.dodgybits.shuffle.server.servlet;
import com.google.common.collect.Lists;
import com.google.common.collect.Maps;
import com.googlecode.objectify.Key;
import org.apache.commons.fileupload.FileItemIterator;
import org.apache.commons.fileupload.FileItemStream;
import org.apache.commons.fileupload.FileUploadEx... |
/*
* 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 i... |
package org.dodgybits.shuffle.server.servlet;
import com.google.web.bindery.requestfactory.server.ExceptionHandler;
import com.google.web.bindery.requestfactory.server.RequestFactoryServlet;
import com.google.web.bindery.requestfactory.shared.ServerFailure;
import java.util.logging.Level;
import java.util.logging.Log... |
/*
* Copyright 2011 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 i... |
/*
* Copyright 2011 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 i... |
package org.dodgybits.shuffle.shared;
import com.google.web.bindery.requestfactory.shared.Request;
import com.google.web.bindery.requestfactory.shared.RequestContext;
import com.google.web.bindery.requestfactory.shared.ServiceName;
@ServiceName(value = "org.dodgybits.shuffle.server.service.TaskQueryService",
... |
package org.dodgybits.shuffle.shared;
import com.google.web.bindery.requestfactory.shared.EntityProxy;
import com.google.web.bindery.requestfactory.shared.ProxyForName;
import java.util.Date;
@ProxyForName(value = "org.dodgybits.shuffle.server.model.WatchedProject",
locator="org.dodgybits.shuffle.server.loca... |
package org.dodgybits.shuffle.shared;
import com.google.web.bindery.requestfactory.shared.ProxyForName;
import com.google.web.bindery.requestfactory.shared.ValueProxy;
import java.util.List;
@ProxyForName("org.dodgybits.shuffle.server.model.TaskQueryResult")
public interface TaskQueryResultProxy extends ValueProxy {... |
package org.dodgybits.shuffle.shared;
import com.google.web.bindery.requestfactory.shared.Request;
import com.google.web.bindery.requestfactory.shared.RequestContext;
import com.google.web.bindery.requestfactory.shared.ServiceName;
import java.util.List;
@ServiceName(value = "org.dodgybits.shuffle.server.service.Tas... |
package org.dodgybits.shuffle.shared;
import com.google.web.bindery.requestfactory.shared.EntityProxy;
import com.google.web.bindery.requestfactory.shared.ProxyForName;
import java.util.Date;
@ProxyForName(value = "org.dodgybits.shuffle.server.model.WatchedContext",
locator="org.dodgybits.shuffle.server.loca... |
/*
* Copyright 2011 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 i... |
package org.dodgybits.shuffle.shared;
import com.google.web.bindery.requestfactory.shared.EntityProxy;
import com.google.web.bindery.requestfactory.shared.ProxyForName;
@ProxyForName(value = "org.dodgybits.shuffle.server.model.AppUser", locator="org.dodgybits.shuffle.server.locator.ObjectifyLocator" )
public interfa... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.