info.joseluismartin.vaadin.beans.VaadinScope Maven / Gradle / Ivy
/*
* Copyright 2009-2012 the original author or authors.
*
* 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 info.joseluismartin.vaadin.beans;
import org.springframework.beans.factory.ObjectFactory;
import org.springframework.beans.factory.config.Scope;
/**
* @author Jose Luis Martin - ([email protected])
*
*/
public class VaadinScope implements Scope {
/**
* {@inheritDoc}
*/
public Object get(String name, ObjectFactory> objectFactory) {
// TODO Auto-generated method stub
return null;
}
/**
* {@inheritDoc}
*/
public Object remove(String name) {
// TODO Auto-generated method stub
return null;
}
/**
* {@inheritDoc}
*/
public void registerDestructionCallback(String name, Runnable callback) {
// TODO Auto-generated method stub
}
/**
* {@inheritDoc}
*/
public Object resolveContextualObject(String key) {
// TODO Auto-generated method stub
return null;
}
/**
* {@inheritDoc}
*/
public String getConversationId() {
// TODO Auto-generated method stub
return null;
}
}