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

com.aspectran.core.activity.DefaultActivity Maven / Gradle / Ivy

There is a newer version: 8.1.5
Show newest version
/*
 * Copyright (c) 2008-2024 The Aspectran 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/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.aspectran.core.activity;

import com.aspectran.core.activity.process.result.ProcessResult;
import com.aspectran.core.activity.response.Response;
import com.aspectran.core.context.ActivityContext;
import com.aspectran.core.context.rule.AspectAdviceRule;
import com.aspectran.core.context.rule.AspectRule;
import com.aspectran.core.context.rule.ExceptionRule;
import com.aspectran.core.context.rule.SettingsAdviceRule;

import java.util.List;

/**
 * Default activity used only internally when there is no official activity.
 *
 * 

Note that this is an activity that has nothing to do with * advice. This does not execute any advice at all, and if you * attempt to register the advice dynamically, you will get an * exception of the advice constraint violation.

*/ public class DefaultActivity extends AbstractActivity { /** * Instantiates a new DefaultActivity. * @param context the activity context */ public DefaultActivity(ActivityContext context) { super(context); } @Override public String getContextPath() { return null; } @Override public String getReverseContextPath() { return null; } @Override public void perform() { throw new UnsupportedOperationException(); } @Override public V perform(InstantAction instantAction) { throw new UnsupportedOperationException(); } @Override public Translet getTranslet() { return null; } @Override public ProcessResult getProcessResult() { return null; } @Override public Object getProcessResult(String actionId) { return null; } @Override public Response getDeclaredResponse() { return null; } @Override public boolean isResponseReserved() { return false; } @Override public boolean isCommitted() { return false; } @Override public void registerAspectAdviceRule(AspectRule aspectRule) { throw new UnsupportedOperationException(); } @Override public void registerSettingsAdviceRule(SettingsAdviceRule settingsAdviceRule) { throw new UnsupportedOperationException(); } @Override public void executeAdvice(List aspectAdviceRuleList, boolean throwable) { throw new UnsupportedOperationException(); } @Override public void executeAdvice(AspectAdviceRule aspectAdviceRule, boolean throwable) { throw new UnsupportedOperationException(); } @Override public void handleException(List exceptionRuleList) { throw new UnsupportedOperationException(); } @Override public V getSetting(String name) { return null; } @Override public void putSetting(String name, Object value) { throw new UnsupportedOperationException(); } @Override public V getAspectAdviceBean(String aspectId) { return null; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy