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

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

The 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.rpc.shared;

/**
 * Default Action using the base path as dispatch/className. The base abstract implementation is {@link Action}.
 * 

* An {@link Action} that uses the standard service name {@code "dispatch"}. Actions inheriting from this are secured * against XSRF attacks, but you need to configure a {@link com.gwtplatform.dispatch.shared.SecurityCookie}. *

* Use {@link UnsecuredActionImpl} for secured set to off by default. *

* Visit this page for more documentation. * * @param The {@link Result} type. */ public class ActionImpl implements Action { /** * Default Action using the base path as dispatch/className. */ @Override public String getServiceName() { String className = this.getClass().getName(); int namePos = className.lastIndexOf(".") + 1; return ActionImpl.DEFAULT_SERVICE_NAME + className.substring(namePos); } /** * Secure is on by default. */ @Override public boolean isSecured() { return true; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy