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

juzu.impl.asset.AssetNode Maven / Gradle / Ivy

/*
 * Copyright 2013 eXo Platform SAS
 *
 * 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 juzu.impl.asset;

import juzu.asset.AssetLocation;

import java.net.URL;
import java.util.Set;

/**
 * An immutable asset descriptor.
 *
 * @author Julien Viet
 */
public class AssetNode {

  /** . */
  final String id;

  /** . */
  final AssetLocation location;

  /** . */
  final String value;

  /** . */
  final Boolean header;

  /** . */
  final String minified;

  /** . */
  final Asset asset;

  /** . */
  final URL resource;

  /** . */
  Set iDependOn;

  public AssetNode(String id, String type, AssetLocation location, String value, Boolean header, String minified, Integer maxAge, URL resource, Set iDependOn) {

    //
    this.id = id;
    this.location = location;
    this.value = value;
    this.header = header;
    this.minified = minified;
    this.asset = new Asset(id, type, header, location, value, minified, maxAge);
    this.resource = resource;
    this.iDependOn = iDependOn;
  }

  public String getId() {
    return id;
  }

  public AssetLocation getLocation() {
    return location;
  }

  public Boolean getHeader() {
    return header;
  }

  public String getValue() {
    return value;
  }

  public String getMinified() {
    return minified;
  }

  public Asset getAsset() {
    return asset;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy