001// Copyright 2009, 2020 The Apache Software Foundation 002// 003// Licensed under the Apache License, Version 2.0 (the "License"); 004// you may not use this file except in compliance with the License. 005// You may obtain a copy of the License at 006// 007// http://www.apache.org/licenses/LICENSE-2.0 008// 009// Unless required by applicable law or agreed to in writing, software 010// distributed under the License is distributed on an "AS IS" BASIS, 011// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 012// See the License for the specific language governing permissions and 013// limitations under the License. 014 015package org.apache.tapestry5.internal.bindings; 016 017import org.apache.tapestry5.Asset; 018import org.apache.tapestry5.commons.Location; 019 020public class AssetBinding extends AbstractBinding 021{ 022 private final String description; 023 024 private final Asset asset; 025 026 public AssetBinding(Location location, String description, Asset asset) 027 { 028 super(location); 029 030 this.description = description; 031 this.asset = asset; 032 } 033 034 @Override 035 public Class getBindingType() 036 { 037 return Asset.class; 038 } 039 040 public Object get() 041 { 042 return asset; 043 } 044 045 @Override 046 public String toString() 047 { 048 return String.format("AssetBinding[%s: %s]", description, asset); 049 } 050}