com.gwtplatform.dispatch.rpc.shared.UnsecuredActionImpl 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 not
* secured against XSRF attacks, and they will work even if you do not configure a
* {@link com.gwtplatform.dispatch.shared.SecurityCookie}.
*
* Use {@link ActionImpl} for secured set to on by default.
*
* @param The {@link Result} type.
*/
public class UnsecuredActionImpl 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 DEFAULT_SERVICE_NAME + className.substring(namePos);
}
/**
* Secure is off by default.
*/
@Override
public boolean isSecured() {
return false;
}
}