Compare commits

...

5 Commits

Author SHA1 Message Date
hwang
cce14c4edd feature(TUP-21990):Anonymization tool 2019-03-22 17:30:31 +08:00
hwang
b2bfcffc56 feature(TUP-21990):Anonymization tool 2019-03-22 17:11:38 +08:00
hwang
dfd8555a09 feature(TUP-21990):Anonymization tool 2019-03-18 16:09:33 +08:00
hwang
b4d76f2a6d feature(TUP-21990):Anonymization tool 2019-03-18 16:09:32 +08:00
hwang
b88fef7a10 feature(TUP-21990):Anonymization tool 2019-03-18 16:09:31 +08:00
6 changed files with 40 additions and 1 deletions

View File

@@ -71,7 +71,7 @@ public class ProjectDataJsonProvider {
public static final int CONTENT_ALL = 15;
public static final String FAKE_TASK = "org.talend.repository.model.migration.CheckProductVersionMigrationTask"; //$NON-NLS-1$
public static String getRelationshipIndexPath() {
StringBuilder strBuilder = new StringBuilder();
strBuilder.append(FileConstants.SETTINGS_FOLDER_NAME).append("/").append(FileConstants.RELATIONSHIP_FILE_NAME); //$NON-NLS-1$

View File

@@ -13,6 +13,7 @@
package org.talend.core.hadoop;
import org.talend.core.IService;
import org.talend.core.model.properties.Item;
import org.talend.core.model.repository.ERepositoryObjectType;
/**
@@ -22,5 +23,7 @@ import org.talend.core.model.repository.ERepositoryObjectType;
public interface IHCatalogService extends IService {
public ERepositoryObjectType getHCatalogType();
public boolean hideHCatalogValues(Item item);
}

View File

@@ -263,5 +263,7 @@ public interface IHadoopClusterService extends IService {
public boolean isUseDynamicConfJar(String id);
public boolean updateConfJarsByContextGroup(ContextItem contextItem, Map<String, String> contextGroupRanamedMap);
public boolean hideSensitiveValues(Item item);
}

View File

@@ -6,6 +6,7 @@ import java.util.Map;
import org.talend.core.IService;
import org.talend.core.model.metadata.builder.connection.Connection;
import org.talend.core.model.properties.Item;
import org.talend.repository.model.RepositoryNode;
/**
@@ -27,5 +28,7 @@ public interface IOozieService extends IService {
public boolean isOozieNode(RepositoryNode node);
public List<HashMap<String, Object>> getHadoopProperties(Connection connection);
public boolean hideOozieValues(Item item);
}

View File

@@ -20,6 +20,7 @@ import org.eclipse.core.runtime.IPath;
import org.eclipse.swt.widgets.Composite;
import org.talend.components.api.properties.ComponentProperties;
import org.talend.core.IService;
import org.talend.core.model.components.ComponentCategory;
import org.talend.core.model.metadata.IMetadataTable;
import org.talend.core.model.metadata.builder.connection.Connection;
import org.talend.core.model.process.EComponentCategory;
@@ -31,6 +32,7 @@ import org.talend.core.model.repository.ERepositoryObjectType;
import org.talend.core.ui.check.IChecker;
import org.talend.daikon.properties.Properties;
import org.talend.daikon.properties.presentation.Form;
import org.talend.designer.core.model.utils.emf.talendfile.ProcessType;
/**
* DOC hwang class global comment. Detailled comment

View File

@@ -0,0 +1,29 @@
// ============================================================================
//
// Copyright (C) 2006-2016 Talend Inc. - www.talend.com
//
// This source code is available under agreement available at
// %InstallDIR%\features\org.talend.rcp.branding.%PRODUCTNAME%\%PRODUCTNAME%license.txt
//
// You should have received a copy of the agreement
// along with this program; if not, write to Talend SA
// 9 rue Pages 92150 Suresnes, France
//
// ============================================================================
package org.talend.core.service;
import java.util.List;
import java.util.Map;
import org.talend.core.IService;
/**
* DOC hwang class global comment. Detailled comment
*/
public interface IAnonymizeService extends IService{
public List<String[]> getDecomposeCommandLines(Map<String, Object> argMap) throws Exception;
public boolean isAnonymize(String[] args);
}