Java tutorial
/* *********************************************************************** * VMware ThinApp Factory * Copyright (c) 2009-2013 VMware, Inc. All Rights Reserved. * * 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 com.vmware.thinapp.common.converter.dto; import org.apache.commons.lang.builder.ReflectionToStringBuilder; import org.codehaus.jackson.annotate.JsonIgnore; import org.codehaus.jackson.map.annotate.JsonSerialize; import org.codehaus.jackson.map.annotate.JsonSerialize.Inclusion; /** * Converter Web Service definition of the location of a resource, either an * input (something to be downloaded) or an output (a location to store a * project). */ @JsonSerialize(include = Inclusion.NON_NULL) public class DsLocation { private String url; private Long size; private String login; private String password; private String fileName; public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public Long getSize() { return size; } public void setSize(Long size) { this.size = size; } public String getLogin() { return login; } public void setLogin(String login) { this.login = login; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getFileName() { return fileName; } public void setFileName(String fileName) { this.fileName = fileName; } @JsonIgnore public boolean isDatastorePath() { return url.startsWith("datastore:"); } @Override public String toString() { return new ReflectionToStringBuilder(this).setExcludeFieldNames(new String[] { "password" }).toString(); } }