1 17 18 package org.apache.avalon.repository.data; 19 20 import java.io.Serializable ; 21 import java.util.Properties ; 22 23 import org.apache.avalon.repository.Artifact; 24 25 32 public class FactoryDirective implements Serializable 33 { 34 38 private final Artifact m_artifact; 39 40 private final Properties m_properties; 41 42 46 52 public FactoryDirective( final Artifact artifact, final Properties properties ) 53 { 54 m_artifact = artifact; 55 m_properties = properties; 56 } 57 58 62 66 public Artifact getArtifact() 67 { 68 return m_artifact; 69 } 70 71 75 public Properties getProperties() 76 { 77 return m_properties; 78 } 79 } 80 | Popular Tags |