blob: f7b025802dca1fd5d1c9f8ac8e92d36f28b24dbf [file] [log] [blame]
// Copyright 2009, 2011 The Apache Software Foundation
//
// 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 org.apache.tapestry5.ioc;
import org.apache.tapestry5.ioc.annotations.Match;
import org.apache.tapestry5.ioc.annotations.PreventServiceDecoration;
public class PreventDecorationModule
{
public static void bind(ServiceBinder binder)
{
binder.bind(Greeter.class, ServiceIdGreeter.class).withSimpleId().preventDecoration();
binder.bind(Rocket.class, RocketImpl.class);
}
@PreventServiceDecoration
public StringTransformer buildStringTransformer()
{
return new UppercaseStringTransformer();
}
@Match("*")
public <T> T decorateEverything(Class<T> type, T instance)
{
throw new RuntimeException(String.format("Failure to decorate type %s.", type.getName()));
}
}