All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gwtplatform.dispatch.shared.ActionImpl Maven / Gradle / Ivy

There is a newer version: 1.6
Show newest version
/**
 * Copyright 2011 ArcBees 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.gwtplatform.dispatch.shared;

/**
 * Default Action using the base path as dispatch/className.
 * The base abstract implementation is {@link com.gwtplatform.dispatch.shared.Action}.
 *
 * {@link https://github.com/ArcBees/GWTP/wiki/RPC-Dispatch}
 *
 * An {@link Action} that uses the standard service name {@code "dispatch"}.
 * Actions inheriting from this are secured against XSRF attacks, but they need
 * you to configure a {@link SecurityCookie}.
 *
 * Use {@link UnsecuredActionImpl} for secured set to off by default.
 *
 * @param  The {@link Result} type.
 *
 * @deprecated Please use {@link com.gwtplatform.dispatch.rpc.shared.ActionImpl}.
 */
@Deprecated
public class ActionImpl implements Action {
    /**
     * Default Action using the base path as dispatch/className.
     * {@link https://github.com/ArcBees/GWTP/wiki/RPC-Dispatch}
     */
    @Override
    public String getServiceName() {
        String className = this.getClass().getName();
        int namePos = className.lastIndexOf(".") + 1;
        return com.gwtplatform.dispatch.shared.ActionImpl.DEFAULT_SERVICE_NAME + className.substring(namePos);
    }

    /**
     * Secure is on by default.
     * {@link https://github.com/ArcBees/GWTP/wiki/Action-Validators}
     */
    @Override
    public boolean isSecured() {
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy