1 13 14 package com.ibm.webdav; 15 16 21 public abstract class TargetSelector { 22 Workspace workspace = null; 23 String targetSelector = null; 24 30 protected TargetSelector() { 31 } 32 42 public TargetSelector(Workspace workspace, String targetSelector) throws WebDAVException { 43 this.workspace = workspace; 44 this.targetSelector = targetSelector; 45 } 46 52 public TargetSelector(String targetSelector) throws WebDAVException { 53 this.targetSelector = targetSelector; 54 } 55 63 public abstract String getSelectorKey() throws WebDAVException; 64 70 public Workspace getWorkspace() throws WebDAVException { 71 return workspace; 72 } 73 } 74 | Popular Tags |